muqarab
Forum Replies Created
-
Forum: Plugins
In reply to: [Essential Real Estate] Side bar not displayDear madflow,
after adding the code. next step is to go widgets and add different widgets in blog-sidebar.
if you still facing issue please send email on muqarabkhan12@gmail.com
Forum: Plugins
In reply to: [Essential Real Estate] Side bar not display<?php
if ( ! defined( ‘ABSPATH’ ) ) {
exit; // Exit if accessed directly
}
get_header(‘ere’);
/**
* ere_before_main_content hook.
*
* @hooked ere_output_content_wrapper_start – 10 (outputs opening divs for the content)
*/
do_action( ‘ere_before_main_content’ );
do_action(‘ere_single_property_before_main_content’);
if (have_posts()):
while (have_posts()): the_post(); ?>
<?php ere_get_template_part(‘content’, ‘single-property’); ?>
<?php endwhile;
endif;
do_action(‘ere_single_property_after_main_content’);
/**
* ere_after_main_content hook.
*
* @hooked ere_output_content_wrapper_end – 10 (outputs closing divs for the content)
*/
do_action( ‘ere_after_main_content’ );
/**
* ere_sidebar_property hook.
*
* @hooked ere_sidebar_property – 10
*/do_action(‘ere_sidebar_property’); ?>
<aside id=”sidebar” role=”complementary” class=”sidebar fusion-widget-area fusion-content-widget-area fusion-sidebar-right fusion-blogsidebar” style=”float: right;”>
<?php dynamic_sidebar( ‘blog-sidebar’ ); ?>
</aside><?php
get_footer(‘ere’);Forum: Plugins
In reply to: [Essential Real Estate] Side bar not displayPlease add the below function in \plugins\essential-real-estate\public\templates\single-property.php
<aside id=”sidebar” role=”complementary” class=”sidebar fusion-widget-area fusion-content-widget-area fusion-sidebar-right fusion-blogsidebar” style=”float: right;”>
<?php dynamic_sidebar( ‘blog-sidebar’ ); ?>
</aside>after do_action(‘ere_sidebar_property’); ?>
Note: Please change ‘blog-sidebar’ name according to your sidebar name
Thanks and Regards
Forum: Plugins
In reply to: [Essential Real Estate] Side bar not displayYes because i called sidebar function in single property page.
It’s better to call global sidebar function instead of plugin sidebar function that will resolve all theme compatibility issue.
Thanks and Regards
Forum: Plugins
In reply to: [Essential Real Estate] Gallery images problemAdd the below in you main function.php
Then add new property image issue will be resolved as it will generate the plugin required size images.
add_theme_support( ‘post-thumbnails’ );
add_action( ‘after_setup_theme’, ‘child_theme_setup’ );
function child_theme_setup() {
add_image_size( ‘my_wide’, 870, 420, true );
add_image_size( ‘my_thum’, 250, 130, true );
}Can you please check the below link.
Gallery image is not found.
After inspecting the image name is changed and add extra -870×420 at the end of image name that is why it’s giving not found.
why it’s changing the name of original imagehttp://admiral-realestate.armadainfotech.co/property/armada-towers-p3-test/
Resolved thanks for wonderful plugin