kursora
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Pending Order Hold Stock not workingMaybe wp-cron is not working? Is disabled or something blocking it.
Forum: Plugins
In reply to: [WooCommerce] Cash on delivery – a problemYou are using a plugin, which enables / disables the payment method for shipping methods? Eg. Active payments WP Desk?
Forum: Plugins
In reply to: [WooCommerce] Not Receiving Customers Phone Number in OrdersMaybe some plugin or theme is causing the problem.
Change theme to storefront and sequentially turn off the plugins.Forum: Plugins
In reply to: [WooCommerce] Product looks as out of stockCheck settings in WooCommerce->Settings->Products->Inventory
- This reply was modified 9 years, 6 months ago by kursora.
Forum: Plugins
In reply to: [WooCommerce] Cant enable WoocommerceIf you have other plugins – disable as many as you can, then enable Woocommerce.
If this did not helps – increase memory limit.Forum: Plugins
In reply to: [WooCommerce] Error JQueryDo you have any cache plugin? If yes, clear all caches.
Forum: Plugins
In reply to: [WooCommerce] How to batch alter SKU numbers?update wp_postmeta set meta_value = CONCAT(meta_value,'-sp') where meta_key = '_sku';Please do database backup before it.
Forum: Plugins
In reply to: [WooCommerce] How to set Default payment gaetwayTry from other browser as logged out user. Maybe it is session cache.
Forum: Plugins
In reply to: [WooCommerce] Upgrade broke my siteEnable WP_DEBUG and WP_DEBUG_LOG – then you can find the reason.
Forum: Plugins
In reply to: [WooCommerce] Can I make Search only search on whole wordsMaybe this helps: http://tinygod.pt/make-wordpress-search-exact/
Forum: Plugins
In reply to: [WooCommerce] Need help with custom shortcodeif( $_product->is_on_sale() == true){Forum: Plugins
In reply to: [WooCommerce] Remove cart from the head of the pageOr you can hide it in CSS.
Forum: Plugins
In reply to: [WooCommerce] package_rates add notice chekcout pageYou can access packages via cart: https://docs.woocommerce.com/wc-apidocs/class-WC_Cart.html
select ID
from wp_posts p, wp_postmeta bfn, wp_postmeta bln, wp_postmeta sfn, wp_postmeta sln
where p.ID = bfn.post_id
and p.ID = bln.post_id
and p.ID = sfn.post_id
and p.ID = sln.post_id
and bfn.meta_key = ‘_billing_first_name’
and bln.meta_key = ‘_billing_last_name’
and sfn.meta_key = ‘_shipping_first_name’
and sln.meta_key = ‘_shipping_last_name’
and bfn.meta_value != sfn.meta_value
and bln.meta_value != sln.meta_valuePage roules should look like this:
http://www.awesomescreenshot.com/image/2059059/aff3babf818fe71f812f9d1b27d60207Rules order is very important.
There is no need to add rule with Flexible SSL. Just enable Flexible SSL in Cryto Tab.