#133084 Jupiter post navigation overides Exclusive Addons Post Navigation

Landing Forums JupiterX WordPress Theme Jupiter post navigation overides Exclusive Addons Post Navigation

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • Haroldo Portella

    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

    Hi 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

    Hi 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.

     

    Private
    Haroldo Portella
    This reply has been marked as private.
    Mohsin Al-Rabieai Support Team

    Hi 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

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