Home Forums Newsletter Plugin Support Solution about the unsubscribe URL in a page

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #17369
    Andrea Canonico
    Participant

    For insert in a page, a URL for the unsubscribe user, I’ve used jJvascript.
    For implement Javascript in the page, I’ve used this plugin:

    Zia3 CSS JS

    Where we can modify the page, I’ve insert this HTML line:
    <a href="#" onclick="request()">Unsubscribe</a>

    And, in the same page, in the text field “Zia3 Inline Custom Javascript”, I’ve insert this Javascript line:

    function request()
    {
       var user= document.getElementsByName("nk")[0].value;
       top.location.href= "http://name_of_site.altervista.org/wp-content/plugins/newsletter/do/unsubscribe.php?nk=" + user;
    }

    This is functioning.

    (Sorry my English is not good)

Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.