Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Internal Error 500It looks like a serialized array/object got saved to the database instead of the transaction ID.
I’ve not heard of this happening before, so my guess is that something else got involved and caused a conflict (like another plugin).
It is pretty straightforward how the transaction ID is added to the DB: https://github.com/woocommerce/woocommerce/blob/8b06e0e43259ff918af0db86d02c8d3216255fe9/includes/gateways/paypal/class-wc-gateway-paypal.php#L380. PayPal first sends the Completed payment status, then we set the TRANSACTIONID from that response.
Forum: Plugins
In reply to: [WooCommerce] Images saved without url prefixLooks like this filter is what you need to hook into the right place to prevent relative urls: https://github.com/woocommerce/woocommerce/blob/28a4e88811abd53280cc05f20067ce26e54826e4/includes/abstracts/abstract-wc-product.php#L1812
Prevent the call to
wc_get_relative_url.Forum: Plugins
In reply to: [WooCommerce] Orders PageThere is something hijacking the orders area. The whole “reminders” language is coming from something else.
Please double check that you test this while deactivating all plugins except for WooCommerce the main plugin. And temporarily switch to a default WP theme at the same time. If the issue still happens at that point, take another screenshot.
- This reply was modified 8 years, 1 month ago by Caleb Burks.
Ah true, the system status report only shows active plugins. But again back to an earlier point where it shouldn’t really be common to have deactivated plugins on a live site. I do get what you are saying, but a deactivated plugin isn’t really high priority.
If the plugin has provided a contact link, then there should be a “Visit plugin site” or similar link under the plugin on the plugin’s listing page. It isn’t good to duplicate such behaviors, so best to just utilize that location if a link is needed.
Forum: Plugins
In reply to: [WooCommerce] Tax Rounding IssueAh, thanks. So I can replicate this then.
Added to order: http://cld.wthms.co/keiadY
After recalculate: http://cld.wthms.co/ZXbVNRI opened up an issue here and we can continue there: https://github.com/woocommerce/woocommerce/issues/19511
Thanks for being patient while we got to the reproducible part of this 🙂
Forum: Plugins
In reply to: [WooCommerce] Promotional ProductsFor that quantity pricing, does it happen only at the product level? So 100-150 units of only a specific product, or 100-150 units of anything in the cart?
And secondly, are you going to need to keep track of inventory as well?
Forum: Plugins
In reply to: [WooCommerce] Crear cuentaLooking at the my account lost password page, it looks like there is a varnish cache. So maybe contact the web hosts and send them the above link to ensure they disable all caching on this page.
If that doesn’t help, then the next step is to rule out plugin / theme conflicts: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Global Attributes ImportationIf I’m understanding correctly, you need the
Attribute 1 Globalcolumn as well to signal the attribute is meant to be global: https://github.com/woocommerce/woocommerce/wiki/Product-CSV-Import-SchemaForum: Plugins
In reply to: [WooCommerce] Custom Post “Add to cart” Buttons editingI meant just place the whole product page area inside of your custom page using the [product_page] shortcodeL https://docs.woocommerce.com/document/woocommerce-shortcodes/#section-10
Maybe best to find a theme that looks good though.
Forum: Plugins
In reply to: [WooCommerce] Pagination In Products ShortcodeProbably because they all fit on one page ;). Also check your quotes.
[products ids='4075,4077,4079,4084,4052,4096,4057,4064' columns='2' order='ASC' paginate=true per_page=2]Forum: Plugins
In reply to: [WooCommerce] Cart in woocommerceNot sure I fully understand what you mean. This is what I see: http://cld.wthms.co/B3lEHe
Forum: Plugins
In reply to: [WooCommerce] Disable Attribute Archives permanently, forever, and completelyThe setting should be all that is needed. The problem is whatever is causing it to change, likely a faulty import.
Can override this template I suppose and alter the conditional: https://github.com/woocommerce/woocommerce/blob/569642661ce04d8cf2fab4cee519e51892257686/templates/single-product/product-attributes.php#L53
Not really ideal though.
These filters should also give you access to always set public to false: https://github.com/woocommerce/woocommerce/blob/66a5895645032cc333a1b261c772ab877d87646d/includes/class-wc-post-types.php#L257
Forum: Plugins
In reply to: [WooCommerce] Pagination In Products ShortcodeThat doc does need some updates.
For pagination, simply use this shortcode attribute:
[products paginate=true]The code never lies: https://github.com/woocommerce/woocommerce/blob/e6a266e30f5fe343d2998c5d848357a7eb3598df/includes/shortcodes/class-wc-shortcode-products.php#L131 🙂
- This reply was modified 8 years, 1 month ago by Caleb Burks.
Sorry, but this is a bit outside the realm of support we can provide here.
If you make a new order directly via the REST API I’m assuming it works, seeing that it does on Android?
Try to add some logging on the WC site in question, and find out why the auth is failing maybe.
Forum: Plugins
In reply to: [WooCommerce] Crear cuentaWhat happens when trying to login / create an account exactly? Any errors?
Make sure caching is disable on the account pages: https://docs.woocommerce.com/document/configuring-caching-plugins/