kursora
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Product Variation & Attributes Loading StuckYou should check browser console fo errors.
Forum: Plugins
In reply to: [WooCommerce] Need to update products after importing them to work well.Probably not all meta data is set properly. Check all meta data before updating product manually and after updating.
Forum: Plugins
In reply to: [WooCommerce] Not calculating shipping on cartMaybe this is theme issue? What happens when you change theme to storefront?
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Price Sort give 404 errorGo to Settings->Permalinks and click Save Changes. Should fix.
Forum: Plugins
In reply to: [WooCommerce] Product review ratings and submit button not working?What heppens when you change theme to storefront. If everything is ok after theme switching you should write to theme author support.
Forum: Plugins
In reply to: [WooCommerce] Adding an image to all products under add to cart buttonYou can use this action:
woocommerce_after_add_to_cart_buttonForum: Plugins
In reply to: [WooCommerce] woocommerce change url of productsYou can modify post_name column in wp_posts table in database.
- This reply was modified 8 years, 10 months ago by kursora.
Forum: Plugins
In reply to: [WooCommerce] Modify variation descriptionIn this case $variation is an array. You are using $variation as object: $variation->get_description()
Forum: Plugins
In reply to: [WooCommerce] Missing Customer Information in MailBefore what and after what?
Forum: Plugins
In reply to: [WooCommerce] On update_status() have no order_items in emailYou should add $order->save(); after $order->update_status
Forum: Plugins
In reply to: [WooCommerce] Problem with “woocommerce_before_calculate_totals”You cannot do echo. You should do error_log and check log file on serwer (enable WP_DEBUG_LOG and check debug.log file)
Forum: Plugins
In reply to: [WooCommerce] Don’t import when draft.What happens when you change:
get_post_status ( $ID )
to:
get_post_status ( $post_id )Forum: Plugins
In reply to: [WooCommerce] Users can see other users orders (sometimes)Are you using any cache plugin or other caching solution on serwer?
Forum: Plugins
In reply to: [WooCommerce] Woocommerce conflict – blank page when editingThere is one Fatal error, thrown by All in one event calendar plugin:
[08-Oct-2017 20:10:15 UTC] PHP Fatal error: Uncaught TypeError: Argument 1 passed to Ai1ec_Exception_Handler::handle_exception() must be an instance of Exception, instance of Error given in /home1/atlanvi8/public_html/wp-content/plugins/all-in-one-event-calendar/lib/exception/handler.php:191 Stack trace: #0 [internal function]: Ai1ec_Exception_Handler->handle_exception(Object(Error)) #1 {main} thrown in /home1/atlanvi8/public_html/wp-content/plugins/all-in-one-event-calendar/lib/exception/handler.php on line 191Forum: Plugins
In reply to: [WooCommerce] 500 Error on WooCommerce Settings!You should enable WP_DEBUG/WP_DEBUG_LOG and then you can see detailed error messages.