mbgrafik
Forum Replies Created
-
could you please mark the thread as “resolved”. Team Heateor is doing a great job and should not be in charge for marking all those requests as resolved or not. If every user would mark resolved threads as resolved browsing the support forum would be much more comfortable… Don’t worry, sometimes i forget this myself, it’s just a hint, helping other users to find a possible solution quicker ??
Forum: Plugins
In reply to: [WooCommerce Multilingual & Multicurrency with WPML] Woocommerce 2.7 betaAll Plugins are up to date, thats the aim of a test-site ??
WC 2.7 is scheduled for February thats 1 month away, so i’m testing it atm to prevent any problem’s. I’m sure the wcml team will do a good job ??- This reply was modified 8 years, 2 months ago by mbgrafik.
Forum: Plugins
In reply to: [WooCommerce Multilingual & Multicurrency with WPML] Woocommerce 2.7 betaand there is another php notice (wc_doing_it_wrong) when i view the orders:
i changed these lines in class-wcml-wc-stringsif( isset($product->id) ){
$product_id = $product->get_id(); //actually it’s $product->id
}elseif( is_numeric( $product_obj ) ){
$product_id = $product_obj;
}elseif( isset($product_obj->id) ){
$product_id = $product_obj->get_id(); //actually it’s $product_id = $product_obj->id
}Forum: Plugins
In reply to: [WooCommerce Multilingual & Multicurrency with WPML] Woocommerce 2.7 betai also get “Invalid or duplicated SKU.” on existing products.
ok, i had to run the troubleshouting steps from WPML > Support > troubleshouting.
Now it works again (not sure which step resolved the behaviour).
The only behaviour which i think is not as axpected is:
When i have a product in cart and go back to the shop page then switch the language it redirects me to the product page, not the on one i was on when i swicthed (shop)
..
Forum: Plugins
In reply to: [WooCommerce] Error WC 4.69Hi Mike ??
Thanks for your quick reply ??
Forum: Plugins
In reply to: [WooCommerce Multilingual & Multicurrency with WPML] Fatal errorarghh… Sorry, missed it.
Forum: Plugins
In reply to: [WooCommerce Multilingual & Multicurrency with WPML] Fatal errorHi Mihaimihai,
reinstalled it, seems to work now. Thanks for the quick reply ??
Forum: Plugins
In reply to: [WooCommerce Multilingual & Multicurrency with WPML] Fatal errorupdate to v4.0
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] MailChimp Issue with Contact Form 7+1
Forum: Plugins
In reply to: [WooCommerce Multilingual & Multicurrency with WPML] MulticurrencyHi George,
ok, i will do. I did a screencast and will upload it in the support forum.
Thank you
Forum: Plugins
In reply to: [WooCommerce Multilingual & Multicurrency with WPML] Multicurrencythis also happens with minimal setup (twentysixteen + WPML WCML) when revslider is activated.
wp + plugins are all up-to-date > revslider is running in “no-conflict” mode.regarding your currency switcher: it would be a nice feature to have the option to to hide the switcher based on is_cart | is_checkout ()
- This reply was modified 8 years, 4 months ago by mbgrafik.
Forum: Plugins
In reply to: [WooCommerce Multilingual & Multicurrency with WPML] MulticurrencyHi George,
i’m using a 2016 child theme, no additional js is loaded via child theme.
The error appears when Revolution Slider is activated. as soon as the slider plugin is active i activate multicurrency > save
then set the currency rate and click save in the dialog > js errorError: cannot call methods on dialog prior to initialization; attempted to call method ‘close’
/wp-admin/load-scripts.php?c=0&load%5B%5D=jquery-core,jquery-migrate,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-resizable,jquery-ui-draggable,jquery-ui-but&load%5B%5D=ton,jquery-ui-position,jquery-ui-dialog,utils,jquery-ui-progressbar,underscore,backbone&ver=4.6.1 line 2- This reply was modified 8 years, 4 months ago by mbgrafik.
missed some part of the code, sorry, so here is the full
// 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 ) ); } // add to order add_action( 'woocommerce_add_order_item_meta', 'woo_order_extra_meta', 10, 3 ); function woo_order_extra_meta( $item_id, $values, $cart_item_key ) { $feat = get_post_meta( $values[ 'product_id' ], 'features', true ); wc_add_order_item_meta( $item_id, 'Features', $feat , false );