Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Amit Singh

    (@apprimit)

    Hello,

    Since Sticky header is a premium plugin, can you open a ticket on oceanwp support? Have you cleared cache after disabling it using the OceanWP settings metabox?

    Thread Starter Alex

    (@teachingforfree)

    Hi Amit,

    I did many things, but actually, I need to put sticky option off on all posts. Generally, when a set options in elementor post models, it works for all posts. Thank you for helping me Amit!

    Plugin Author Amit Singh

    (@apprimit)

    Add the below code to the functions.php file of the oceanwp child theme to disable the sticky header from all the posts –

    function disable_stickyheader_post( $return ) {
        if ( is_singular('post') ) {
             $return = false;
         }
         return $return;
        }
    add_filter( 'osh_enable_sticky_header', 'disable_stickyheader_post' );

    Please open a support ticket on oceanwp.org for a premium plugin.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Ocean extra posts options’ is closed to new replies.