• Resolved ggggoat

    (@ggggoat)


    On my website, I have a Table of Contents auto-enabled for when a page has two or more headings. However, I can overwrite it by including something like a [no-tos] shortcode on the particular page.

    On this testimonial plugin, it includes a table of contents, and I don’t see any way to disable it (i.e. there is no option in settings, and no way to enter the no-tos shortcode). Any ideas?

    Also, I can’t seem to be able to edit the font size of the person’s name who wrote the testimonial. Presumably, this should be the “author name” part of the “styling” section, but regardless of what I set the font size to, it doesn’t change anything. Likewise, if I change the “weight” to bold, it doesn’t change anything. Any ideas here?

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

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Support SM Rafiz

    (@srafiz)

    Hi @ggggoat

    Please check the below notes:

    1. Did you use a plugin to generate the table of contents? The issue you face may not be related to our testimonial plugin. Can you please provide me the page link so I can check?

    2. The theme CSS may be responsible if the author’s name font styles do not change from the ‘Styling’ section. In that case, you may need to write custom CSS to override the theme styles. Please provide me the page link so I can suggest the custom CSS.

    Thank you.

    Thread Starter ggggoat

    (@ggggoat)

    Thanks for the reply! Here is the page: https://www.pathofsincerity.com/3868-2/

    I use the plugin, “Table of Contents Plus,” https://www.ads-software.com/plugins/table-of-contents-plus/ . It’s an incredibly useful plugin. I would hope I could have that on my website and still use your testimonials plugin~

    If you could pass me along some custom CSS to override the theme style that would be great!!

    Plugin Support SM Rafiz

    (@srafiz)

    Hi @ggggoat

    Please add the below CSS snippets to Dashboard->Appearance->Customize->Additional CSS and hopefully, both of your issues will be resolved.

    .tss-wrapper #toc_container {
    	display: none !important;
    }
    
    .tss-wrapper .author-name > span {
    	font-size: inherit;
    	font-family: inherit;
    	line-height: inherit;
    	word-spacing: inherit;
    	font-weight: 700;
    }

    Thank you. Have a nice day.

    Thread Starter ggggoat

    (@ggggoat)

    Thank you for the quick reply! It looks like the first part worked, as the table of contents is no longer displayed. Thank you! However, the second part did not work. In the “styling” section of the plugin, I have the “Author Name” set to font size 27px and the weight to bolder; however, whether I change it to 10px or 50x, it doesn’t change at all on the live page.

    https://www.pathofsincerity.com/3868-2/

    Plugin Support SM Rafiz

    (@srafiz)

    Hi @ggggoat

    I am glad that the first issue is resolved. I checked the second issue. It seems that there are some copy/paste mistakes in the CSS I have provided (please check: https://prnt.sc/M7F1UcXIWTHr). That’s why it is not working. Please paste the CSS snippet below and it will work:

    .tss-wrapper .author-name span {
            font-size: inherit;
            font-family: inherit;
            line-height: inherit;
            word-spacing: inherit;
            font-weight: 700;
    }

    If it is not working (because the theme overrides the plugin CSS), you can assign font size in the CSS above. For example, if you need a font size of 30px, you can modify the above CSS and assign font-size: 30px; and so on.

    Hopefully, your issue will be resolved. Thank you.

    Thread Starter ggggoat

    (@ggggoat)

    It works now! This was incredible support! Thank you so much!!!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Testimonials Have a Table of Contents’ is closed to new replies.