• Hi there, I am trying to get the get plugin to run on my linky page!
    I guess since the linky plugin doesnt use a conventional post type the popup box function is not activated within.
    Any Ideas how I can get this to run??
    Thank you!

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Wow-Company

    (@wpcalc)

    Please, check if your file footer.php or theme has the hook wp_footer

    Thread Starter tobiholter

    (@tobiholter)

    Thank you! It does not. Is there a way to adapt a hook for my footer, that is less broad and only gets me the pop up without all the other main theme related content???

    Plugin Author Wow-Company

    (@wpcalc)

    Sorry, but it’s not possible.
    The plugin works via wp_footer hook

    Thread Starter tobiholter

    (@tobiholter)

    or is it possible to filter the wp_footer only for the popup plugin functions?

    Plugin Author Wow-Company

    (@wpcalc)

    You can use the function wp_deregister_style() and wp_deregister_script() for disable styles and scripts.
    For example:

    add_action( 'init', 'remove_styles_scripts', 99 );
    
    function remove_styles_scripts() {
    
    	wp_deregister_style( 'my_style' );
            wp_deregister_script('fc-script');
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Pop Up with Custom Page type’ is closed to new replies.