Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #898785
    Kiljan
    Participant

    Hi. I dont know what happened, because uptil recently my tags where displayed on my posts and now its not.
    I have a child theme.

    I want the tags to be displayed everywhere and for this functions to be enabled even after future updates.

    Thanks for you help.

    #898797
    Kiljan
    Participant

    These are the custom css I have in the costumizer right now:

    body {
        overflow-y: hidden;
    }
    
    .archive .x-post-slider {
        height: auto !important;
    }
    
    @media (max-width: 767px) {
    
    	.single-post .x-nav-articles {
    		display: block;
    	}
    }
    
    footer.entry-footer.cf a:last-child:after {
        content: " ";
    }
    footer.entry-footer.cf a:after {
        content: " / ";
    }
    
    @media (min-width:767px){
    .blog footer.entry-footer.cf {
        padding-left: 35px;
        display: block;
        width: 66%;
        float: right;
    }
    }
    
    body.archive .entry-footer.cf {
        float: left;
        padding-left: 35px;
    }
    
    #898799
    Kiljan
    Participant

    and this is whats in my child theme / functions.php

    <?php
    
    // =============================================================================
    // FUNCTIONS.PHP
    // -----------------------------------------------------------------------------
    // Overwrite or add your own custom functions to X in this file.
    // =============================================================================
    
    // =============================================================================
    // TABLE OF CONTENTS
    // -----------------------------------------------------------------------------
    //   01. Enqueue Parent Stylesheet
    //   02. Additional Functions
    // =============================================================================
    
    // Enqueue Parent Stylesheet
    // =============================================================================
    
    add_filter( 'x_enqueue_parent_stylesheet', '__return_true' );
    
    // Additional Functions
    // =============================================================================
    
    if ( ! function_exists( 'x_entry_navigation' ) ) :
      function x_entry_navigation() {
    
      $stack = x_get_stack();
    
      if ( $stack == 'ethos' ) {
        $left_icon  = '<i class="x-icon-chevron-left"></i>';
        $right_icon = '<i class="x-icon-chevron-right"></i>';
      } else {
        $left_icon  = '<i class="x-icon-arrow-left"></i>';
        $right_icon = '<i class="x-icon-arrow-right"></i>';
      }
    
      $is_ltr    = ! is_rtl();
      $prev_post = get_adjacent_post( true, '', false );
      $next_post = get_adjacent_post( true, '', true);
      $prev_icon = ( $is_ltr ) ? $left_icon : $right_icon;
      $next_icon = ( $is_ltr ) ? $right_icon : $left_icon;
    
      ?>
    
      <div class="x-nav-articles">
    
        <?php if ( $prev_post ) : ?>
          <a href="<?php echo get_permalink( $prev_post ); ?>" title="<?php __( 'Previous Post', '__x__' ); ?>" class="prev">
            <?php echo $prev_icon; ?>
          </a>
        <?php endif; ?>
    
        <?php if ( $next_post ) : ?>
          <a href="<?php echo get_permalink( $next_post ); ?>" title="<?php __( 'Next Post', '__x__' ); ?>" class="next">
            <?php echo $next_icon; ?>
          </a>
        <?php endif; ?>
    
      </div>
    
      <?php
    
      }
    endif;
    
    #899737
    Christopher
    Moderator

    Hi there,

    Would you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:

    – Link to your site
    – WordPress Admin username / password
    – FTP credentials

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    Thanks.

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