Hi,
how can I disable the active link in the title of the single post of the blog? It does not lead anywhere.
Thank you!
Hey mediavalue,
Could you post a link to the site in question so that we can take a closer look please?
Best regards,
Rikard
Hi Rikard
Yes, posted in Private Content field.
Hi!
Thank you for the link. Please use this css code in the Quick CSS field.
.single-post .post-title.entry-title a {
pointer-events: none;
}
Best regards,
Ismael
Hi,
Try to add this code in your functions.php:
function removelink_script(){
?>
<script type="text/javascript">
(function($){
function removelink() {
$(".single .entry-title .post-format-icon").unwrap();
}
removelink();
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'removelink_script');
Let us know if it works :)
Best regards,
Nikko
Both solutions work.
Thank you!
Paola
Hi Paola,
Glad we could help :)
Best regards,
Nikko