#133084 Jupiter post navigation overides Exclusive Addons Post Navigation
Landing › Forums › JupiterX WordPress Theme › Jupiter post navigation overides Exclusive Addons Post Navigation
-
AuthorPosts
-
Haroldo Portella 1 year, 7 months ago
Hello Team.
I’m having an issue with Exclusive Addons Post Navigation. I already talk with the support of Exclusive Addons, and they explains me this:
“JupiterX Theme has a hook that injects their Post Navigation in any single post, which in return affects ours too”
“The action the use is jupiterx_add_smart_action”
“Could you please ask Jupiterx support if there’s any way to turn this off?”Amir Rather 1 year, 7 months agoHi There
You can remove an action using a child theme see the below guide:
You need to find the action name to remove it example
jupiterx_remove_action( 'jupiterx_breadcrumb' );
Regards
Haroldo Portella 1 year, 5 months agoHi team
I actually tried to do what was specified in the link, but nothing happened. I even changed the name of the function to cause the error in the system and it didn’t change anything. It seems that the child theme function.php is not being read.
Please, I really need help with this, is there a video, showing how to do it?
The child theme is already installed.
Thanks a lot.
H.Mohsin Al-Rabieai Support Team 1 year, 4 months agoHi Haroldo,
Sorry for the delayed response. Please use this snippet somewhere in your child theme’s functions.php:
add_action('init', 'custom_function', 40); function custom_function() { jupiterx_remove_action( 'jupiterx_previous_post_link'); jupiterx_remove_action( 'jupiterx_next_post_link'); }
It will remove Jupiter X overrides on post navigation links.
Bests
-
AuthorPosts