• Resolved janea90

    (@janea90)


    Hello,

    where can I edit text of heading? I don’t want to see name of site (Vinařství Hodeček), I would like to see “Welcome” and under it question about age.

    Thanks
    Jana Z.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Phil

    (@philsbury)

    Hi @janea90,

    While its not possible in the settings, it can be done with a filter added to your functions.php:

    
    function my_age_gate_title($content){
      return '<h1 class="age-gate-heading">Welcome</h1>';
    }
    
    add_filter('age_gate_logo', 'my_age_gate_title', 1000);
    

    Thanks
    Phil

    Thread Starter janea90

    (@janea90)

    Thank you, it works.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Edit heading’ is closed to new replies.