mantish
Forum Replies Created
-
Forum: Plugins
In reply to: [WC Variations Radio Buttons] Display Variation DetailsHi Mark,
That description text is not included in the variable.php template.
It’s added by the javascript.Forum: Plugins
In reply to: [WC Variations Radio Buttons] Prevent disabling of all variation form inputsHi Sammy,
Thanks for the tip.
There’s a new version coming that shouldn’t have that problem.
Although that selector is restricted to the variations table, it shouldn’t affect other inputs.Forum: Plugins
In reply to: [WC Variations Radio Buttons] Display Variation DetailsYou’re right, it isn’t working right now.
The next version of the plugin has full compatibility with WooCommerce 2.4. It’s not available here yet, but you can ge it from the github repo: https://github.com/8manos/wc-variations-radio-buttonsForum: Plugins
In reply to: [WC Variations Radio Buttons] НЕ работает вместе с палгином Add to cart AjaxGood suggestion.
I’ll add support in the next release.Forum: Reviews
In reply to: [WC Variations Radio Buttons] Works after initial errorThanks for the report.
I just updated the plugin, the new version should be working fine.Forum: Reviews
In reply to: [WC Variations Radio Buttons] Does not workHi,
Can you provide your WordPress and WooCommerce versions?
Also, can you copy the entire error message that you’re getting?
Is your store online so I can see the problem?Forum: Plugins
In reply to: [WC Variations Radio Buttons] Installed, activated. It's not working.There’s a new version of the plugin available with some instructions on how to make it work with some themes.
Hopefully it’ll work for youForum: Plugins
In reply to: [WC Variations Radio Buttons] Installed, activated. It's not working.Hi jftidwell
Is there a place where I can see your store?
What theme are you using?Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] multi-language event builderHi Ross,
There are no shortcodes in Polylang but I guess I could create the shortcode in my theme.
How should I do it?Thanks a lot for the plugin Emilio!
I will try it in a few daysflorbv, I haven’t work with child themes, so I wouldn’t know what’s the right way to go. You can check wordpress documentation.
As for the customized files, I was talking about Woocommerce, which is common to have it updated once in a while. Regarding this shipping plugin, we’re actually hacking it, so we have to overwrite the shipping-awd.php and NEVER update it.
I just published my code here: https://gist.github.com/Mantish/5658280
You can compare to see if there’s something oddflorbv, you can put your code in github.
By the way, adding the states (or any othe customization) inside the plugin folder is not recommended, as it may get lost whan you upgrade the plugin.
You can add the states in your theme functions.php like this:add_filter( 'woocommerce_states', 'custom_woocommerce_states' ); function custom_woocommerce_states( $states ) { $states['PH'] = array( 'XXX' => 'Xxxxx', ... ); return $states; }florbv, if you post your code somewhere I’d take a look.
riyota, I think your problem is that orders have 0 weight. Maybe commenting that first line is all that’s needed to make it work.Hi,
all changes should be made in the plugin file: shipping-awd.php