• Is there a way I can completely deactivate your styles and just write my own CSS styles? I tried customizing it in the editor but fount there are certain styles the plugin applies that I struggle to overwrite.

Viewing 1 replies (of 1 total)
  • Plugin Author mkscripts

    (@mkscripts)

    Hi,

    To deactivate the CSS coming from download.css, you can use the following PHP code:

    add_action( 'wp_enqueue_scripts', 'mydae_deregister_styles', 100 );
    function mydae_deregister_styles() {
    wp_dequeue_style( 'dae-download' );
    }

    To deactivate the styling options from your New/Edit Download page (Admin Menu > Downloads > New/Edit Download), you can use the “css” attribute for your shortcodes. For example: [download_after_email id=”123″ css=”off”]

    Kind regards,
    Team Download After Email

Viewing 1 replies (of 1 total)
  • The topic ‘Deactivate your styles’ is closed to new replies.