Support

Account

Forum Replies Created

  • Hi Saskia,

    If I understood what you mean (sorry if I didn’t), you can disable the inclusion of backend styles and javascript by using this code in your functions.php:

    add_action( 'wp_print_styles', 'my_deregister_styles', 100 );
    
    function my_deregister_styles() {
    	wp_deregister_style( 'wp-admin' );
    }

    This will avoid any backend css to be included in the front-end.
    But even if you don’t do this, you can overwrite the styles by applying more specif classes in your style file, ie:

    body .container .class .input

    instead of:
    .class .input

    I also have a problem with the acf_form().
    My problem is I’m trying to create an user edit page but can’t find enough documentation too.

  • I wonder if there is anyway to deactivate a license remotly?
    For exemple, I actvated the plugin in an DEV server and forgot to deactivate it!

    No access to DB.

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