-
AuthorPosts
-
June 17, 2015 at 8:25 am #304722
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
June 17, 2015 at 8:27 am #304727This reply has been marked as private.June 17, 2015 at 8:37 am #304739Hi,
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.
June 17, 2015 at 11:44 am #304965Hello 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
July 23, 2015 at 3:24 pm #338600This reply has been marked as private.July 23, 2015 at 8:17 pm #338837Hello @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.93You 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.
July 31, 2015 at 11:01 pm #346872After updating cornerstone my ICONS have disappeared.
I am using Ethos.
I am missing the Chevron Down Icon on my filter:
and I am missing my all of social icons in the navigation bar.
July 31, 2015 at 11:06 pm #346875This reply has been marked as private.August 1, 2015 at 1:20 am #346951Hi 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!
August 5, 2015 at 12:11 am #350381I 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
August 5, 2015 at 12:12 am #350383This reply has been marked as private.August 5, 2015 at 12:49 am #350408Hi there,
Please let us know what code you used in child theme to add icons, you may need to update the code.
Thanks.
August 5, 2015 at 12:53 am #350410// 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 = '';
August 5, 2015 at 1:05 am #350424Hi 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!
August 5, 2015 at 1:34 am #350436Sorry 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; }
-
AuthorPosts