Tagged: x
-
AuthorPosts
-
September 4, 2016 at 3:57 pm #1160836
NoellemenaParticipantI know it sounds crazy, but I want to keep the breadcrumbs bar because I like the colored bar! But I want to get rid of the text inside of it as it is leading people to the “blog” which we do not use on this site.
Here is a quick video explanation! 🙂
http://noellemena.evsuite.com/crazy-breadcrumbs/Login is below.
THANK YOU!! Noelle
September 4, 2016 at 3:58 pm #1160837
NoellemenaParticipantThis reply has been marked as private.September 4, 2016 at 8:35 pm #1161031
NicoModeratorHi There,
Thanks for writing in.
Loved the video it so cute.
Anyways, please try adding this code in your Customizer > Custom > CSS:
This will remove any text on your breadcrumbs.
.x-breadcrumbs{ display:none; }Play with the class .x-breadcrumbs to adjust what you want to achieve in your breadcrumbs.
Feel free to ask us again.
Hope it helps.
Thanks.
September 5, 2016 at 9:40 pm #1162461
NoellemenaParticipantThank you, perfect! 🙂
Is there a way to make a “read more” tag/box to be at the end of the excerpt on archive pages like this one:
http://myjourneyoffaith.com/tag/laura-macfarlan/*login is above
Thanks!!! 🙂 Have a wonderful night!
NoelleSeptember 6, 2016 at 1:06 am #1162576
Paul RModeratorHi Noelle,
You can add this in your child theme’s functions.php file (wp-content/themes/x-child/functions.php)
function x_excerpt_string( $more ) { $stack = x_get_stack(); if ( $stack == 'integrity' ) { return ' ... <div><a href="' . get_permalink() . '" class="more-link">' . __( 'Read More', '__x__' ) . '</a></div>'; } else if ( $stack == 'renew' ) { return ' ... <a href="' . get_permalink() . '" class="more-link">' . __( 'Read More', '__x__' ) . '</a>'; } else if ( $stack == 'icon' ) { return ' ... <a href="' . get_permalink() . '" class="more-link">' . __( 'Read More', '__x__' ) . '</a>'; } else if ( $stack == 'ethos' ) { return ' ...'; } } add_filter( 'excerpt_more', 'x_excerpt_string' );Please add the code after this line.
// Additional Functions
// =============================================================================Hope that helps.
-
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-1160836 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
