woovina
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Cant see Credit Card OptionI’ve debugged and see if I use the shortcode for the checkout ([woocommerce_checkout]), the option Pay with Cards is displayed as well, please check my screenshot: https://tinyurl.com/2y6fqnc9
But if I use the blocks (default code for the checkout page) it will not show the option Pay with Cards. So I think the problem comes with the blocks.
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Cant see Credit Card OptionThank you. But nevermind, I just changed to use this plugin and it working fine: https://wordpress.org/plugins/pymntpl-paypal-woocommerce/ (you can check my website to see how it works). However, I still prefer to use plugins from WooCommerce, after all it is a payment method created by WooCommerce, but you need to double check your plugin, it is not for nothing that this plugin has such a low rating.
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Cant see Credit Card OptionI think it’s a problem with the plugin. I’ve tried to deactivate/ and then reactive the PayPal account and get this error message:
We could not complete the onboarding process. Some features, such as card processing, will not be available. To fix this, please try again.There is no problem with my PayPal account, so please check and fix this problem. Thank you.
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Cant see Credit Card Option@john Doe: It has been checked: https://tinyurl.com/2ahnpk7m
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Cant see Credit Card OptionI have the same product, the Standard Card Button doesn’t display in the checkout page, please help.
Settings page: https://tinyurl.com/2xpgu73b
Checkout page: https://tinyurl.com/25so22kb
Here is my website: https://oldstorytolife.com/
Thank you so much!
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] What’s this? wp-json/wishlist/v1/products@watchpci I have the same problem, sometime the Wishlist icon never show: https://demo.woovina.net/niche-00/
I have plan to use other plugin for all my websites.Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Site loading slow on installing this plugin@templateinvaders I saw this when check PageSpeed of our website in GTMetrix: https://nimb.ws/Kw86cB Does it affect page load speed?
@stantinv: I have the same problem, and it seems like function: Remove Product from Wishlist if added to cart doesn’t work. Please check.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Price Filter Not Working@zyqz437 Strange! I can help you debug and fix this problem, but i need FTP account.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Price Filter Not Working@zyqz437 Please try update WooCommerce to latest version and try go to WooCommerce > Status > Tools and click on the buttons: https://nimb.ws/jvUhol (then check again)
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Price Filter Not Working@marxveix: You can open this file: wp-content\plugins\woocommerce\includes\widgets\class-wc-widget-price-filter.php (line 68-70) you will see this code:
if ( version_compare( get_option( 'woocommerce_db_version', null ), '3.6', '<' ) ) { return; }That’s why Widget Price Filter doesn’t show on your website (because version of WC in your website is < 3.6). You can add this code into the file function.php of your theme to fix this problem:
function update_woocommerce_version() { if(class_exists('WooCommerce')) { global $woocommerce; if(version_compare(get_option('woocommerce_db_version', null), $woocommerce->version, '!=')) { update_option('woocommerce_db_version', $woocommerce->version); if(! wc_update_product_lookup_tables_is_running()) { wc_update_product_lookup_tables(); } } } } add_action('init', 'update_woocommerce_version');Forum: Plugins
In reply to: [WooCommerce] Woocommerce Price Filter Not Working@fernashes I found the problem, that woocommerce_db_version doesn’t update after update WooCommerce. Even click on the button Update database in WooCommerce > Status > Tools. I’ve fixed the problem by change woocommerce_db_version in the database table (wp_options): https://nimb.ws/j4VNxD
Forum: Plugins
In reply to: [WooCommerce] Widgets doesn’t display in shop page after update@etiennep I found the problem, that woocommerce_db_version doesn’t update after update WooCommerce. Even click on the button Update database in WooCommerce > Status > Tools. I saw many people have same issues, so please check and solve this problem.
Forum: Plugins
In reply to: [WooCommerce] Price Filter@serafinnyc Price filter isn’t showing up, that’s why you only see categories (with counts)
@hasantaqvi I have got same issues after update WooCommerce to version 3.6.2. Hope developer will fix this problem soon.