in your nectar hooks, you have functions for adding full screen markup for some page templates - problem is, that this function is not pluggable, as i see it - and therefore, you can't add your own templates to these sort of functions.
These chain function and actions are a hassle to overwrite with custom functions for a simple template -
Is there a nice way of adding your own custom page templates to theese conditions?
the functions are `nectar_fullpage_markup_open` and `nectar_fullpage_markup_close` inside actions.php
the two functions you're referring to are hooked onto "nectar_hook_before_content" and "nectar_hook_after_content", which you can also hook your own functions on.
Are you just trying to modify the functions nectar_fullpage_markup_open and nectar_fullpage_markup_close themselves? If so, in your child theme functions.php file you could do the following:
in your nectar hooks, you have functions for adding full screen markup for some page templates - problem is, that this function is not pluggable, as i see it - and therefore, you can't add your own templates to these sort of functions.
These chain function and actions are a hassle to overwrite with custom functions for a simple template -
Is there a nice way of adding your own custom page templates to theese conditions?
the functions are `nectar_fullpage_markup_open` and `nectar_fullpage_markup_close` inside actions.php
Hey online-marketsquare,
the two functions you're referring to are hooked onto "nectar_hook_before_content" and "nectar_hook_after_content", which you can also hook your own functions on.
Are you just trying to modify the functions nectar_fullpage_markup_open and nectar_fullpage_markup_close themselves? If so, in your child theme functions.php file you could do the following: