Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Download gift for new subscribersDo they get to choose from a list of products, or is this going to be the same product for all?
Forum: Plugins
In reply to: [WooCommerce] Getting 500 internal error when i click on any categorybut i keep getting 500 internal error when i click on any category or on the page I selected as shop page.
Could you look at the error logs and see what error is happening? 500 is a vague error just meaning a fatal error at the server level. Your web hosts can help get you access to the error log.
Also rule out theme / plugin conflicts following this guide: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] How edit the ‘Fee’ line in WooCommerce emailsYou can edit the fee line item be clicking the pencil icon: http://cld.wthms.co/C0iFiI. Then you can name the fee.
Forum: Plugins
In reply to: [WooCommerce] Redirect The Buy Button To Product PageRight, so the filter needs to be used outside of the main files.
Here is the snippet you need: https://gist.github.com/WPprodigy/9b0a4797a178cfb68bb019f1e03e9e42
Here is a guide on adding custom code to your site: https://calebburks.com/correctly-add-custom-code-woocommerce/
Forum: Plugins
In reply to: [WooCommerce] Deactivate Woocommerce Causes Lost ContentI’d think this is the expected result? Anything WooCommerce related, for example a section that show product data, is going to not be displayed if WC is deactivated.
Try creating just a new custom page in WordPress with content that you type out manually. Does that exist when deactivating WooCommerce?
Forum: Plugins
In reply to: [WooCommerce] PLUGIN PORTUGUES ERRADOHello,
I’m not sure I 100% understand what’s happening. This is what I got from google translate:
I wish you could help me with a question … My Woocommerce plugin is writing discount coupons shuash. How do I reset this error?
The “writing discount coupons shuash” part I think failed translations. Could you expand a bit on what is happening?
And then also, make sure there isn’t another plugin or a theme causing this error by following this guide: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Two custom fields in New order notification email?There are two ways to edit email templates.
1) Override the template in your child theme following this guide: http://docs.woothemes.com/document/template-structure/. Here are the email templates: https://github.com/woocommerce/woocommerce/tree/master/templates/emails
2) Use the available hooks and filters in a code snippet in your child theme or in a customer plugin.
Forum: Plugins
In reply to: [WooCommerce] hide a shipping if free availableYou’ll need to customize one of the code snippets to only remove the one specific rate rather than all the others. There are some snippets in the comments here that could help: https://gist.github.com/mikejolley/7ced4986b0b9c4b1fffedbe3e6bb6860
Also, the Conditional Shipping and Payments plugin can help with this.
Forum: Plugins
In reply to: [WooCommerce] only want grid only to showThe top section showing the product details is coming from the shop page’s content area. Edit the shop page, and see if there is anything in the text editor (perhaps a shortcode).
If that’s not it, then either your theme or another plugin is adding in this section. To find the culprit, follow this guide: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Same Product Different catagory Different pictureNo, that’s not possible to achieve by default I’m afraid. Will require some customization, else set up separate products 🙂
Forum: Plugins
In reply to: [WooCommerce] Paypal button is missing in checkoutSame as with https://wordpress.org/support/topic/coupon-codes-not-working-2/, look to find what is causing this to happen. 99% chance it’s either your theme or another plugin.
Forum: Plugins
In reply to: [WooCommerce] Coupon Codes not workingCheck for a plugin or theme conflict following this guide: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4.
The main thing here is to see if this happens when using only the WooCommerce plugin, along with a default WordPress theme like twenty seventeen.
Wouldn’t it be better to collect this information on the product page, rather than at checkout? Then store the information as product meta. Will be easier than dealing with a variable number of checkout fields.
The Box Office extension does exactly this by the way.
Forum: Plugins
In reply to: [WooCommerce] Two custom fields in New order notification email?Per the forums rules, we are not able to support for premium extensions here. This forum is only for WooCommerce core. You will need to contact support from where you purchased the plugin.
Forum: Plugins
In reply to: [WooCommerce] Redirect The Buy Button To Product PageAmazon ban you if the link page has no content. I have only two choices.
The link page would have content though? It just depends on what the user clicks.
This is the expected default behavior. Hiding the button is the easiest fix, but I can’t help with CSS without being able to view the page.
The other option is a PHP snippet to change the buy button link to go to the product page first. Can use this filter for that: https://github.com/woocommerce/woocommerce/blob/master/templates/loop/add-to-cart.php#L25