Okay
  Public Ticket #775400
Visitor counter
Closed

Comments

  • Philipe started the conversation

    Hi there,

    How can I deactivate the visitors counter on the footer of all the pages? (check attached file)
    Thanks a lot.

    Philipe


  •  8,994
    Tahir replied

    Hey ,
    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    div#tptn_counter_10 {
        display: none !important;
    }
    
    body[data-bg-header="true"] .container-wrap {
        padding-bottom: 0px !important;
    }
    

    Best.


    ThemeNectar Support Team 

  • Philipe replied

    great!! it worked!

    thanks a lot!

  • Philipe replied

    hey sorry.. just noticed that this worked only on the home page!! do I have to put this code in each page? 

    thanks for your help in advance!

    Philipe

  •  8,994
    Tahir replied

    Hey Again,

    No if you add it in Salient Theme Options Panel it will show up for all pages. 

    Best.


    ThemeNectar Support Team 

  • Philipe replied

    Hi Tahir,

    did you check the last attached image? is the code right? take a look on this page and you will see that I still have the counter there! =(
    http://philipebrazuca.com/contacto/

    thanks for your help on that!

  •  8,994
    Tahir replied

    Hey Again,
    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    .tptn_counter {
        display: none !important;
    }
    

    The above css will remove all instances. Remove the css earlier provided.
    Best.


    ThemeNectar Support Team 

  • Philipe replied

    it worked but now I have a little space between the footer and  body of the website. see attached image

  • Philipe replied

    alright !! I used the same code you sent to me first with a few changes and it worked great!! =D

    .tptn_counter {
        display: none !important;
    }
    body[data-bg-header="true"] .container-wrap {
        padding-bottom: 0px !important;
    }