• Resolved CherylS

    (@cheryls)


    Is there a way to create a link in the Focused Title of the Heading?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Fauzan Jegstudio

    (@fauzanjegstudio)

    Hello @cheryls,

    We apologize in advance, for now we do not have a feature like this. To achieve this, maybe you can create a custom code to turn it into a link. As an example, you can use the javascript code below.

    
    (function ($) {
    	selector = '.elementor-element-26e629e5 .jkit-heading .heading-title > span > span';
    	text = $(selector);
    	link = '<a href="#">' + text.html() + '</a>';
    
    	text.html(link);
    }
    )(jQuery)
    

    After turning it into a link, there may be some messy styling. You need to add the CSS code manually to fix the style.

    Before making changes to your site, we hope that you can back up all your data so that it can be recovered in case of any unwanted errors.

    Thank You

    Thread Starter CherylS

    (@cheryls)

    Thank you. I will consider that.

    Plugin Author Fauzan Jegstudio

    (@fauzanjegstudio)

    You’re welcome @cheryls,

    We will now mark this forum as resolved. If you have other questions, feel free to create a new topic.

    Thank You

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘JKit – Heading link’ is closed to new replies.