New Landing How can we help? Cardinal Looking for a hook

Viewing 2 posts - 1 through 2 (of 2 total)
  • Posted in: Cardinal
  • #144910
    Ian
    Member
    Post count: 121

    I am trying to add a carousel just above the “page-heading”. It will appear on almost all pages.

    Could you help me out with the appropriate hook please.

    #144931
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Hi,

    The page head is hooked with this code:

    
     add_action( 'sf_main_container_start', 'sf_page_heading', 20 );
    

    Use the same hook but with higher priority so it can be executed before the sf_page_heading() function.

    something similar to this

    
     add_action( 'sf_main_container_start', 'sf_my_custom_carousel', 10 );
    

    Hope it helps.

    -Rui

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.