This guide shows you how to create and assign a fully custom single blog post template using the WpResidence Studio system and Elementor Free. WpResidence includes a built-in layout for blog posts. Read all about it in this help article . But if you want to fully customize the layout, typography, featured image positioning, social share […]
17. Blog Posts & Blog Lists
Covers blog post creation, blog list layouts, category and archive pages, and how blog content is displayed across WPResidence.
Theme options – Design – Agent, Blog, Property Card Design & Colors
Content What these settings control Where to find the settings What this section does not control Card internal padding Card background color Card border size Card border color Property card example Agent card example Blog card example What these settings control These options control the global design style for card units used across the website. […]
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 […]