I am also experiencing this issue.
I noticed that admin-bar.min.css is not loaded when the plugin is active.
Thus the css attributes of #wpadminbar is not loaded, which makes the top of woocommerce related pages messed up.
The issue probably comes from enqueue_styles() function inside the GPSC_Product_Slider_Carousel_Public class.
Activating the plugin in wordpress also shows this error: “The plugin generated 227 characters of?unexpected output?during activation. If you notice “ headers already sent ” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin” indicating that something is breaking.
I think a temporary fix is to do a custom css by copying the missing attributes including #wpadminbar.
This rough hack fixes it, comment out line 87 in wp-content/plugins/product-slider-carousel/public/class-gpsc-product-slider-carousel-public.php
Like this:
//require GPSC_PRODUCT_SLIDER_CAROUSEL_DIR_PATH_FILE . ‘public/class-gpsc-product-slider-carousel-dynamic-styles.php’;
Have you fixed the issue @alijens?
-
This reply was modified 1 year, 1 month ago by
alphamedak. Reason: Found another rough fix