Replies
Hello again,
Have you pushed an update with this recently?
Regards,
Jessica
I found the problem. I needed to reset Customizer changes back to default.
Are you able to take a look at the fix for this when using a menu in the left panel? The Font Awesome icon is pushed to the right and when you expand the menu, it rotates the icon on it’s side. You can see it here: http://tinyurl.com/yyr4tp6l (I have the left panel set to only display on small screens, so you will need to reduce window size to see.)
I caught and corrected the div. Thank you! What do you mean by the “code in forum post”?
Thank you. I am using this for an Adsense area and wanted to avoid it displaying on 404 pages. When using the above methods, I lost the area on the blog page. I used this instead:
function igmr_container() { if ( !is_404() && is_active_sidebar( 'igmr_before_container_area' ) ) : ?> <div id="igmr-container" <?php dynamic_sidebar( 'igmr_before_container_area' ); ?> <!-- #igmr_container --> <?php endif; } add_action( 'cb_before_container_contents', 'igmr_container',1);
- This reply was modified 5 years, 6 months ago by Jessica Martin.
function igmr_remove_comment_fields($fields) { unset($fields['url']); unset($fields['email']); return $fields; } add_filter('comment_form_default_fields','igmr_remove_comment_fields', 50 );
Thanks! I thought it was in the theme. Since I am using Yoast SEO I just used this instead of a plugin:
//IGMR Add Yoast Breadcrumbs Before Header function igmr_yoast_breadcrumbs() { if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb( '<div id="breadcrumbs" class="inner clearfix">','</div>' ); } } add_action( 'cb_before_container', 'igmr_yoast_breadcrumbs');
Is there a benefit to using one of the plugins you suggested?
- This reply was modified 5 years, 7 months ago by Jessica Martin.
- This reply was modified 5 years, 7 months ago by Jessica Martin.
Forgot to note, this is when I have the menu appearing in the left panel. It’s looking more and more like this is a Plugin Compatibility issue. I understand if this is outside the scope of support. Any suggestions you have to fix in left panel menu would be great!