Show tags in post

Hey!

I would like to show tags below a post:
http://mygreenhappiness.com/test-2/

With other theme x sites it’s working but with this one not.
Do you know why?

Thanks!

Hey,

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

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

I add my login thank you!

Hi again,

Please use the WordPress Tags section in Post Editor to add tags (see screenshot)

I tested in my local setup and tags are displaying fine (see screenshot) However i wanted to test in your site but the credentials you’ve provided isn’t working. Please double check the username and password.

Thanks!

Hi, thanks for looking!
I did used the tags section but it’s not working.

I changed the credentials, can you try again? thanks

Hi again,

Yes the credentials worked, I checked your setup and found few issues. Please check for the following first:

  1. Ensure everything is up to date according to our version compatibility list at https://theme.co/apex/forum/t/troubleshooting-version-compatibility/195. Please follow the best practices when updating your theme and plugins. See https://theme.co/apex/forum/t/setup-updating-your-themes-and-plugins/62 for more details.

  2. Clear all caches including browser cache then deactivate your caching plugins and other optimization plugins.

  3. If you’re using a CDN, please clear the CDN’s cache and disable optimization services.

  4. Test for a plugin conflict. You can do this by deactivating all third party plugins, and seeing if the problem remains. If it’s fixed, you’ll know a plugin caused the problem, and you can narrow down which one by reactivating them one at a time.

  5. Remove custom CSS,and JavaScript

  6. I noticed you’ve two instances of Pro (X pro and Pro) this can also conflict, please remove X Pro and keep Pro theme.

Let us know how this goes!

Hi! Thanks for looking.
I did everything you said, but still not working…

The only plug-in I can’t update is ACF because I don’t have a license, but I downloaded this plug-in with Theme X. How can I update this extension?

Hi,

Sorry for the confusion.

The tags is not added by default in ICON Stack.

To add it, please add the code below in your child theme’s functions.php file.

function add_post_tags() {
 if ( has_tag() ) : ?>
  <footer class="entry-footer cf">
    <?php echo get_the_tag_list(); ?>
  </footer>
<?php endif; 
}

add_action( 'x_after_the_content_end', 'add_post_tags', 10 );
add_action( 'x_after_the_excerpt_end', 'add_post_tags', 10 );

Hope that helps.

Thanks a lot!

You’re welcome!

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