Skip to content

Instantly share code, notes, and snippets.

@mattyza
Last active December 17, 2015 23:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattyza/1e112788b96999d35c68 to your computer and use it in GitHub Desktop.
Save mattyza/1e112788b96999d35c68 to your computer and use it in GitHub Desktop.
A quick snippet for rhubarbmedia to fix a theme CSS conflict with the Testimonials plugin.
add_action( 'wp_head', 'rhubarbmedia_force_testimonials_css', 100 );
function rhubarbmedia_force_testimonials_css () {
echo '<style type="text/css">.testimonials.fade { opacity: 1 !important; }</style>' . "\n";
} // End rhubarbmedia_force_testimonials_css()
@CreativeSpace
Copy link

Here's a link to the functions.php if you dont mind showing me where to paste or paste it. https://gist.github.com/CreativeSpace/b46fae9e94efd0d517e1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment