Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. **
  2. * Display:
  3. * Skip loading the star rating stylesheet in Strong Testimonials.
  4. */
  5. function my_skip_display_ratings_style() {
  6. wp_deregister_style( 'wpmtst-rating-display' );
  7. }
  8. add_action( 'wp_enqueue_scripts', 'my_skip_display_ratings_style', 11 );
  9. /**
  10. * Form:
  11. * Skip loading the star rating stylesheet in Strong Testimonials.
  12. */
  13. function my_skip_form_ratings_style() {
  14. wp_deregister_style( 'wpmtst-rating-form' );
  15. }
  16. add_action( 'wp_enqueue_scripts', 'my_skip_form_ratings_style', 11 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement