Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1153601
    neodjandre
    Participant

    Hi,

    I need to add a new div next to the logo. Could you please tell me which files I need to edit, so I can transfer them to the child theme?

    Many thanks,
    Andy

    #1153673
    Rupok
    Member

    Hi Andy,

    Thanks for writing in! You can edit the file /framework/views/global/_brand.php.

    Let us know if you need any other assistance.

    Cheers!

    #1153674
    Thai
    Moderator

    Hi There,

    Because this requires a template change, I’d advise that you setup a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.
    Then navigate to your child theme’s /framework/views/integrity directory create a file named _brand.php and paste the code below:

    <?php
    
    // =============================================================================
    // VIEWS/GLOBAL/_BRAND.PHP
    // -----------------------------------------------------------------------------
    // Outputs the brand.
    // =============================================================================
    
    $site_name        = get_bloginfo( 'name' );
    $site_description = get_bloginfo( 'description' );
    $logo             = x_make_protocol_relative( x_get_option( 'x_logo' ) );
    $site_logo        = '<img src="' . $logo . '" alt="' . $site_description . '">';
    
    ?>
    
    <?php echo ( is_front_page() ) ? '<h1 class="visually-hidden">' . $site_name . '</h1>' : ''; ?>
    
    <a href="<?php echo home_url( '/' ); ?>" class="<?php x_brand_class(); ?>" title="<?php echo $site_description; ?>">
      <?php echo ( $logo == '' ) ? $site_name : $site_logo; ?>
    </a>
    
    <div class="custom-div">You New Text Will Go Here</div>

    Hope it helps 🙂

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