Viewing 5 reply threads
You must be logged in to reply to this topic.
Hi there
I’m wondering if there is a way that I can remove the link clickability of the services icon sections. Even if I don’t specify a URL in the settings or remove the # placeholder they still appear ‘clickable’ on the page.
How can I remove this?
C
Yes I would really like to know how to do this as well !!! Please can you explain ?!
Hello,
For which service element are you talking about?
The icons on services elements doesn’t have links.
Best regards!
Same issue here, not the icons itself but the service square title is a link, |I am not putting any link for it but the # is impossible to remove from the link textbox in editing mode and then clicking on the title makes it go to the top of the page.
element: service square & service circle
problem: the # sign cannot be removed and it links title of element to the top of the page
Thanks
Hello,
To remove the link feature from services square title, please go to file vc_templates\services_large.php and find these lines:
$output .= '<h4><a href="'.esc_url($data['link']).'">'.esc_html($title).'</a></h4>';
$output .= '<p>'.do_shortcode($data['description']).'</p>';
replace with these:
$output .= '<h4>'.esc_html($title).'</h4>';
$output .= '<p>'.do_shortcode($data['description']).'</p>';
Do the same for the services circle, in file vc_templates\services_medium.php
Best regards!
You must be logged in to reply to this topic.