• I’m running into an issue where the categories of each blog post are sometimes running too far out of the post itself. See screenshot.

    Ideas? Fixes?

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author learnhowwp

    (@themeythemes)

    Hi,

    The issue seems to be caused by not having a space after the commas in the categories list. I will fix in the next plugin update.

    However for now you can fix it by adding the below code to your Dashboard > Divi > Theme Options > Integration tab.

    <script>
    jQuery(document).ready(function($) {
        jQuery('.lwp_meta_categories').each(function() {
            let html = jQuery(this).html();
            html = html.replace(/,/g, ', ');
            jQuery(this).html(html);
        });
    });
    </script>

    Let me know if it works for you.

    • This reply was modified 1 year, 7 months ago by learnhowwp.
    Thread Starter Jacs Zimmerman

    (@jackiezimmerman)

    That worked! Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Categories not formatting correctly’ is closed to new replies.