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
I mean a text that can be above or below the footer witgets. Thanks
Hi plvsultra,
You can use the following hooks:
avia_before_footer_columns or avia_after_footer_columns
Hope this helps :)
Best regards,
Nikko
Hello,
I want to add text above the footer, how can I do it?
I understand that I can use the avia_before_footer_columns but where is this so I can edit it?
I do not know what is the procedure to execute the process, I would appreciate it if you could tell me the steps. Thanks
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