Dynamic Visibility in Elementor: Hide/Show Elements or Sections Based on Page Path

Поделиться
HTML-код
  • Опубликовано: 9 сен 2024
  • Learn how to dynamically hide sections, containers and elements in Elementor based on a page's path using jQuery. Dive into this quick tutorial to enhance your Elementor designs and provide tailored content to your audience. 🔗🛠️ Don't forget to like, share, and subscribe for more tips!
    InstaWP Affiliate Link - Support My Efforts
    app.instawp.io...
    Source Code
    urielsoto.com/...
    🟢 Email Technical Support:
    urieljsoto.gum...
    🔵 Video Call Technical Support:
    urieljsoto.gum...
    🔴 Download My Custom Templates:
    urieljsoto.gum...
    🔵 Join Our Facebook Community!
    bit.ly/urielsot...
    🟢 My Web Agency:
    vluxdesigns.com/
    PRODUCTS I USE FOR MY WEBSITES:
    🔴 Get Elementor Pro - My Favorite Page Builder
    bit.ly/urielele...
    CONTACT ME:
    My Website: urielsoto.com/​
    Facebook: / urielsotodev
    Linkedin: / uriel-soto-976b3117a

Комментарии • 5

  • @ActivWall
    @ActivWall Месяц назад

    Thank you. This tutorial helped me fix an issue on our site. Please consider showing the actual code used larger on the screen. It was very difficult to read the words on a laptop screen. I appreciate you sharing your knowledge, though!

  • @caseturfcaseturf
    @caseturfcaseturf Год назад

    why not a site membership tutorial with kadence or bricks with a home page background video

  • @NarenderSingh-nx8yk
    @NarenderSingh-nx8yk Год назад

    very difficult to understand on mobile screen. texts are too small.
    please use smaller screen or zoom in effect

    • @UrielSoto
      @UrielSoto  Год назад

      I will next time for sure. Thanks for the feedback.

  • @Animo-zx8vf
    @Animo-zx8vf 5 месяцев назад +1

    const $ = jQuery;
    $(document).ready(function() {
    const pagePath = window.location.pathname;
    const footerCTA = $('.footerCTA')
    console.log(pagePath)
    if(pagePath === "/"){
    footerCTA.hide()
    }
    })