• How do I remove the Free theme name on the bottom of my website and also where it says privacy policy. I removed the category numbers but the category names are not centered.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @shotzie17
    To remove the theme credit from the bottom of your website, you will need to modify the code of your WordPress theme. Here’s how you can do it:

    1. Log in to your WordPress website as an administrator.
    2. Go to Appearance > Editor in the left menu.
    3. On the right side, you will see a list of theme files. Look for the file named footer.php and click on it.
    4. In the footer.php file, you will see the code that generates the theme credit at the bottom of your website. It will look something like this:

    <div class="site-info">
       <?php printf( esc_html__( 'Theme: %1$s by %2$s.', 'your-theme-slug' ), 'your-theme-name', '<a href="https://catchthemes.com/">Catch Themes</a>' ); ?>
    </div><!-- .site-info -->

    5. To remove the theme credit, delete this code or comment it out by adding <!-- at the beginning and --> at the end. For example:

    <!--
    <div class="site-info">
       <?php printf( esc_html__( 'Theme: %1$s by %2$s.', 'your-theme-slug' ), 'your-theme-name', '<a href="https://catchthemes.com/">Catch Themes</a>' ); ?>
    </div><!-- .site-info -->
    -->

    6. Click the “Update File” button to save your changes.

    Please note that modifying your theme’s code may affect its functionality, so it is important to backup your theme files before making any changes.

    As for centering the category names, you will need to modify the CSS for your theme. You can do this by going to Appearance > Customize in the left menu and then clicking on the Additional CSS tab. From there, you can add CSS rules to adjust the alignment of your category names. For example, to center the names, you can use the following rule:

    .category-name {
       text-align: center;
    }

    I hope this helps! Let me know if you have any questions.

    Just a heads-up that whatever change you do in any of the theme’s files will be completely lost any time you update the theme, and you’ll be back right where you began.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing theme name’ is closed to new replies.