Blog Posts & Blog List

Theme options – Design – Property, Agent, Blog Lists Design

To manage the Property, Agent, Blog Lists Design options navigate to Theme Options > Design > Property, Agent, Blog Lists Design and locate the panel below on which you have the following options: Unit Card Type You can choose between 7 built-in property cards for properties: Default Property Card Property Card type 1 Property Card type 2 […]

How to remove Advanced Search from single blog post / property

To remove the advanced search globally from the property pages navigate to Theme options > Search > Advanced Search Display and set NO to Show Advanced Search in Property Page option. To remove the advanced search from blog posts use the below custom CSS: .single-post #search_wrapper, .single-post #adv-search-header-mobile{ display: none!important; } Help article about how […]

Technical how to : similar articles / similar blog posts

The related posts code is located in templates/related_posts In there we create the similar query by using the tags of the currents posts ‘tag__in’ => array($first_tag), The actual query is made at line 28 $my_query = new WP_Query($args); while the blog list display is made via get_template_part(‘templates/related_post_unit’); Please note that for related posts we use […]

Technical how to : change blog details ( in blog page)

The page for the blog post is single.php In there we display the title arond line 15 if (esc_html( get_post_meta($post->ID, ‘post_show_title’, true) ) != ‘no’) { ?> <h1 class=”entry-title single-title” ><?php the_title(); ?></h1> <?php } while the actual content is displayed at line 52 the_content(‘Continue Reading’); The image slider is loaded at line 51 via […]

Similar post and similar properties

Similar Listings on the Property Page display are set on Theme Options > Design > Property Page Settings. Related Articles on Blog Post display the last 3 post with the same Tag. No of similar properties in the property page Similar listings show when there are other properties from the same area, city, type and […]

Blog List Page, Blog Post and Blog List shortcodes

Step1: Add a new page from in admin – pages and select the Blog list page as Template: Step2: Set what card type design to show Step3: Select Sidebar for Blog Archive page How to add a blog post Go to Posts – Add New How to turn off slider in post blog post Go to Posts […]