Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello there,

    You can remove the link value attributed to each project link by using jQuery code. Try to follow the below steps:

    1. Install and activate the TC Custom JavaScript plugin
    2. Go To Appearance > Custom JavaScript
    3. Paste the following code into the provided box

    
    jQuery(function($) {
        $('.project-item').each( function() {
               
          var link =  $(this).find('a');
        
          link.attr('href', '#');
    
          link.on('click',function (e){
            e.preventDefault();
          });      
    	
        });
    });
    

    4. Update

    Regards,
    Kharis

    Thread Starter TheSpecialKick

    (@thespecialkick)

    Thank you! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove Links from Project Widget’ is closed to new replies.