Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Customer see another persons order on order historyThat should work, yep. The customer ID needs to be the same as their ID in WordPress now.
Just be careful with how you export / re-import as to not mess up any data.
Forum: Plugins
In reply to: [WooCommerce] paypal-specific orders on woocommerce not sending emailsPayment does not complete? Did you mean emails are not sent?
Install this and do a test order: https://wordpress.org/plugins/email-log/
If emails show up in the log but aren’t sent out, you have email server troubles and should switch to a separate SMTP service: https://docs.woocommerce.com/document/email-faq/#section-7
Forum: Plugins
In reply to: [WooCommerce] ‘Loading Spinner’ is broken (not animating)Does this happen when only WooCommerce is active (not Bookings)?
It’s against the rules to support premium extensions here, so you’ll need to get in contact with the plugin authors. If you have a license from WooCommerce.com, you can contact their support here: https://woocommerce.com/my-account/
Forum: Plugins
In reply to: [WooCommerce] WooCommerce remove descriptionNeed a link to your website to help with this, can’t see anything about the code from screenshots.
Forum: Plugins
In reply to: [WooCommerce] Custom Post “Add to cart” Buttons editingIt is possible to conditionally change the button text, but would require some customization / custom code.
1) Make a custom shortcode with an extra parameter for button text: https://github.com/woocommerce/woocommerce/blob/b8700c51e20b935e5bbb95b00d289d4ced2868ea/includes/class-wc-shortcodes.php#L294
2) Use this filter to conditionally return different button text based on the product ID: https://github.com/woocommerce/woocommerce/blob/21e51b9fc6a9537366cbd5ca8275ec40eacd8e61/includes/class-wc-product-simple.php#L56
Forum: Plugins
In reply to: [WooCommerce] Show the variable image on my store pageWhen a variation is selected (all attributes are chosen and a variation is matched), then the product image image will be switched out for the variation image.
This will not happen the other way around by default – changing the attributes when an image is selected. That will require customization.
Forum: Plugins
In reply to: [WooCommerce] Customer see another persons order on order historyThe fix is to not import invalid data 😉
When you imported orders, they referenced a User ID. If the user IDs now are different, the wrong people are linked to the wrong orders.
Need to go through and fix the data. Order export, examine the customer ID column, and go from there.
Forum: Plugins
In reply to: [WooCommerce] My customers are being billed wrongCould you paste your system status report here? You can find it at WooCommerce > Status.
And then what payment gateway are you using? Sounds like a potential problem with the gateway.
Forum: Plugins
In reply to: [WooCommerce] paypal-specific orders on woocommerce not sending emailsOrders marked as “pending payment” will not have emails sent. Orders that have been paid for should go to the “processing” status. If they are not, you have a PayPal IPN problem.
https://docs.woocommerce.com/document/email-faq/#section-2
https://docs.woocommerce.com/document/paypal-standard/#section-21
Forum: Plugins
In reply to: [WooCommerce] Customer see another persons order on order historyHave you done order importing/exporting in the past? Any database migrations?
This usually happens when data was imported incorrectly, connecting orders to the wrong user IDs.
Forum: Plugins
In reply to: [WooCommerce] How to add a Clear Cart Button on Cart TotalsOtherwise when testing
Would be good to think about this from the customer side of things rather than from your side. Do you want an easy way for customer’s to empty their cart? Could be argued you want them to go through and look at each item before removing it, making them think once more if they want it or not.
Anyways, just something to think about. You should be optimizing your site for customer and conversions. Not for your testings 😉
- This reply was modified 8 years, 1 month ago by Caleb Burks.
Haven’t seen this error before. Looks related to the web server configuration: https://stackoverflow.com/questions/22183859/javascript-err-content-length-mismatch
Also good to rule out plugins and the theme has potential conflicts: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Cant send any emailsAre your order statuses going to the “processing” status, or are they stuck at Pending Payment?
If stuck at pending, that means the payment gateway can’t reach your site to confirm the payment. Emails are not send until the processing or completed status.
In PayPal for example, this is known as an IPN problem: https://docs.woocommerce.com/document/paypal-standard/#section-21
Forum: Plugins
In reply to: [WooCommerce] Orders PageDeactivate all plugins but WooCommerce core and switch to twenty seventeen at the same time. Then perform a new test order using a default gateway like “Check Payments”.
Forum: Plugins
In reply to: [WooCommerce] Some products not showing under their categoriesCheck the catalog visibility for the products, are they set to “hidden” or search-only maybe? This setting will be shown on the right side under the publish button when editing a product.
If it’s not that, there is likely a theme or plugin conflicts. So follow this guide to find the culprit: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4