• Resolved dinmix

    (@dinmix)


    Hi I like display the URL on Grid View and also how can I modify the Single view template so that the Listing Details on the left and Contact information on the right?

    Thank you.

Viewing 1 replies (of 1 total)
  • aazztech

    (@aazztech)

    Hi,
    To display the URL, please add following code in the theme functions.php file.

    function atbdp_content_before_location(){
        $website = get_post_meta(get_the_ID(), '_website', true);
        printf('<li><p><span class="fa fa-globe"></span><a target="_blank" href="%s" class="atbd_info">%s</a></p></li>', $website, $website);
    }
    add_action('atbdp_listings_before_location', 'atbdp_content_before_location');

    Regarding single listing page customization, it requires some custom work. A WordPress developer can help you on this.

Viewing 1 replies (of 1 total)

The topic ‘Display URL on Grid View’ is closed to new replies.