MaBecker
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Adding a new product… maybe a bugthanks for your answer. marked this as resolved 🙂
Forum: Plugins
In reply to: [WooCommerce] Adding a new product… maybe a bugyes, i’m fine with this, but people maybe need to clean up sometimes their db and it would be good to know that espeacially those should not be touched. other people could run into the same situation.
cheersForum: Plugins
In reply to: [WooCommerce] Adding a new product… maybe a bugi deleted unused terms with wp-sweep.
Unused Terms
Note that some unused terms might belong to draft posts that have not been published yet. Only sweep this when you do not have any draft posts.grouped
variable
externaldid test it again and can confirm now that if the terms are deleted it leads to the behaviour you can see on my screenshots.
Forum: Plugins
In reply to: [WooCommerce] Adding a new product… maybe a bughmm, nothing which was changed since i updated.
i just build two new products (1 grouped, 1 variable)now the switching works again. is it correct, that the SKU field is now based in inventory?
Forum: Plugins
In reply to: [WooCommerce] Adding a new product… maybe a bugi guess i did something wrong. i seeped some unused terms, maybe this is the problem?
Unused Terms
Note that some unused terms might belong to draft posts that have not been published yet. Only sweep this when you do not have any draft posts.grouped
variable
externalif so, is there any way to add them again.
Forum: Plugins
In reply to: [WooCommerce] Adding a new product… maybe a bugadd_action( 'woocommerce_product_options_general_product_data', 'woo_add_custom_general_fields' ); add_action( 'woocommerce_process_product_meta', 'woo_add_custom_general_fields_save' ); function woo_add_custom_general_fields() { global $woocommerce, $post; // Text Field woocommerce_wp_textarea_input( array( 'id' => 'salescompany', 'label' => __( 'Sales Company', 'woocommerce' ), 'placeholder' => 'Adress here', 'desc_tip' => 'true', 'description' => __( 'Sales Company Adress here', 'woocommerce' ) ) ); woocommerce_wp_textarea_input( array( 'id' => 'nddshortdescription', 'label' => __( 'Short-Description', 'woocommerce' ), 'placeholder' => 'Enter some short info', 'desc_tip' => 'true', 'description' => __( 'Short description for the small view in cart and email', 'woocommerce' ) ) ); } function woo_add_custom_general_fields_save( $post_id ){ $nddselleradress = $_POST['salescompany']; if( isset( $nddselleradress ) ) update_post_meta( $post_id, 'salescompany', esc_attr( $nddselleradress ) ); $nddshortdesc = $_POST['nddshortdescription']; if( isset( $nddshortdesc ) ) update_post_meta( $post_id, 'nddshortdescription', esc_attr( $nddshortdesc ) ); }Forum: Plugins
In reply to: [WooCommerce] Database not updating. Wp Crontrol not working – 403 error.add this define(‘ALTERNATE_WP_CRON’, true); to your wp-config.php and try again.
Forum: Plugins
In reply to: [WooCommerce] Not work with Slider Revolution 5.2.5.4sure! i did’nt expect you to solve this problem now 😉
Forum: Plugins
In reply to: [WooCommerce] Not work with Slider Revolution 5.2.5.4i can send you the latest version via email, if you want?
Forum: Plugins
In reply to: [WooCommerce] Not work with Slider Revolution 5.2.5.4same here:
fatal error</b>: Call to a member function get_price_html() on boolean in <b>/www/htdocs/…/wp-content/plugins/revslider/includes/slide.class.php</b> on line <b>1473i contacted the tp support already. let’s see what they say
sorry, with whitelisted i meant: twitter provides the user mail adress, but the app owner needs to ask for permissions at twitter support
Forum: Plugins
In reply to: [WooCommerce] Move Woocommerce to a new sitesorry, maybe i misunderstood…. do you want to build a new frontend or do you want to change the backend too?
for point one: build it on the duplicate and then, when its ready activate it on your live site.
another way (needs much documentation of the steps you made) …. make any customisation on the duplicate, when you’re ready and satisfied take the live site off for a day or two and redo on the live site (hope you understand what i mean)
anyway, it’s always good to have a duplicate running in an test environment. this way you’re able to check updates or new functions.
Forum: Plugins
In reply to: [WooCommerce] Move Woocommerce to a new siteHi Tom,
this works. Thanks for your quick reply. Great support!
you guys are quick…. great support! thank you.