Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1110088
    Lindy_1
    Participant

    Hi, my client wants to change the wording on this page however I can’t find it in the settings or customise. I am a graphic designer so I’m not a code expert, is there a way I can change this with needing to know any code or if I do can you please provide me with code for that.

    Also can the text be reduced in size as it is super large which is cool but this website is for a bank so it is a little too cool for them.

    http://test.upperyarra.net.au/?s=bowie

    cheers Kinnear

    #1110112
    Christopher
    Moderator

    Thanks for writing in! Regretfully, at this time I am not entirely certain what it is you would like to accomplish based on the information given in your post. If you wouldn’t mind providing us with a little more clarification on what it is you’re wanting to do (a link to a similar example site would be very helpful, or perhaps some screenshots), we’ll be happy to provide you with a response once we have a better understanding of the situation.

    #1110367
    Lindy_1
    Participant
    This reply has been marked as private.
    #1110610
    Rue Nel
    Moderator

    Hello There,

    Thanks for providing the screenshots. Because what you are trying to accomplish requires a template customization, we would like to suggest that you use 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.

    Once you have your child theme active and ready, please follow the following steps below:
    1] Using Notepad or TextEdit or Sublime Text or any text editor, please create a new file in your local machine.
    2] Insert the following code into that new file and in this file where you can change the text.

    <?php
    
    // =============================================================================
    // VIEWS/GLOBAL/_CONTENT-NONE.PHP
    // -----------------------------------------------------------------------------
    // Output when no posts or pages are available.
    // =============================================================================
    
    ?>
    
    <article id="post-0" class="post-0 post type-post status-publish hentry">
      <div class="entry-wrap">
        <header class="entry-header">
          <h1 class="entry-title"><?php _e( 'Nothing to Show Right Now', '__x__' ); ?></h1>
        </header>
        <div class="entry-content">
          <p><?php _e( "It appears whatever you were looking for is no longer here or perhaps wasn't here to begin with. You might want to try starting over from the homepage to see if you can find what you're after from there.", '__x__' ); ?></p>
        </div>
      </div>
    </article> <!-- end #post-0 -->

    3] Save the file named as _content-none.php
    4] Upload this file to your server in the child theme’s folder
    wp-content/themes/x-child/framework/views/global/

    And to resize the search query, please add the following css code in the customizer, Appearance > Customize > Custom > CSS or insert this code in your child theme’s style.css (if you are using a child theme)

    .site .x-searchform-overlay .form-search .search-query {
        font-size: 20px;
        color: red !important;
    }
    
    .site .x-searchform-overlay .form-search label {
        font-size: 20px;
        color: blue !important;
    }

    I have added the color because I just thought you might want to change it.

    We would loved to know if this has work for you. Thank you.

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