BuddyDev

Search

Replies

  • Participant
    Level: Enlightened
    Posts: 40
    Jessica Martin on #23371

    Hello again,

    Have you pushed an update with this recently?

    Regards,

    Jessica

  • Participant
    Level: Enlightened
    Posts: 40
    Jessica Martin on #22749

    Is there a way to export/import Customizer settings?

  • Participant
    Level: Enlightened
    Posts: 40
    Jessica Martin on #22747

    I found the problem. I needed to reset Customizer changes back to default.

  • Participant
    Level: Enlightened
    Posts: 40
    Jessica Martin on #22745

    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.)

  • Participant
    Level: Enlightened
    Posts: 40
    Jessica Martin on #22744

    Thank you!

  • Participant
    Level: Enlightened
    Posts: 40
    Jessica Martin on #22741

    I caught and corrected the div. Thank you! What do you mean by the “code in forum post”?

  • Participant
    Level: Enlightened
    Posts: 40
    Jessica Martin on #22724

    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);
    
    
  • Participant
    Level: Enlightened
    Posts: 40
    Jessica Martin on #22573
    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 );
  • Participant
    Level: Enlightened
    Posts: 40
    Jessica Martin on #22216

    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?

  • Participant
    Level: Enlightened
    Posts: 40
    Jessica Martin on #21906

    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!