Viewing 10 replies - 1 through 10 (of 10 total)
  • Following this as well. I’d like to do the same or remove the link to the post with the featured image.

    Hello @amandaxtreze,
    There is no such option in the theme currently. However, it might be achieved by customization. For that it is recommended to create a Child Theme.

    adiamondlikeme

    (@adiamondlikeme)

    Is there a way to remove the link to the post from the slider images?

    Madhusudan Pokharel

    (@madhusudan977)

    Hello @adiamondlikeme,
    You can acheive this by changing CSS code.
    Go to Admin’s Panel Appearance ->Customize -> Themes Option -> Custom CSS.
    Now inside Custom CSS box put the following code:

    .cycle-caption{
    display:none !important}

    It should remove the link to the post from the slider images.
    Let me know if you have any further queries.
    Regards!!

    adiamondlikeme

    (@adiamondlikeme)

    Hi,

    I tired adding the custom CSS and it didn’t work. The “captions” (grey box with titles) are gone and the link to the post is still there. Any other suggestions? I don’t mind the captions being on the image but I would like to remove the link to the post. Thanks!!

    WEN Solutions

    (@wen-solutions)

    Hello @adiamondlikeme,
    You want to hide all the links to the post from slider, right?
    You can achieve this by some CSS tweaking. You need to add the following code instead, inside your Custom CSS box.

    .cycle-caption a[href] {
     display: none !important;}
    
    #featured-slider li a[href] {
    cursor:auto; !important;
    }

    Let us know how it goes.
    Regards!!

    adiamondlikeme

    (@adiamondlikeme)

    Yes, I’m just trying to hide the links to the post from the slider.

    Unfortunately, adding this to my custom css box didnt work either. All it did was remove the post title from the captions. ??

    WEN Solutions

    (@wen-solutions)

    @adiamondlikeme,
    Sorry that you are having problem. Try this code instead:

    .cycle-caption a[href], #featured-slider li a[href] {
     pointer-events: none !important;
    cursor: default !important; }

    Regards.

    adiamondlikeme

    (@adiamondlikeme)

    That worked! Thank you so much!!

    WEN Solutions

    (@wen-solutions)

    We are glad that it worked ??

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Custom links in slider’ is closed to new replies.