mtruitt
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Variation options not appearing as drop downUnless you know how to modify a theme you will need to reach out to the developer/s of the theme you are using.
Forum: Fixing WordPress
In reply to: Can’t updateYou could also do a manual update if you have FTP access.
Forum: Fixing WordPress
In reply to: Internal Server ErrorI would give this plugin a try. https://wordpress.org/plugins/all-in-one-wp-migration/
Have GoDaddy do a fresh install of WordPress and login. Install that plugin and install it locally. Locally do the export and make sure you know the user/PW.
I’ve had good luck using that plugin with issues like this.
Forum: Plugins
In reply to: [WooCommerce] Create a page for e-commerceTry publishing it to see what happens. You can always go back in and make it a draft.
Reason I suggest that is this.
http://www.kameleonchic.com/shop/
Default shop page still shows as being chosen.
- This reply was modified 8 years, 4 months ago by mtruitt.
Forum: Plugins
In reply to: [WooCommerce] Rich text on product pageThis can be done via the normal editor via adding media to the page description.
Forum: Plugins
In reply to: [WooCommerce] Create a page for e-commerceBy default WooCommerce makes the shop, my account, cart and checkout pages for you. It also adds the shortcodes to the respective pages that need them.
Regarding the menu you could do just that and add Checkout, my account and cart under Shop. They don’t have to be in a parent/child relation for that though. You can just order them under Menus.
If you are using a different page other than /shop for the store
Forum: Plugins
In reply to: [WooCommerce] Apply Coupon box not showing up at checkout pageThat is only checkout and was not in the original posters comments.
Again checkout only, cart still functions as it should with the ability to allow multiple coupons. If you are having issues with multiple coupons look at the restrictions on the coupons getting applied as it can be set to only allow one coupon at a time.
The change to checkout was made roughly 2 years ago…
https://github.com/woocommerce/woocommerce/blob/b8d6ee49285b506b617caad7c77121d80c9b04f3/templates/checkout/form-coupon.phpThat template can be overridden if you need the ability to apply more coupons at checkout.
Forum: Plugins
In reply to: [WooCommerce] Apply Coupon box not showing up at checkout pageIf you go under WooCommerce > Status and scroll to the bottom are there templates getting overridden? Coupons by default are there and enabled in WooCommerce. Again this is generally a theme issue. Just because the theme itself is “updated” it does not mean that it is compatible with the current version of WooCommerce. A lot of 3rd party themes overwrite WooCommerce templates and do not get updated regularly. I deal with this all the time at work as we do use paid themes for sites that do not need a lot of customization.
The Be less quick to blame and look into the issue was geared at @etinteractive
Forum: Plugins
In reply to: [WooCommerce] Apply Coupon box not showing up at checkout pageLets step back and take a look at the issue. For starters, I couldn’t find a product that would let me add it to the cart to test (only looked for a moment but shouldn’t have to dig that far to find one)
However, this issue is generally theme related not WooCommerce related.
Have you tried changing your theme to 2017 or Storefront and testing? With a fresh install of WP and Woo using 2017 I had no issues doing anything above. By default coupons are enabled.
Be less quick to blame and look into the issue.
Forum: Plugins
In reply to: [WooCommerce] Extra fee by user role Part IIActually, with some modification I made it work based on the actually user role of a person. The bonus of this method is if you need to assign multiple user roles to a person. Tested with only having residential as a role and adding them to editor as well. Fee was applied other wise the fee was omitted.
function woo_add_cart_fee() { global $woocommerce; $current_user = wp_get_current_user(); if ( in_array( 'residential', $current_user->roles, true) ) { $woocommerce->cart->add_fee( __( 'Custom', 'woocommerce' ), 5 ); } } add_action( 'woocommerce_cart_calculate_fees', 'woo_add_cart_fee' );Replace residential with the role you are assigning them and Custom with whatever you are calling the fee
Forum: Plugins
In reply to: [WooCommerce] Filter to change price display based on category?Not 100% sure what you are going for but try…
function mmi_change_product_price_display( $price ) { if ( has_term( 'clothing', 'product_cat' ) ) { $price .= ' per month'; return $price; } else { return $price; } }When I tested this it added per month to anything that was listed in the clothing category and the price without if it wasn’t.
Forum: Plugins
In reply to: [WooCommerce] Cannot load WoocommerceTo even give you an idea of what it could be. Please follow – https://wordpress.org/support/topic/before-posting-gather-the-following-details/
Forum: Plugins
In reply to: [WooCommerce] Production DescriptionIf you turn Cloudflare off does it work correctly?
Forum: Plugins
In reply to: [WooCommerce] Attribute TableTo avoid that problem on page 1 or 2 you can increase the number of items per page using screen options. If you have products that have 2,770 options for a single attribute you have more issues than just needing to display them on a single page to order them.
When setting up an attribute you do have the option to custom order, name, name(numeric) or ID. The whole point is at that point it is global. You do not have to go into every product and manually reorder them.
Selling 2,770 t-shirts and want to have largest to smallest? No problem just reorder the attribute vs having to go into 2,770 products and manually reorder them because it is done on the product level…
Forum: Plugins
In reply to: [WooCommerce] two products with the same SKUBy default skus are forced to be unique. This goes for big boxes retail stores as well. If there are two different versions they should have different skus. One method would be to use the same base sku but append something to the end to change it.
Example – it comes in red and blue.
soft-toy-red
soft-toy-blueThis would allow you at a glance to sort them in any spreadsheet program and put them side by side/drop of -red/blue and combine into one for stock management.
This would also allow you data on which one seems to be selling more if you are trying to do some type of A/B Testing on color vs category etc.