Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1126663
    systhemes
    Participant

    Hi – I am looking to find a way to change the image, title and tagline in the menu for each menu I create.

    Can’t seem to find a way to do it.

    I will post link to pages and admin credentials in next post.

    #1126672
    systhemes
    Participant
    This reply has been marked as private.
    #1126862
    Rad
    Moderator

    Hi there,

    Thanks for posting in.

    First, let’s change your custom CSS from this,

     jQuery.noConflict();
    jQuery(document).ready(function(){
    var menuID = jQuery(".sfm-menu-item-478");
    
    findA = menuID.find(‘a’);
    
    findA.click(function(event){
      $('html, body').animate({ scrollTop: 0 }, 'slow');
     });
    }); 
    

    to this

    jQuery(document).ready(function(){
    var menuID = jQuery(".sfm-menu-item-478");
    
    findA = menuID.find('a');
    
    findA.click(function(event){
      $('html, body').animate({ scrollTop: 0 }, 'slow');
     });
    }); 

    Your custom javascript is triggering javascript error.

    About change image and text specific to a page, there is no available feature like that, but, please add this code to Admin > Appearance > Customizer > Custom > Javascript. Just change the image URL and texts to your preference.

    jQuery( function( $ ) {
    
    //page-morgan-hero-sample
    
    if ( $('.page-id-690').length > 0 ) {
    
    $('.sfm-logo img').attr('src', 'http://uniqpages.com/wp-content/uploads/page-morgan.jpg');
    $('.sfm-title h3').text('Title');
    $('.sfm-title h4').text('Sub title');
    
    }
    
    //teri-frye-hero-sample
    
    if ( $('.page-id-693').length > 0 ) {
    
    $('.sfm-logo img').attr('src', 'http://uniqpages.com/wp-content/uploads/page-morgan.jpg');
    $('.sfm-title h3').text('Title');
    $('.sfm-title h4').text('Sub title');
    
    }
    
    } );

    Your site is too slow too, the images are taking some time to load. They are too big.

    Thanks!

    #1126929
    systhemes
    Participant

    That did the trick. Any chance you can pass on this request to the superfly team? The whole purpose of having separate menu’s I believe is to be able to customize each one separately as needed.

    Thanks as always.

    #1127034
    Lely
    Moderator

    You’re welcome!

    We certainly appreciate the feedback! We will forward this suggestion to the plugin developer.

    Cheers!

  • <script> jQuery(function($){ $("#no-reply-1126663 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>