[Resolved] How to remove Read More button from slider

Home Forums Support [Resolved] How to remove Read More button from slider

Home Forums Support How to remove Read More button from slider

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1184027
    Anonymous

    Hello,

    How I can remove “Read More” button from hero slider on first post showing in my case from girl with yellow background? So, it works like other sliders by clicking on title to access post.

    Thanks,

    Sara

    #1184034
    Leo
    Staff
    Customer Support

    Hi there,

    Go to additional CSS field in the customizer and find this piece of CSS:

    .wpsp-grid article:not(:first-child) .wp-show-posts-entry-summary, .wpsp-grid article:not(:first-child) .wp-show-posts-entry-meta-below-post, .wpsp-grid article:not(:first-child) .wpsp-read-more {
        display: none;
    }

    Then remove all the :not(:first-child) part.

    #1186227
    Anonymous

    Hello Leo,

    I had tried your solution but, it seems that it places “Read More” button in all entries from slider and I am looking to do exactly the oposite to remove it from all entries from slider. Is there other way to do this?

    Thanks,

    Sara

    #1186473
    Leo
    Staff
    Customer Support

    It definitely shouldn’t.

    When I tried it using chrome inspect, this is the result:
    https://www.screencast.com/t/818buiTr

    Can you make sure to replace this block:

    .wpsp-grid article:not(:first-child) .wp-show-posts-entry-summary, .wpsp-grid article:not(:first-child) .wp-show-posts-entry-meta-below-post, .wpsp-grid article:not(:first-child) .wpsp-read-more {
        display: none;
    }

    With this?

    .wpsp-grid article .wp-show-posts-entry-summary, .wpsp-grid article .wp-show-posts-entry-meta-below-post, .wpsp-grid article .wpsp-read-more {
        display: none;
    }
    #1187267
    Anonymous

    Perfect solution Leo, thank you! ๐Ÿ™‚

    #1187443
    Leo
    Staff
    Customer Support

    No problem ๐Ÿ™‚

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.