Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #287504

    Hi there,
    Hoping you can help with a tag issue I am having with my posts. When I add tags to a post page, they are actually appearing in the content page randomly.

    See the image I have pasted below.

    Any idea what could be going wrong here?
    Thanks for your help as always.
    Best
    /D

    #287623

    Hi dcashion!

    Thank you for using the theme.

    Maybe, you have forgotten to close a certain html tag and it’s breaking the layout of the post. The tags should be place below the content by default. Do you mind if we take a look at the actual page?

    Cheers!
    Ismael

    #287910
    This reply has been marked as private.
    #287919

    Hi!

    Please try adding following code to Functions.php file in Appearance > Editor

    function add_custom_script(){
    ?>
    <script>
    jQuery(window).load(function(){
    	   jQuery("span.blog-tags.minor-meta").prependTo(".av-share-box");
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Regards,
    Yigit

    #287938

    Hi Yigit

    Thanks for this – works great but is there any way to insert some spacing between the tags and the social media sharing buttons? They’re a bit on top of each other. Best /D

    #287939

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .av-share-box .av-share-link-description { margin-top: 20px; }

    Best regards,
    Yigit

    #287949

    Thanks Yigit, perfect.

    #287953

    Hey!

    You are welcome, glad we could help : )

    Best regards,
    Yigit

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Tags appearing randomly in my posts’ is closed to new replies.