Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1160836
    Noellemena
    Participant

    I 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

    #1160837
    Noellemena
    Participant
    This reply has been marked as private.
    #1161031
    Nico
    Moderator

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

    #1162461
    Noellemena
    Participant

    Thank 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!
    Noelle

    #1162576
    Paul R
    Moderator

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

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