Few things I need some help on

I need some help here.

  1. I need to set the background color to the light grey but just on the one page, not entire website.
  2. I need put breadcrumbs above the title on a post page.
  3. Is it possible to delete the next post button (marked with yellow X)

Hi @waynepatt58,

Thanks for reaching out.

It’s only possible with a custom template, I could provide general information but we can’t provide further customization.

And since you already have a child them, let’s skip that step. And please check this if you’re not yet familiar with FTP https://www.bleepingcomputer.com/tutorials/introduction-to-ftp/, and you’ll use an FTP client that will serve as or similar to a file manager

  1. Using your hosting file manager or FTP, please add this code to your child theme’s functions.php
  function x_entry_navigation() {
  
  }

That’s for removal of the arrow navigation.

  1. Then copy this file \framework\views\ethos\_content-post-header.php from the main theme into child theme, example

\x-child\framework\views\ethos\_content-post-header.php

Then change its entire content into this

<?php

// =============================================================================
// VIEWS/ETHOS/_CONTENT-POST-HEADER.PHP
// -----------------------------------------------------------------------------
// Standard <header> output for various posts.
// =============================================================================

?>

<header class="entry-header">
   <?php x_breadcrumbs(); ?>

  <?php if ( is_single() ) : ?>
    <?php x_entry_navigation(); ?>
    <h1 class="entry-title"><?php the_title(); ?></h1>
  <?php else : ?>
    <h2 class="entry-title">
      <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to: "%s"', '__x__' ), the_title_attribute( 'echo=0' ) ) ); ?>"><?php x_the_alternate_title(); ?></a>
    </h2>
  <?php endif; ?>
  <?php x_ethos_entry_meta(); ?>
</header>

Save and upload it.

  1. Then please add this CSS to your global custom CSS for background color
.single-post .x-container.main:before {
    background-color: #f8f8f8;
}

Hope this helps.

Very helpful Rad, just out of interest if I payed you guys would you do a custom template?

Hello There,

I might not be able to give you a precise answer to that. I would recommend that you contact our developers directly.
Please do it here: https://theme.co/x/contact/

Regards.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.