Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #304722

    Missy S
    Participant

    Hello,

    I am using Ethos. I updated to latest version of X and lost my arrow down icon on my blog.

    Please help me get it back.

    Thanks

    #304727

    Missy S
    Participant
    This reply has been marked as private.
    #304739

    Missy S
    Participant

    Hi,

    As a matter of fact I dont see any of my icons and yes I have cornerstone and I dont have x-shortcodes. Please have a look.

    #304965

    Rupok
    Member

    Hello There,

    Thanks for posting in! Would you please clarify that which icon you are missing (by adding a screenshot maybe?). It will help to understand the issue and provide you a better solution.

    Thanks

    #338600

    Mbzo
    Participant
    This reply has been marked as private.
    #338837

    Rue Nel
    Moderator

    Hello @mbzo,

    Thanks for updating this thread! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

    Please take note that we have removed X shortcodes and it is no longer compatible with the latest X update. Please delete X shortcodes and install Cornerstone instead which you can get it in X Addons > Extensions.

    Can you confirm that you are fully updated? (Theme and Plugins)
    Our latest versions are:
    X Theme: 4.0.5
    Cornerstone: 1.0.4
    Visual Composer: 4.6.1
    Revolution slider: 4.6.93

    You can find the latest version numbers here: (http://theme.co/x/member/changelog/) Then you can compare them to what’s installed on your site.

    If you find anything to be out of date, you can review our update guide.

    Thank you.

    #346872

    Missy S
    Participant

    After updating cornerstone my ICONS have disappeared.

    I am using Ethos.

    I am missing the Chevron Down Icon on my filter:

    chevron down icon

    and I am missing my all of social icons in the navigation bar.

    #346875

    Missy S
    Participant
    This reply has been marked as private.
    #346951

    Rad
    Moderator

    Hi there,

    Do your site has custom template that’s related to filter?

    As of X theme 4.0, icon implementation is changed to something like this.

    <i class="x-icon-home" data-x-icon=""></i>

    instead of by css like this,

    content: "\f015";

    And looks like this new one isn’t implemented at your “Filter by topic”‘s icon. My only guess is you’re using custom template?

    From our demo :

    From your site :

    Thanks!

    #350381

    Missy S
    Participant

    I was able to update the filter so my icon is back, thank you.

    But my social icons in my nav bar is still missing. The URLs are unchanged in the customizer. My twitter & facebook icons appear in the footer but I see nothing in my nav bar.

    My social icons disappeared with the switch to cornerstone. Please help me get it back.

    Thank you

    #350383

    Missy S
    Participant
    This reply has been marked as private.
    #350408

    Christopher
    Moderator

    Hi there,

    Please let us know what code you used in child theme to add icons, you may need to update the code.

    Thanks.

    #350410

    Missy S
    Participant
    // Puts Social Icons in Nav bar
    // =============================================================================
    add_filter('wp_nav_menu_items','custom_social_global', 10, 2);
    
    function custom_social_global($items, $args) {
    
        $facebook    = x_get_option( 'x_social_facebook', '' );
        $twitter     = x_get_option( 'x_social_twitter', '' );
        $google_plus = x_get_option( 'x_social_googleplus', '' );
        $linkedin    = x_get_option( 'x_social_linkedin', '' );
        $xing        = x_get_option( 'x_social_xing', '' );
        $foursquare  = x_get_option( 'x_social_foursquare', '' );
        $youtube     = x_get_option( 'x_social_youtube', '' );
        $vimeo       = x_get_option( 'x_social_vimeo', '' );
        $instagram   = x_get_option( 'x_social_instagram', '' );
        $pinterest   = x_get_option( 'x_social_pinterest', '' );
        $dribbble    = x_get_option( 'x_social_dribbble', '' );
        $flickr      = x_get_option( 'x_social_flickr', '' );
        $behance     = x_get_option( 'x_social_behance', '' );
        $tumblr      = x_get_option( 'x_social_tumblr', '' );
        $rss         = x_get_option( 'x_social_rss', '' );
    
        
        $output = '';
    #350424

    Friech
    Moderator

    Hi There,

    The code you have is cut, please check. And update to latest X|Theme to make sure that this is not an compatibility issue.

    Thanks!

    #350436

    Missy S
    Participant

    Sorry about that, here’s code again & I have latest X.

    // Puts Social Icons in Nav bar
    // =============================================================================
    add_filter('wp_nav_menu_items','custom_social_global', 10, 2);
    
    function custom_social_global($items, $args) {
    
        $facebook    = x_get_option( 'x_social_facebook', '' );
        $twitter     = x_get_option( 'x_social_twitter', '' );
        $google_plus = x_get_option( 'x_social_googleplus', '' );
        $linkedin    = x_get_option( 'x_social_linkedin', '' );
        $xing        = x_get_option( 'x_social_xing', '' );
        $foursquare  = x_get_option( 'x_social_foursquare', '' );
        $youtube     = x_get_option( 'x_social_youtube', '' );
        $vimeo       = x_get_option( 'x_social_vimeo', '' );
        $instagram   = x_get_option( 'x_social_instagram', '' );
        $pinterest   = x_get_option( 'x_social_pinterest', '' );
        $dribbble    = x_get_option( 'x_social_dribbble', '' );
        $flickr      = x_get_option( 'x_social_flickr', '' );
        $behance     = x_get_option( 'x_social_behance', '' );
        $tumblr      = x_get_option( 'x_social_tumblr', '' );
        $rss         = x_get_option( 'x_social_rss', '' );
    
        
        $output = '';
    
          if ( $facebook )    : $output .= '<li class="nav-social-item"><a href="' . $facebook    . '" class="facebook" title="Facebook" target="_blank"><i class="x-icon-facebook-square"></i></a></li>'; endif;
          if ( $twitter )     : $output .= '<li class="nav-social-item"><a href="' . $twitter     . '" class="twitter" title="Twitter" target="_blank"><i class="x-icon-twitter-square"></i></a></li>'; endif;
          if ( $google_plus ) : $output .= '<li class="nav-social-item"><a href="' . $google_plus . '" class="google-plus" title="Google+" target="_blank"><i class="x-icon-google-plus-square"></i></a></li>'; endif;
          if ( $linkedin )    : $output .= '<li class="nav-social-item"><a href="' . $linkedin    . '" class="linkedin" title="LinkedIn" target="_blank"><i class="x-icon-linkedin-square"></i></a></li>'; endif;
          if ( $xing )        : $output .= '<li class="nav-social-item"><a href="' . $xing        . '" class="xing" title="XING" target="_blank"><i class="x-icon-xing-square"></i></a></li>'; endif;
          if ( $foursquare )  : $output .= '<li class="nav-social-item"><a href="' . $foursquare  . '" class="foursquare" title="Foursquare" target="_blank"><i class="x-icon-foursquare"></i></a></li>'; endif;
          if ( $youtube )     : $output .= '<li class="nav-social-item"><a href="' . $youtube     . '" class="youtube" title="YouTube" target="_blank"><i class="x-icon-youtube-square"></i></a></li>'; endif;
          if ( $vimeo )       : $output .= '<li class="nav-social-item"><a href="' . $vimeo       . '" class="vimeo" title="Vimeo" target="_blank"><i class="x-icon-vimeo-square"></i></a></li>'; endif;
          if ( $instagram )   : $output .= '<li class="nav-social-item"><a href="' . $instagram   . '" class="instagram" title="Instagram" target="_blank"><i class="x-icon-instagram"></i></a></li>'; endif;
          if ( $pinterest )   : $output .= '<li class="nav-social-item"><a href="' . $pinterest   . '" class="pinterest" title="Pinterest" target="_blank"><i class="x-icon-pinterest-square"></i></a></li>'; endif;
          if ( $dribbble )    : $output .= '<li class="nav-social-item"><a href="' . $dribbble    . '" class="dribbble" title="Dribbble" target="_blank"><i class="x-icon-dribbble"></i></a></li>'; endif;
          if ( $flickr )      : $output .= '<li class="nav-social-item"><a href="' . $flickr      . '" class="flickr" title="Flickr" target="_blank"><i class="x-icon-flickr"></i></a></li>'; endif;
          if ( $behance )     : $output .= '<li class="nav-social-item"><a href="' . $behance     . '" class="behance" title="Behance" target="_blank"><i class="x-icon-behance-square"></i></a></li>'; endif;
          if ( $tumblr )      : $output .= '<li class="nav-social-item"><a href="' . $tumblr      . '" class="tumblr" title="Tumblr" target="_blank"><i class="x-icon-tumblr-square"></i></a></li>'; endif;
          if ( $rss )         : $output .= '<li class="nav-social-item"><a href="' . $rss         . '" class="rss" title="RSS" target="_blank"><i class="x-icon-rss-square"></i></a></li>'; endif;
    
        
     if( $args->theme_location == 'primary' )
        return $items.$output;
    
      }