• Resolved kaosone

    (@kaosone)


    There is any way to access setting cookie popup via link?
    It’s posssible via shortcode: [gdpr_preferences text=”COOKIE SETTING”]
    But if I have a button in my web page and I want to associate a link at this button, there is a way to do it?
    Many thanks

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Fernando Claussen

    (@fclaussen)

    Hi @kaosone

    The only current way of reopening this is by using the shortcode or function.

    Or you can create a custom javascript that will make this screen show up with javascript.

    Thread Starter kaosone

    (@kaosone)

    Oh ok,
    I don’t have javascript knowledge ??
    It’s a simple way?
    If you writhe this for everyone I’m happy to use it!
    Congratulations for your plugin: it’s very nice!
    Regards

    Plugin Author Fernando Claussen

    (@fclaussen)

    In jQuery you could try something like:

    
    $('.my-button-class').click(function(e) {
        e.preventDefault();
        $('.gdpr.gdpr-privacy-bar').slideDown(600);
    });
    
    Thread Starter kaosone

    (@kaosone)

    No solution for html page?
    Many thanks by the way!

    Plugin Author Fernando Claussen

    (@fclaussen)

    Sorry. I don’t understand what you meant.

    Thread Starter kaosone

    (@kaosone)

    Excuse me form my bad English..
    I’m talking about a html code that I can use for link setting pop up…if possible
    Thanks

    Plugin Author Fernando Claussen

    (@fclaussen)

    Is PHP ok?

    <?php gdpr_preferences( 'Button Text' ); ?>

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Link to setting page’ is closed to new replies.