Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #724650

    Hello.
    I am making a real estate website with an IDX plugin. This IDX system allows you to make pages – you can use these pages to filter MLS data – like to make a page for all the individual agents, and filter down all the MLS listings to just their Agent ID on MLS.

    Anyway these IDX pages (probably custom post types) does not offer the sidebar features when you open/create them.

    Is there a way to add the side bar feature to these pages?

    Thanks in advance for any help.
    CC

    #725159

    Hey madisonstudios1,

    Please send us a temporary admin login and login URL so that we can have a closer look. You can post the details in the Private Content section of your reply.

    Best regards,
    Rikard

    #725546

    Guys
    thanks for writing back. if you go to the dashboard, click IDX pages, then Ted Baker.
    this is a custom post type maybe?? anyway I went to widgets and made a widget called TedBaker and put what I want on the sidebar.

    these idx pages only seem to use the default sidebar.

    i have 6 agents that will all need a widget for themselves. I am hoping to have the side bar “layout” standard controls on the side so that I can choose what sidebar goes on each idx page

    make sense?
    thanks in advance,
    chris

    #726852

    Hi,

    I added following code to Functions.php file in Appearance > Editor

    add_filter('avf_builder_boxes', 'add_builder_to_posttype');
    
    function add_builder_to_posttype($metabox)
    {
    	foreach($metabox as &$meta)
    	{
    		if($meta['id'] == 'avia_builder' || $meta['id'] == 'layout')
    		{
    			$meta['page'][] = 'ds-idx-listings-page'; 
    		}
    	}
    	
    
    	return $metabox;
    }

    Now you can use ALB on your listings page and control the sidebar :)

    Best regards,
    Yigit

    #727270

    Yigit
    Wow! Thank you so much.
    Really appreciate this help.
    Chris

    #727314

    Hey!

    We are happy we could help you out!
    Please feel free to let us know if there is anything else we can do for you!

    Thanks a lot

    Cheers!
    Basilis

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.