athinaok
Forum Replies Created
-
Forum: Reviews
In reply to: [QNAP NAS Backup] Works on hostgatorIt works with latest version on hostgator
Thank youI had the same problem with responsive mobile view and with code it works.
Thank youForum: Reviews
In reply to: [Shift8 CDN] Doesn’t workIt is sad because yoy guys give to us a great free cdn service and support and some people do not apreciate it. ??
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Mobile wishlist not responsiveAfter insert this snippet in my chlid’s theme functions it worked
add_filter( 'yith_wcwl_is_wishlist_responsive', '__return_false' );
Thank you for your supportForum: Plugins
In reply to: [YITH WooCommerce Wishlist] Mobile View table is not responsiveAfter insert this snippet in my chlid’s theme functions it worked
add_filter( 'yith_wcwl_is_wishlist_responsive', '__return_false' );
Thank you for your supportForum: Plugins
In reply to: [YITH WooCommerce Wishlist] Mobile wishlist not responsiveHello
The url you provide is not working any more and issue remains with the latest version.
Could you please provide a new link with the patch in order to see if it works.
Please note that the problems comes with version 3.
Thank you .Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Shortcode A-Z Listing with images?Developers could you please provide us this feature please?
Forum: Plugins
In reply to: [Featured Image from URL (FIFU)] Deactivate PluginI thought that wordpress create the additional image sizes locally.
I decided to keep the plug in. Thank you for your time
- This reply was modified 4 years, 6 months ago by athinaok.
Forum: Plugins
In reply to: [Featured Image from URL (FIFU)] Deactivate PluginWhen I click the button it instantly turn off.
After deactivating and remove the plugin all images are off as it should be.The problem was with plugin WP-optimize.
When I try to smush the internal image the following error is created
Could not find file for image: ID=45769, file=https://Same issue with WP-smush plug in
Maybe I should the problem is created with thumbnail images thay left behind and need to run regenarate thumpnails…
Last but not least I would like to thank you for the fantastic plugin you created.
Forum: Plugins
In reply to: [Products per Page for WooCommerce] Compatibility with Woo 4.x / WP 5.x ?I beleive the problem is from the theme’s code side and cannot be fixed.
Thank you for your time.Forum: Plugins
In reply to: [Products per Page for WooCommerce] Compatibility with Woo 4.x / WP 5.x ?I use Nitro theme.
When remove from options
<div class="clearfix"></div>
plugin text appears
https://prnt.sc/sgpoe0Then I change priority to 30 from options
https://prnt.sc/sgpq2tRemove the result count from WooCommerce
remove_action( ‘woocommerce_before_shop_loop’ , ‘woocommerce_result_count’, 20 );Added in themes css in order to make dropbox smaller
/*Products per page plugin*/
#alg_wc_products_per_page {
width: 50px; }…And I am stuck. I do know how to align the plugin date to the left.
My site but website is country restricted
Thank you for your support
- This reply was modified 4 years, 6 months ago by athinaok.
Forum: Plugins
In reply to: [Products per Page for WooCommerce] Compatibility with Woo 4.x / WP 5.x ?With woocomerce 4.1.0 before loop is not visible.
After some research class clearfix hides the before loop
<div class=”clearfix”></div><div> but after that it dispays both woocommerce and plugin’s page results count.Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Mobile View table is not responsiveUnforunately issue remains but I am ok installing v2.
Unfortunately theme’s support is not able to help me.
This is an example from theme with the plug in v2
https://nitro.woorockets.com/niche-12/wishlist/Thank you for your support.
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Mobile View table is not responsiveIf I will use version 2 with the old layout it will work.
Is it possible to have the same compatibility with v3 of the plugin?Forum: Plugins
In reply to: [WooSwipe WooCommerce Gallery] avoid first imageWhen copy paste the ‘ is not the correct. You must retype it.
function remove_featured_image($html, $attachment_id ) {
global $post, $product;
$featured_image = get_post_thumbnail_id( $post->ID );
if ( $attachment_id == $featured_image )
$html = ”;
return $html;
}add_filter(‘woocommerce_single_product_image_thumbnail_html’, ‘remove_featured_image’, 10, 2);
- This reply was modified 4 years, 7 months ago by athinaok.