Plugin Directory

Changeset 1092242


Ignore:
Timestamp:
02/17/2015 08:18:37 AM (11 years ago)
Author:
captaintheme
Message:

update readme faq

Location:
woocommerce-quantity-increment
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • woocommerce-quantity-increment/tags/1.0.0/readme.txt

    r1060298 r1092242  
    3535== Frequently Asked Questions ==
    3636
     37= I don’t want to use the plugin styles as it looks bad with my theme =
     38
     39You can add the following to your `functions.php` file:
     40
     41`
     42add_action( 'wp_enqueue_scripts', 'wcs_dequeue_quantity' );
     43function wcs_dequeue_quantity() {
     44    wp_dequeue_style( 'wcqi-css' );
     45}
     46`
     47
     48This will dequeue the plugin’s stylesheet.
    3749
    3850== Screenshots ==
  • woocommerce-quantity-increment/trunk/readme.txt

    r1060298 r1092242  
    3535== Frequently Asked Questions ==
    3636
     37= I don’t want to use the plugin styles as it looks bad with my theme =
     38
     39You can add the following to your `functions.php` file:
     40
     41`
     42add_action( 'wp_enqueue_scripts', 'wcs_dequeue_quantity' );
     43function wcs_dequeue_quantity() {
     44    wp_dequeue_style( 'wcqi-css' );
     45}
     46`
     47
     48This will dequeue the plugin’s stylesheet.
    3749
    3850== Screenshots ==
Note: See TracChangeset for help on using the changeset viewer.