mbgrafik
Forum Replies Created
-
Hi George, thx for your reply ??
// add extra info to general product tab add_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' => 'features', 'label' => __( 'Features', 'woocommerce' ), 'placeholder' => 'add features here', 'desc_tip' => 'true', 'description' => __( 'You can add features information in this field', 'woocommerce' ) ) ); } //save post meta data function woo_add_custom_general_fields_save( $post_id ){ $feat = $_POST['features']; // if set > save data to post_meta if( isset( $feat ) ) update_post_meta( $post_id, 'Features', esc_attr( $feat ) ); // if set > save data to post_meta }
When i view the order in my account page and switch languages the product title translates
Productname (EN)
Features <-
text (ok)now switch language to DE
Produktname(DE)
Features <- this should become Eigenschaften
text (ok)- This reply was modified 8 years, 4 months ago by mbgrafik.
Forum: Plugins
In reply to: [WooCommerce] Password strength troubleYou’re welcome ??
Requires: 4.5.0 or higher
Compatible up to: 4.6.1
Last Updated: 3 weeks ago“If you experience any issues, please let the developer know.”
Daniel works at Automattic/Woothemes, i think there is no reason, not to trust the plugin.
I think you should go with it, if you need it right now, or wait, until the woo-team will implement this (i guess this will never happen ?? – but never say never ??Forum: Plugins
In reply to: [WooCommerce] Password strength troubleForum: Plugins
In reply to: [Open Graph and Twitter Card Tags] latest update – php warningHi Marco,
thank you for your quick reply. Great support ??
Marking this thread as resolved ??
Forum: Plugins
In reply to: [Open Graph and Twitter Card Tags] latest update – php warningv.2.01
NOTICE: wp-content/plugins/wonderm00ns-simple-facebook-open-graph-tags/public/class-webdados-fb-open-graph-public.php:319 – Undefined variable: fb_type_homepageForum: Plugins
In reply to: [Olevmedia Shortcodes] Breaks Tinymce Visual Editor in Global Content Blocksok, i think i figured it out. in plugin.js the path to the editor button img is the problem.
giving it an absolute link, makes the editor work, but hides the editor button.. maybe i can’t see the prob right now :/