gayathricolundalur
Forum Replies Created
-
I have the same issue. I upgraded to woocommcerce Version 2.6.7 and have Toolset Types Version 2.2.2 running. If toolset is active then the woocommerce product data tabs don’t work. I get this error in the console
wc-enhanced-select.min.js?ver=2.6.7:1 Uncaught TypeError: Cannot read property ‘split’ of null(…)a.data.c.initSelection @ wc-enhanced-select.min.js?ver=2.6.7:1b.current @ select2.min.js?ver=4.0.3:3j @ select2.min.js?ver=4.0.3:1e @ select2.min.js?ver=4.0.3:2(anonymous function) @ select2.min.js?ver=4.0.3:3each @ load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,jquery-ui-core,jquery-ui-widget,jquery-ui-mo…:2each @ load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,jquery-ui-core,jquery-ui-widget,jquery-ui-mo…:2a.fn.select2 @ select2.min.js?ver=4.0.3:3ToolsetCommon.select2ConvertInputToSelect @ toolset-select2-compatibility.js?ver=2.2.2:67jQuery.fn.select2 @ toolset-select2-compatibility.js?ver=2.2.2:18(anonymous function) @ wc-enhanced-select.min.js?ver=2.6.7:1each @ load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,jquery-ui-core,jquery-ui-widget,jquery-ui-mo…:2each @ load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,jquery-ui-core,jquery-ui-widget,jquery-ui-mo…:2(anonymous function) @ wc-enhanced-select.min.js?ver=2.6.7:1dispatch @ load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,jquery-ui-core,jquery-ui-widget,jquery-ui-mo…:3r.handle @ load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,jquery-ui-core,jquery-ui-widget,jquery-ui-mo…:3trigger @ load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,jquery-ui-core,jquery-ui-widget,jquery-ui-mo…:3a.event.trigger @ load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,jquery-ui-core,jquery-ui-widget,jquery-ui-mo…:9(anonymous function) @ load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,jquery-ui-core,jquery-ui-widget,jquery-ui-mo…:3each @ load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,jquery-ui-core,jquery-ui-widget,jquery-ui-mo…:2each @ load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,jquery-ui-core,jquery-ui-widget,jquery-ui-mo…:2trigger @ load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,jquery-ui-core,jquery-ui-widget,jquery-ui-mo…:3(anonymous function) @ wc-enhanced-select.min.js?ver=2.6.7:1i @ load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,jquery-ui-core,jquery-ui-widget,jquery-ui-mo…:2fireWith @ load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,jquery-ui-core,jquery-ui-widget,jquery-ui-mo…:2ready @ load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,jquery-ui-core,jquery-ui-widget,jquery-ui-mo…:2K @ load-scripts.php?c=1&load[]=jquery-core,jquery-migrate,jquery-ui-core,jquery-ui-widget,jquery-ui-mo…:2
post.php?post=2071&action=edit:1232I added the API key, but the plugin is still throwing an error. I have upgraded to woocommerce 2.6. The address field is not editable and there is a small exclamation (error) icon at the left-top corner of the address field
Forum: Plugins
In reply to: [WP Ultimate Recipe] User Menu – add email buttonHi,
Thanks! I’ll have to look into updating my child theme.Forum: Plugins
In reply to: [WP Ultimate Recipe] User Menu – add email buttonGreat!! looking forward to the next update.
Forum: Plugins
In reply to: [WP Ultimate Recipe] Customize serving sizeThanks! It worked! I had to add the change function to the footer using wp_footer action; otherwise change() was not triggering the change function!
function namespace_adjust_servings() {
echo ‘<script>jQuery(document).ready(function() {if( jQuery(“.wpurp-recipe-servings-changer input.adjust-recipe-servings”).length ){jQuery(“.wpurp-recipe-servings-changer input.adjust-recipe-servings”).change();}});</script>’;
}
add_action(‘wp_footer’, ‘namespace_adjust_servings’, 100);I know this gets checked on all pages but could not figure out how to put the script after the adjustable_servings.js has been added to the document. Let me know if you have a better workaround!
Thanks a bunch! Appreciate the prompt response ??