• Resolved morebadass

    (@morebadass)


    Hi, the Numbered Headings feature is not working properly for me.

    See this: https://imgur.com/a/P7jpx2C

    The number doesn’t go up and is stuck at 1.

    I can see the heading number working fine Inside the WordPress editor (https://imgur.com/a/9nJaHa8) but not in actual url.

    I’ve already updated to the latest plugin version and also changed to different themes and still encounter the same problem.

    Also, how can I change the color of the number and circle without manually adding css?

    Please assist, thank you.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author codesupplyco

    (@codesupplyco)

    Hello.

    Please make sure, there’re no additional tags wrapping your headings and that the first level starts with H2, as H1 is for the page title only and should not be used in post content.

    If it still doesn’t work, please provide the URL of the post and I’ll take a look.

    Colors for the circle are applied automatically in our themes:

    https://themeforest.net/user/codesupplyco/portfolio?ref=codesupplyco

    If you use a different theme you may use this code in Appearance > Customise > Additional CSS to change it:

    
    h2.pk-heading-numbered:before {
      background: #ff0000;
    }
    

    Let me know, if there’s anything else you would like to know.

    Thanks for using Powerkit.

    Thread Starter morebadass

    (@morebadass)

    All the headings are set to Numbered Heading H2.

    It is working only in visual mode editor. Here is the text mode screenshot: https://imgur.com/a/wiPRYkN

    Do you have an email or private way that I can send you the URL of the post?

    Plugin Author codesupplyco

    (@codesupplyco)

    Hello.

    Yes, you may send the URL to [email protected]

    Thanks!

    Plugin Author codesupplyco

    (@codesupplyco)

    I’m afraid, your theme doesn’t have the .content class on the content container.

    Please add this code to Appearance > Customise > Additional CSS:

    
    .single-post-wrap {
    	counter-reset: h2;
    }
    .single-post-wrap > h2 {
    	counter-reset: h3;
    }
    .single-post-wrap > h3 {
    	counter-reset: h4;
    }
    .single-post-wrap > h4 {
    	counter-reset: h5;
    }
    .single-post-wrap > h5 {
    	counter-reset: h6;
    }
    
    Plugin Author codesupplyco

    (@codesupplyco)

    I’ve just updated my response. For the other theme of yours, replace single-post-wrap with entry-content.

    Let me know, if it helped.

    Thread Starter morebadass

    (@morebadass)

    Wow, everything working correctly now.

    Thank you for the extremely fast support!

    Plugin Author codesupplyco

    (@codesupplyco)

    You’re welcome ??

    Would highly appreciate, if you could rate Powerkit on www.remarpro.com, it helps a lot.

    Don’t forget to check out our themes, as they’re on sale now and you may save $20 off your purchase:

    https://themeforest.net/user/codesupplyco/portfolio?ref=codesupplyco

    Thanks for using Powerkit!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Numbered Headings Problem’ is closed to new replies.