Button only shown on special page

Hello,
I need to show in footer a button "Up to top of the page" only for one woocommerce page "Payments&delivery". I wrote the sript and put it in the html widget but it doesn't work. What is wrong?
image

Comments

  • Hey,
    you cannot parse a shortcode on a website with a JS function.
    The JS function will load after the DOM is loaded, this means that the shortcode needs a server to parse it in PHP and output the HTML for the button.

    An easier sollution would be to add the button normally and attach a class to it that makes it
    display: none;
    then in custom JS, depending on the page title toggle the class, so the button is no longer hidden.

    thanks
  • Thank you for the response. I like your idea, but I don't know if I have to make such invisible class (and how) and what I should write in custom CSS for the page?
  • Sorry but we cannot help with such changes, you would have to contact a developer to do that.
    We only help with simple CSS, this would require writing JS functions.
    thanks
Sign In or Register to comment.