• In the plugin settings, I have “Remove Shortcodes Style” enabled. However, it’s still applying styles to my shortcodes content. For example, .spu-box h3 has a margin and font size applied, which is conflicting with the styles from my theme. I know I can override this using !important, but I shouldn’t have to. When “Remove Shortcodes Style” is enabled, it shouldn’t apply any styles to shortcodes content.

Viewing 1 replies (of 1 total)
  • Plugin Support gonzalesc

    (@gonzalesc)

    Hi.

    The option Remove Shortcode Style only apply to social media shortcode that this plugin provide.

    Maybe you can redefine this css if put your custom style after to the plugin Popup style:

    add_action( 'wp_enqueue_scripts', 'custom_enqueue_scripts' ); 
    
    function custom_enqueue_scripts() {
    	wp_enqueue_style( 'custom-spu-css', plugins_url( 'path/your/css/custom_public.css', __FILE__ ), array('spu-public-css'), false );
    }

    Remember that you must be especific in your propierties.

    If you like the plugin / support please leave a short review. It’s a tremendous help for us!

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘Remove Shortcodes Style’ is closed to new replies.