How to Save Oxygen Builder Changes wit...
This snippet allows you to save Oxygen builder changes with keyboard shortcuts like C...

WPCodeBox
340

Improve MyListing website browsing with this snippet that opens listings in a new browser tab, allowing users to view multiple listings without reloading the Explore page.
/**
* Author: MyListing Club
* Author URI: https://mylisting.club
*/
jQuery(function ($) {
$("body.page-id-000, body.page-id-001").on(
"click",
".lf-item > a",
function (e) {
e.preventDefault();
window.open($(this).attr("href"), "_blank");
}
);
});





