jay
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Missing Stylesheet CustomizrI have resolved my issue. I’m not sure what caused nor what fixed the problem. The only thing I did different this time was, instead of logging in via the wp-admin url, I logged into the web host Godaddy.com first and accessed the log in from there. I also cleared the cache. I then deleted parent theme and re-installed. All seems well. now.
I actually love the plugin so far. But this conflict with the forms is a deal breaker. The bug I noticed is mailchimp woocommerce plugin breaks the password reset form. It doesn’t allow a password to be saved and anyone who forgot their password is not able to log into their account.
Forum: Plugins
In reply to: [IMPress Listings] Archive listings not displaying properlyWhat’s the problem? The page shows 1 listing and it looks to me it’s displaying correctly.
I would bet issues related to archives not displaying can be resolved exploring the ‘custom wrapper’ fields under Listings / Settings. Your theme probably uses a different content wrapper.
Forum: Plugins
In reply to: [IMPress Listings] Custom Wrapper Settings For Customizr ThemeFYI…in case someone comes across the same issue…
I have not been able to solve my problem. I posted the themes template above as a reference not as the solution to the issue.
Forum: Plugins
In reply to: [IMPress Listings] Custom Wrapper Settings For Customizr ThemeThe theme is called Customizr located here: https://ww.wp.xz.cn/themes/customizr/
I added a single test listing:
Listings Page
http://www.teamwaller.com/listings/Detail Page
http://www.teamwaller.com/listings/123-street-road-test/This is the theme’s ‘custom-page.php’. I think I need to create a new ‘single-listing.php’ page that uses a similar format as the custom-page.php template from the theme. I’ve created a child-theme and I’ve tried many variations but I can’t get the sidebar to display correctly on the single listing details or the listings pages.
I’ve asked for help from the theme developer as well which can be seen here:
https://github.com/presscustomizr/customizr/issues/548
THANK YOU! For your time.
This is the theme’s custom-page.php code:
<?php /* Template Name: Custom Page Example */ ?> <?php do_action( '__before_main_wrapper' ); ##hook of the header with get_header ?> <div id="main-wrapper" class="<?php echo implode(' ', apply_filters( 'tc_main_wrapper_classes' , array('container') ) ) ?>"> <?php do_action( '__before_main_container' ); ##hook of the featured page (priority 10) and breadcrumb (priority 20)...and whatever you need! ?> <div class="container" role="main"> <div class="<?php echo implode(' ', apply_filters( 'tc_column_content_wrapper_classes' , array('row' ,'column-content-wrapper') ) ) ?>"> <?php do_action( '__before_article_container' ); ##hook of left sidebar?> <div id="content" class="<?php echo implode(' ', apply_filters( 'tc_article_container_class' , array( TC_utils::tc_get_layout( TC_utils::tc_id() , 'class' ) , 'article-container' ) ) ) ?>"> <?php do_action( '__before_loop' );##hooks the header of the list of post : archive, search... ?> <?php if ( have_posts() ) : ?> <?php while ( have_posts() ) : ##all other cases for single and lists: post, custom post type, page, archives, search, 404 ?> <?php the_post(); ?> <?php do_action( '__before_article' ) ?> <article <?php tc__f( '__article_selectors' ) ?>> <?php do_action( '__loop' ); ?> </article> <?php do_action( '__after_article' ) ?> <?php endwhile; ?> <?php endif; ##end if have posts ?> <?php do_action( '__after_loop' );##hook of the comments and the posts navigation with priorities 10 and 20 ?> </div><!--.article-container --> <?php do_action( '__after_article_container' ); ##hook of left sidebar ?> </div><!--.row --> </div><!-- .container role: main --> <?php do_action( '__after_main_container' ); ?> </div><!-- //#main-wrapper --> <?php do_action( '__after_main_wrapper' );##hook of the footer with get_get_footer ?>