Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1378331

    Hello,
    I would like to know if there are “Hooks” in ENFOLD. I would like to add a legal code in my footer for the whole web, how can I add this? Thanks

    #1378332

    I mean a text that can be above or below the footer witgets. Thanks

    #1378344

    Hi plvsultra,

    You can use the following hooks:
    avia_before_footer_columns or avia_after_footer_columns
    Hope this helps :)

    Best regards,
    Nikko

    #1378454

    Hello,
    I want to add text above the footer, how can I do it?

    #1378455

    I understand that I can use the avia_before_footer_columns but where is this so I can edit it?

    #1378456

    I do not know what is the procedure to execute the process, I would appreciate it if you could tell me the steps. Thanks

    #1378466

    Hi,

    You can add following code to functions.php file of your child theme in Appearance > Editor

    
    add_action('ava_before_footer', 'ava_before_footer_mod', 10);
    function ava_before_footer_mod() {
      // do something here;
    }
    

    Best regards,
    Yigit

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.