user3
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: woocommerce cannot edit products?If there is no price at a Product the Edit option works. But if I choose the Edit option and if I enter the prices values I choose Update the option.
After clicking on it Woocommerce gives me the message: “Failed to save product.”
https://drive.google.com/drive/folders/1l6Wei6ynt-IDGD9k4IVq1xn-XecC6Wft
2.png, 3.png
I am going to make a Ticket.
- This reply was modified 1 month, 2 weeks ago by user3.
Forum: Everything else WordPress
In reply to: woocommerce cannot edit products?I disabled all the addons in my Firefox but the same problem presists again.
As I said the problem is not presistent if I choose Quick Edit the option and if I delete valuse from Regular Price and Sales Price.
Forum: Fixing WordPress
In reply to: Publish button not works?Resolved.
Forum: Fixing WordPress
In reply to: Publish button not works?I am sorry.
In my Firefox I disabled all addons and it works now.
Forum: Everything else WordPress
In reply to: Is it allowed by licence to modify wordpress core?Somebody at another forum told me that it can make problems with WordPress licence if I make a web site for other clients?
- This reply was modified 1 month, 2 weeks ago by user3.
Forum: Everything else WordPress
In reply to: woocommerce cannot edit products?I choose Quick Edit the option and I delete the Sales Price and Regular Price values. Then the Edit option is available again for that product.
Forum: Everything else WordPress
In reply to: woocommerce cannot edit products?I exported all my products to CSV file.
After that I deleted all of them from Woocommerce.
I created just a single product in list.
The Edit option works again.
Forum: Plugins
In reply to: [WooCommerce] woocommerce cannot edit products?Sorry it is my mistake.
I ask Moderator to delete this thread.
Forum: Everything else WordPress
In reply to: woocommerce cannot edit products?From console I got the following error messasges
Cookie “mailchimp_landing_site” has been rejected because a non-HTTPS cookie can’t be set as “secure”.
Store “core/interface” is already registered. data.min.js:2:20189
c https://example/wp-includes/js/dist/data.min.js?ver=7c62e39de0308c73d50c:2
register https://example/wp-includes/js/dist/data.min.js?ver=7c62e39de0308c73d50c:2
a https://example/wp-includes/js/dist/data.min.js?ver=7c62e39de0308c73d50c:2
52162 https://example/wp-content/plugins/woocommerce/assets/client/admin/product-editor/index.js?ver=65e7fa9764f8a3d23b84:2
webpack_require https://example/wp-content/plugins/woocommerce/assets/client/admin/product-editor/index.js?ver=65e7fa9764f8a3d23b84:2
https://example/wp-content/plugins/woocommerce/assets/client/admin/product-editor/index.js?ver=65e7fa9764f8a3d23b84:2
https://example/wp-content/plugins/woocommerce/assets/client/admin/product-editor/index.js?ver=65e7fa9764f8a3d23b84:2
https://example/wp-content/plugins/woocommerce/assets/client/admin/product-editor/index.js?ver=65e7fa9764f8a3d23b84:2Forum: Developing with WordPress
In reply to: $wp_styles object initalize to another class?And I understand so. Thank you.
Forum: Developing with WordPress
In reply to: $wp_styles object initalize to another class?I want to inherit already defined “$wp_styles” object in WP_Styles_2 class.
If I do var_dump($wp_styles); after initalized it I get null value.object(WP_Styles_2)#328 (0) { }
class WP_Styles_2 { } global $wp_styles; if ( ! ( $wp_styles instanceof WP_Styles_2 ) ) { $wp_styles = new WP_Styles_2(); } var_dump($wp_styles);
I want to inherit already defined object “$wp_styles” in class “WP_Styles_2”
is it possible to inherit class “WP_Styles_2” to the object “$wp_styles”?