Alex
Forum Replies Created
-
https://joxi.ru/Q2Kz4ojigDPq0m
The checkbox is checked but the field does not appear
Forum: Plugins
In reply to: [WooCommerce] Problems with Variable Productswe had to transfer all products with variations to the draft,
I showed docker because it is a local copy. the problem was discovered by the client after the last woocommerce update, before that everything was working fine. I don’t know how this crash happened.
What have I been through?
1 did regeneration of attributes in the same place
2 updated the database via woocommerce tools
3 deleted all temporary data in the same panelThis was all done one by one and checked after each step with no success
for some reason protected function get_prop( $prop, $context = ‘view’ ) will return an empty value, I was able to track this through XDebug
Forum: Plugins
In reply to: [WooCommerce] Problems with Variable Productsthe problem is that this attribute comes empty and I can’t understand why https://joxi.ru/12Mz4oVi85NajA
Forum: Plugins
In reply to: [WooCommerce] Problems with Variable Productsno, the classic editor is used
The theme uses WPBakery@kodypardue Yes my code solves this problem. Sorry for the late reply, didn’t see the notification
Forum: Reviews
In reply to: [Bundle Product Manager] РекомендуюСпасибо за ваш отзыв !
I faced the same problem
I found the problem is that the delivery method was not selected and that means the Order tracking plugin does not work. It does not create a nonce cod and does not pass the test and therefore produces this message.
I solved the problem by adding it to the plugin check
! empty( $order->get_items( 'shipping' ) )
This is the file class-af-order-track-main.php line 206
Path to this file: /wp-content/plugins/addify-order-tracking-for-woocommerce/admin/class-af-order-track-main.phpShould look like this
if ( ! in_array( get_post_status( $post_id ), $exclude_statuses ) && ! is_ajax() && 'untrash' != $action_afotrck && ! empty( $order->get_items( 'shipping' ) ) )But the problem remains that it first sends the letter and only then stores the value in the database.
This is a problem if the order is created manually not through the checkout pageThe plugin is extremely poorly written and does not really meet coding standards. There are very big problems with expanding it or customizing the templates.
- This reply was modified 1 year ago by Alex.