Okay
  Public Ticket #1061849
Unlink Blog articles
Closed

Comments

  •  2
    Michael started the conversation

    Hi

    Can I remove a link from a blog articel on the overview page? I have made a quote and i don't want to link it to the single page post.

    Thank you!

  •  3,030
    Andrew replied

    HI Michael, 

    Thanks for reaching out. 

    I'm not sure which quote you are talking about on your site. 

    If you can change the quote to simple text block instead. If that's not feasible you can use a CSS customization 

    a.your-link-class {
       pointer-events: none;
       cursor: default;
    }

    If you need help with this, send me a screenshot of what you want to remove the link on. 

    Cheers 

  •  2
    Michael replied

    Hi, thank you for the feedback.

    I was talking about a quote in my blog section. I want to disable the link to the single portfolio site. Respectively it has to be unclickable.

    Thank you!

  •  3,030
    Andrew replied

    Hi Michael,

    Thanks for keeping in touch with us.

    You may add this to the Custom CSS Code section located by navigating to Appearance>General Settings>CSS/Script Related>Custom CSS Code from your WordPress Dashboard 

    .masonry-blog-item .content-inner {
        pointer-events: none;
    }

    Please let me know if that works :)

    Cheers! 

  •  2
    Michael replied

    Hi Andrew

    It works but it disable the whole blog items :-) I only want to disable the "Quote" Item.

  •  3,030
    Andrew replied

    Hi Michael,

    Apologies for the late reply but the quote is inside the link and cannot be excluded from the link as it's the link.

    In short the whole link would need to be disabled to disable the quote from linking to another page. That is just how that area is structured.

    You might want to reconsider using quotes there if you do not want them linked.
    The other alternative would be to do some modifications but there are not really part of support.

    Hope you can work it from there.