css/custom.woofilters.css doesn’t load since v2.0.7
-
Hello,
Upgrading to v2.0.7 changed my filters look. Text isn’t bold, check boxes have no border…
I went from this to this.
I found thatcss/custom.woofilters.css
isn’t loaded anymore. It’s the same with v2.0.8.
I looked into changes between v2.0.6 and v2.0.7 and noticed changes related to Elementor.I quickly checked and saw that it seemed to be related to that.
There is two way for me to point that:
- Avoid the elementor widget to be registered (wether initialize
$scriptsLoaded
to true or commentadd_action('elementor/widgets/widgets_registered', array($this, 'registerElementorWidget'));
- Replace call to
wp_register_style('custom.filters', $modPath . 'css/custom.woofilters.css', false, WPF_VERSION, true);
withFrameWpf::_()->addStyle( 'custom.filters', $modPath . 'css/custom.woofilters.css' );
But as I did not go any further, I don’t understand why as:
- I’m using a shortcode, not using
mode="widget"
- I’m using a shortcode programmatically, not using through Elementor
That is right that it is displayed in a page Elementor elements but that’s all…
Could you check that please?
- Avoid the elementor widget to be registered (wether initialize
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘css/custom.woofilters.css doesn’t load since v2.0.7’ is closed to new replies.