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

How to setup Similar post and similar properties Related Listings on 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. How to Remove Similar Listings from property page with CSS To remove similar listings you must […]

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 the no of card units you wish to display on one row To set the no of card units you wish to display on one row navigate to Theme Options > Design > Property, Agent, Blog Lists Design and on this […]