i’m playing a bit with styling some pages and this seems to be a good thing to place some position fixed content (like avia-post-nav)
is there a hook for it ? i can not find a
yes i can have a child theme footer.php but i don’t want it on all pages just on the frontpage (home)
Hi,
You can try following
avia_before_footer_columns
or
avia_after_footer_columns
Best regards,
Yigit
ok – i created my own do_action and placed it just before
so i have than:
do_action('avia_after_wrap_all');
wp_footer();
now i can place with if-clauses some content on specific pages/post just after wrap-all closes
sometimes the easy way is out of sight. i searched for do_action but did not find the right place i want. On creating my own one i never had thought of till now.
can be closed