• Resolved williamsdb

    (@williamsdb)


    I have the plugin working well for me, thanks, but I can’t see any way of using the tags that are associated with a post. Is it possible to display the tags at the bottom of a post and then, maybe, click the tag to display a filtered list of posts with that tag?

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

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

    (@nativebreed)

    The hashtags (#tags) are actually being retrieved along with the post data, but they are not visible because they have been intentionally hidden using CSS. Specifically, the container that holds the tags has its display property set to none in the stylesheet located at pluginfolder/assets/mp-style.css, which prevents it from appearing on the page.

    To make the hashtags visible, you can override this rule in your template’s CSS by adding the following declaration:

    .mp-tags {
    display: block !important;
    }

    This forces the tag container to render, overriding the original setting. With the #tags now visible, your blog visitors would be able to click on the #tags to display a filtered list of microposts with that tag.

    I hope the above helps.

    Thread Starter williamsdb

    (@williamsdb)

    Fab, thanks!

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

You must be logged in to reply to this topic.