mtruitt
Forum Replies Created
-
You may want to do a bit of research on passwords and brute force attempts…
I just tested using a fresh install of WP 4.9.1 and Woo. If you read the help on coupons it does it via checkout so it will apply on cart. However, when checking out it will ask for email and deny it.
*Sorry, it seems the coupon “test” is not yours – it has now been removed from your order.
Forum: Plugins
In reply to: [WooCommerce] No Shipping Methods Available – FedEx InternationalI reached out to Xadapter the maker of the FedEx Plugin.
version 2.0 is a very old version of the FedEx plugin, which now is no longer compatible with the Upgraded versions of WordPress and WooCommerce sites.
At this point you will need to pay someone unless you know someone to do just what @dougaitken stated.
More than happen to discuss options myself if you need help with Woo. Have been dealing with it for 5+ years now.
Mark
Forum: Plugins
In reply to: [WooCommerce] No Shipping Methods Available – FedEx InternationalSadly, shipping and payment issues tend to be more complex than just a simple fix. (though it could be) This could be a setting for that plugin, Fedex itself could have changed something, or something dealing with your Fedex account itself.
In this instance WooCommerce itself does not directly interact with Fedex but the mentioned plugin handles all of that. If there is an issue (Fedex plugin was updated but WooCommerce has not been there could be comparability issues for example.)
This is why I referenced a quick search and debugging. Without more information on what is happening behind it all its extremely hard to guess at would could be wrong. You could reach out to the markers of that plugin but again a quick search shows it is extremely outdated as well 2+ full version of it.
Forum: Plugins
In reply to: [WooCommerce] No Shipping Methods Available – FedEx InternationalWordPress is updated. Is there any special reason you are using a WooCommerce version that is almost 2 years old? Release date for 2.6.1 was June 2016 and from the status report it does not look like templates are getting overwritten.
I would start with this plugin:
FedEx WooCommerce Shipping with Print Label: by WooForce
Doing a quick search I found https://www.xadapter.com/setting-woocommerce-fedex-shipping-plugin/
This would let you turn debugging on if it has it and enter the address and try to checkout. It should return more info.
Forum: Plugins
In reply to: [WooCommerce] No Shipping Methods Available – FedEx InternationalA lot more information would be needed to even really help with this other than check shipping zones. Though you state you are using WordPress 2.6.
Please refer to: https://wordpress.org/support/topic/before-posting-gather-the-following-details/
Forum: Plugins
In reply to: [WooCommerce] Add fields to Checkout -> Billing DetailsI second @fernashes recommendation. I have used this plugin and it makes life simple for things like this.
I see it as well
Forum: Plugins
In reply to: [WooCommerce] Radio buttons for galleryI have using this plugin in the past to due something similar.
https://codecanyon.net/item/wooswatches-woocommerce-color-or-image-variation-swatches/7444039
This allows you to set images to a “swatch” and it gives them a clickable image. So you could do 2 variations. First charm / Second Charm and adjust the styling since there are 60. If they are limiting it to one of each type you could break it into two groups.
Forum: Plugins
In reply to: [The Events Calendar] Next Month MissingWhat version of the plugin are you using? and pro or free? As well, did you try using the 2017 theme, disabling all other plugins etc? I just tested it using the free version with 4.9.1 and the theme jupiter and it is working as intended.
Forum: Plugins
In reply to: [WooCommerce] Hiding the “have a coupon?” alert on checkout pageHi,
You would need to add this code to your functions file in your theme.
function hide_coupon_field_on_checkout( $enabled ) {
if ( is_checkout() ) {
$enabled = false;
}
return $enabled;
}
add_filter( ‘woocommerce_coupons_enabled’, ‘hide_coupon_field_on_checkout’ );Forum: Plugins
In reply to: [WooCommerce] Editing the product description fieldIf I understand what you are saying. You basically want the variations to be an accordion?
If so this would be a function of your theme and not WooCommerce.
- This reply was modified 9 years, 3 months ago by mtruitt.
Forum: Plugins
In reply to: [WooCommerce] No Buttons working in cart on MobileThis is a theme issue and not directly related to WooCommerce.
The container for the shipping section is overlapping the rest of it which is what is causing it to do this.
- This reply was modified 9 years, 3 months ago by mtruitt.
Forum: Plugins
In reply to: [WooCommerce] Re. Woo Commerce PluginHi,
As far as the issue with the gallery image. You will need to reach out to the theme developer/s regarding the issue as that is theme based and not directly related to WooCommerce.
As far as currency converter do you mean when someone is paying?
If you open up the variations and the individual options under it, you can flag them as virtual products there.
That filter goes in your functions file for the theme.
Be advised if you are using a paid theme and it is not setup for a child theme and you update it will most likely get overwritten.