robertpurnomo
Forum Replies Created
-
Thank you so much @0108daniel and @bsfherman.
@bsfherman Your custom CSS works perfectly to hide dots (product image gallery) on WooCommerce product quick view. Thank you so much.
#ast-quick-view-modal .ast-qv-image-slider .flex-control-nav { display: none; }I finally solved the problem and Printful sync with WooCommerce. Cloudflare Bot fight mode is blocking Printful WooCommerce Integration.
So all you need to do is either disable Cloudflare Bot Fight Mode or create custom rule to “skip” for “User Agent: Printful WooCommerce Integration”
https://community.cloudflare.com/t/cloudflare-blocks-printful-woocommerce-integration/357449
I just delete the old website and create a completely new website with only WooCommerce plugin and Printful plugin, but still get the same error “Dang it. Could not open Woocommerce authorization page (HTTP error 403). Make sure https://shibainuofwallstreet.com/wc-auth/v1/authorize is accessible.”
So @artiosmedia is probably right. Repeat API connection attempt most likly threw a red flag on Hostinger which resulted in an automatic black listing of the connecting IPI uninstall all caching plugin including disabling Cloudflare and now I can see Printful Rest API on WooCommerce. I can also see WooCommerce store in Printful but still cannot sync
Hey! Something went wrong with sync.Last sync error: Error: Invalid response from your WooCommerce store. Please make sure your site is working and no plugins are blocking WooCommerce API access
Try to refresh data. If error persists, contact customer support.Hi Sunday Ukafia,
Thank you so much for your kind solution and screencast. I trully appreciate your explanations.
I have over 250 different T-shirt designs. Each T-shirt design has 5 different colors and 4 different sizes. To fill size value and color value one by one would be very time consuming.
Is there any solutions to automatically sync size value and color value in WooCommerce with Google Merchant Center size value and color value ? Or is there any plugin that can do this?
Thanks, Sunday
Forum: Plugins
In reply to: [WooCommerce] external/affliate product URL = product permalinkI solved the issue. Just add below snippet
<?php // Do not include this if already open! /** * Code goes in theme functions.php. */ add_action( 'template_redirect', 'redirect_external_products' ); function redirect_external_products() { global $post; if ( is_singular( 'product' ) && ! empty( $post ) && ( $product = wc_get_product( $post ) ) && $product->is_type( 'external' ) ) { wp_redirect( $product->get_product_url() ); exit; } }It works perfectly 100%. Thank you so much ILLID. This is very helpful for our wholesale customers who only search by SKU.
Forum: Plugins
In reply to: [Meta for WooCommerce] Something went wrong when connecting to Facebook!I have the exact same issue. I’ve tried everything suggested on googles and other forum without success.
I have already followed instruction on -Connect your WooCommerce account to Facebook: https://www.facebook.com/business/help/900699293402826. I create wordpress.com account, install Jetpack then install Facebook for Woocommerce through my site at wordpress.com. Also no success
Here is my details
1) Woocommerce 4.4.1
2) WordPress 5.5
3) Facebook for Woocommerce 2.0.1
4) PHP 7.3.17-1+focal (Supports 64bit values)
5) mysqlnd 5.0.12-dev – 20150407
6) WP_MAX_MEMORY_LIMIT 256M
7) WP Cron enabledI have contacted both Facebook and Skyverge. Hope we finally get solution
Solved. I hope below steps will help everyone else who have dynamic strings error issues:
1) Go to Settings > TranslatePress > Advanced
2) On “Exclude Gettext Strings”, please add all dynamic strings (words) which have errors or are in wrong language
3) On “Exclude from dynamic translation”, please add all dynamic strings (words) which have errors or are in wrong language
4) Click “Save Changes”In my case, all the dynamic strings (words) which were in a wrong language are back to English (default original language). When current language selected is traditional Chinese, the dynamic strings (words) are in traditional Chinese (translated language).
- This reply was modified 5 years, 11 months ago by robertpurnomo.
- This reply was modified 5 years, 11 months ago by robertpurnomo.