DexRuffin
Forum Replies Created
-
Turns our custom taxonomies are supported by your plugin and the issue was due to a some unrelated conflict. I am not sure why neither the email support nor the replies here were able to confirm and explain custom taxonomies. I moved to a different solution now anyways.
Problem is that things like delivery times or brands are not product attributes that is why most plugins add these as taxonomies. We do not want the brand or delivery time to appear together with actual product attributes.
Feel free to let me know if anything changes with the plugin. I am happy to update my review.
Forum: Plugins
In reply to: [Fixed Widget and Sticky Elements for WordPress] Problem with Divi ThemeHere is a solution that is supported by all browsers and ie9+
1. Open the file …/wp-content/plugins/q2w3-fixed-widget/js/q2w3-fixed-widget.min.js
2. Search fort.obj.css("width",o);3. Replace both (it is twice in there!!) with
t.obj.each(function(){this.style.setProperty('width',o,'important');});4. These changes are lost with a plugin update so I would recommend renaming the plugin folder “q2w3-fixed-widget” to something like “q2w3-fixed-widget-custom” (after renaming you will have to activate the plugin again).
What this does is adding an
!importantto the element style width of all fixed widgets and thereby overwriting the divi widget stylewidth: 100% !important;You are welcome.