Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Hector Cabrera

    (@hcabrera)

    Hi there!

    To remove the title, you have to choices:

    1. Go to Appeareance > Editor.
    2. Add the following to the end of the file:
      .wpp-post-title {
          display: none;
      }
    3. Hit the Update file button to apply changes.
    1. Go to Widgets > WordPress Popular Posts and enable the “Use custom HTML Markup” option under HTML Markup settings.
    2. Set the Post HTML Markup field to <li>{thumb} {stats}</li>
    3. Hit the Save button to apply changes.

    The >> symbol must be something coming from your theme, you’ll have to ask your theme developer how to get rid of it or share your site’s URL here so I can take a look.

    Thread Starter saltandlavender

    (@saltandlavender)

    Thanks, the code worked ?? My URL is https://www.saltandlavender.com. I’m not sure what those >> are about!

    Thread Starter saltandlavender

    (@saltandlavender)

    One more question – is there a way I can center the thumbnails? Like so they’re in the middle of the column? Thanks ??

    Plugin Author Hector Cabrera

    (@hcabrera)

    I’m not sure what those >> are about!

    Just checked your site, and yes they’re being inserted by your theme. Follow the same instructions from the first solution but this time you’ll be adding this code:

    .wpp-list li:before {
        content: ""!important;
    }

    … and to center the thumbnails, try adding this as well:

    .wpp-thumbnail {
        display: block;
        float: none;
        margin: 0 auto 5px auto;
    }
    Thread Starter saltandlavender

    (@saltandlavender)

    The removing the >> worked (thanks!) but they still don’t seem to be centered.

    Plugin Author Hector Cabrera

    (@hcabrera)

    You’re right! This should work:

    .wpp-thumbnail {
        display: block!important;
        float: none!important;
        margin: 0 auto 5px auto!important;
    }
    Thread Starter saltandlavender

    (@saltandlavender)

    It worked! Thanks! You’re smart ??

    Plugin Author Hector Cabrera

    (@hcabrera)

    Don’t mention it. Enjoy the plugin! ??

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Remove Post Titles?’ is closed to new replies.