Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1300700
    becktowery
    Participant

    Hi,

    I’ve looked on the support site for The Grid and there’s not much depth there or any contact info. This is working really well for what I’m doing but I discovered that the Categories shown with the Grid Items have links to Archive pages…This seems kind of redundant as you can filter the categories right there in the gird. How can I remove the link from the category text? There doesn’t seem to be a setting anywhere.

    Thanks!

    #1300730
    Thai
    Moderator

    Hi There,

    Would you mind providing us with the page URL using the grid so we can take a closer look?

    Thanks.

    #1301755
    becktowery
    Participant

    http://www.becktowery.com/our-projects

    I still want the categories to show, just don’t want them to have links/archives.

    #1301995
    Nabeel A
    Moderator

    Hi there,

    Thanks for writing in! Try adding the following code in your Customizer via Appearance > Customize > Custom > Edit Global CSS:

    .tg-cats-holder {
        display: none !important;
    }

    If you want to unlink the text as well then you can add the following jQuery script in your Customizer via Appearance > Customize > Custom > Edit Global Javascript

    jQuery(document).ready(function($){
    	$('.tg-item-title a').each(function(){
    		var text = $(this).html();
    		$(this).replaceWith(text);
    	});
    });

    Don’t forget to clear your browser’s cache after adding the code. Let us know how this goes!

    #1306210
    becktowery
    Participant

    Thanks, but I still need the category text to show, so dont think display:none is what I need. I solved it with pointer-events:none

    #1306603
    Prasant Rai
    Moderator

    Happy to hear that. Feel free to ask us again. Have a great day! 🙂

  • <script> jQuery(function($){ $("#no-reply-1300700 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>