I have a child theme in wordpress and one of the plugins I am using is called jigoshop.
I made a copy of a few php classes from the plugin and placed them in my child theme folder. I want these clases to override the ones from the plugin folder.
How would I go about doing that?
Thanks!!
I’m assuming this is mostlikly a hiearcy problem. For example, your stylesheets load in the order of child theme then plugin. What you need is to load the plugin styles first then your child theme.
You have a few options:
wp_head()
in yourheader.php
styles.css
Without really digging into the plugin or your code it’s hard to give you an example.