@ josh901
The plugin update is not the source of the formatting issue as it was a very minor change so the rich text editor for the bio and notes fields would work with WP 3.9. No styles were changed.
The source of the issue if a CSS conflict with the theme. The theme is overriding some of the template styles. To fix it, add the following to theme’s custom CSS area or to the end of its styles.css file:
#cn-cmap input[type="text"] {
box-sizing: border-box !important;
}
That’ll fix the search input.
The category select… not much can be done about that. The child theme has CSS sprinkled throughout the following file that is overridding its styles:
http://scmwa.com/wp-content/themes/enfold/config-woocommerce/woocommerce-mod.css?ver=3.8.3
The specific style declaration all contain chzn-. Ten instances in all. You could try commenting them out to see if there is any negative impact on other parts of your site.
Likely it is safe, I browsed a few of your pages and did not see any instances in which those styles were actually being used. Perhaps you’re not using the feature where they would be needed?
Hope that helps!
