How to Show Outlines for Elements in O...
Shows outlines for all elements in Oxygen Builder. Green lines indicate :before pseud...

WPCodeBox
533
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");
}
);
});





