Okay
  Public Ticket #2302722
Remove Email from Interactive Projects Tiles
Closed

Comments

  • deharogroup started the conversation

    Hi Team!

    Could you please help us make the interactive project tiles not clickable at all?
    We would really prefer to have them to show just names, categories, etc but no more details since we don’t want to start creating content for each project page.

    Thank you in advance. Other than that the theme looks great!

  • deharogroup replied

    Sorry guys! I meant "Remove LINK from Interactive Project Tiles" Can't see a way of editing the title.

  •  675
    Neuron replied

    Hi,

    Of course, that can be achieved easily by adding the following style in Appearance > Customize > Additional CSS.

    .o-interactive-item--holder {
        pointer-events: none !important;
    }
    

    Feel free to ask for anything you need.

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.

  • deharogroup replied

    Hi,

    That didn't work. I had to apply the following:

    a.o-interactive-item--link {
        pointer-events: none !important;
    }

    .o-interactive-item--title > a {
        pointer-events: none !important;
    }


    But is there a way to disable the links via a function or similar? If you inspect the code it still shows the links.


    Thanks!


  •  675
    Neuron replied

    Hi,

    To completely remove it, you have to add the following script via this plugin or any other plugin that allows you to add Custom Scripts.

    jQuery(document).ready(function($) {
        $('.l-interactive-posts-wrapper .o-interactive-item .o-interactive-item-inner .o-interactive-item--link').remove();
        
        $('.l-interactive-posts-wrapper .o-interactive-item .o-interactive-item-inner .o-interactive-item--holder .o-interactive-item--title a').replaceWith(function(){
            return $("" + $(this).html() + "");
        });
    });

    Since, it is not an a tag anymore, you need to change it's color via Custom CSS.

    .l-interactive-posts-wrapper .o-interactive-item .o-interactive-item-inner .o-interactive-item--holder .o-interactive-item--title span {
        color: #fff !important;
    }

    Feel free to ask for anything you need.

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.

  • deharogroup replied

    Hey guys, 

    Thanks for all this info! I have one more thing I need help with. For the hamburger on the header: where do I edit the social media link that show under the menu. See here: 

    BnGdRU.jpg

  •  675
    Neuron replied

    Hi,

    In the theme you can either use the header that comes as default where you can upload the logo from Customizer and manage it from there or via Elementor where you can create headers and assign them to different pages, so please hover onto button Edit with Elementor and see if there appears a header template. https://prnt.sc/ppaaad

    Click onto the template and the editor for that template will be opened where you can easily edit it.

    - Video Tutorials about header builder.

    So, when editing the header you can either use the navigator tool or open the hamburger.

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.

  • deharogroup replied

    Hi, 

    I did that and this is all I see for option on the hamburger element. The style section is for color and the advanced doesn't show any options for controling the items under the menu:



    Please visit this page and click on the hamburger icon when on mobile layout. You will see the menu and below social icons. Those are the ones I'm trying to edit https://loud3d.com/interactive-projects/:
  •  675
    Neuron replied

    Hi,

    When you edit the header template, please make sure to switch to mobile menu.

    https://prnt.sc/ras6jq

    You should press the hamburger and the overlay will be opened.

    - https://prnt.sc/ras6v9

    You can use also Navigator.

    https://docs.elementor.com/article/378-navigator

    Feel free to ask for anything you need.

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.

  •   deharogroup replied privately
  •  675
    Neuron replied

    Hi,

    It seems like somehow the hamburger element got messed. I've removed it and created it again.

    - https://prnt.sc/rb4tr9

    It works now.

    - https://prnt.sc/rb4u1n

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.