Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] PyaPal Standard problem after WooCommerce 3.3.3 updateHmm, good question. I’m not quite sure where that requirement came from.
For the other one, do you have prices set up to included taxes? This one is enforced here: https://github.com/woocommerce/woocommerce/blob/8b06e0e43259ff918af0db86d02c8d3216255fe9/includes/gateways/paypal/includes/class-wc-gateway-paypal-request.php#L194
Could be that this is happening as well: https://github.com/woocommerce/woocommerce/blob/8b06e0e43259ff918af0db86d02c8d3216255fe9/includes/gateways/paypal/includes/class-wc-gateway-paypal-request.php#L347-L350
Forum: Plugins
In reply to: [WooCommerce] WooCommerce products have Blank Thumbnails in WP Media LibraryI’m actually able to replicate this on my test site(s) as well. Upload an image for a downloadable product file, then view it in the media gallery.
Can’t say for sure though if this is a bug or not, as it may be an expected / necessary result of protected permissions that is needed for downloadable files.
If the image needs to be used elsewhere on the site and doesn’t require strict protections (like it is just apart of the a bigger download for example), then you could upload first in the media gallery, then link to it in the downloadable area.
Forum: Plugins
In reply to: [WooCommerce] how get variable and sned it with email of “new order”Ah, so you are saving as user meta rather than post meta. One is stored on the user object, the other on the order/post object. https://codex.wordpress.org/Function_Reference/get_user_meta
The
woocommerce_email_before_order_tablehook is not passing through the $user object, so you will need to find which user is attached to the order before retrieving user meta (get the user id).Your code could have some security vulnerabilities still though with a quick look. I would recommend looking for plugins that do this for you: https://woocommerce.com/products/woocommerce-checkout-field-editor/
- This reply was modified 8 years, 1 month ago by Caleb Burks.
woocommerce_get_catalog_ordering_argsis the hook you can use to change this. It passed in args, and you will want to change these two if in a search query:$args['orderby'] = 'relevance'; $args['order'] = 'DESC';Forum: Plugins
In reply to: [WooCommerce] Adding classes to WooCommerce widgetsCould I ask why you need to add classes? Each widget in WordPress already get’s a unique ID / class if you take a look at the markup.
Best to send pre-sales questions to WooCommerce.com support: https://woocommerce.com/my-account/tickets/
We can only support the core WooCommerce plugin in the forums here per forum rules.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce products have Blank Thumbnails in WP Media LibraryThis has to do with security around the WC downloads folder, and maybe some server config.
I’d just test to see if the items can still be downloaded.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce problem help easy quick resolve?I don’t think you want PayPal Express then. Just use PayPal standard that comes with WooCommerce 🙂
Or https://wordpress.org/plugins/woocommerce-gateway-paypal-powered-by-braintree/
Forum: Plugins
In reply to: [WooCommerce] Tax Rounding IssueFwiw, I believe that setting affects both frontend and backend, rounding precision all around when calculations are made.
Only certain gateways support subscriptions: https://docs.woocommerce.com/document/subscriptions/payment-gateways/
PayPal Pro is not one of these: https://docs.woocommerce.com/document/paypal-pro-2/#section-12
Forum: Plugins
In reply to: [WooCommerce] REST API – Post Update CheckThere is a
date_modifiedanddate_modified_gmtrest api field for orders. So could pull that first, do a quick check, then proceed?Forum: Plugins
In reply to: [WooCommerce] Point-of-Sale Integration for Call CenterEntering orders via the frontend might be the best course of action.
So:
1) Create an order manually in the backend or by shopping in the frontend.
2) If created in the backend, leave at “pending payment” status. Then save the order, and click the “customer payment page link. You will have access if the order was attributes to the salesman’s account.
3) Now you will be on the frontend of the site with just a page to pay. You can send this to the customer via email, or you can pay on this page using the same securities your site already has (ideally paying through an iframe).
Forum: Plugins
In reply to: [WooCommerce] product search widget giving blank search pageDivi should have this issue resolved in their latest update.
A better solution than unsetting the shop page is to disable the Divi page builder on the shop page though.
Forum: Plugins
In reply to: [WooCommerce] storefront_popular_products doesn’t show productsYou can create orders manually in WooCommerce: https://docs.woocommerce.com/document/managing-orders/#section-6
Or you could hide the popular section for now using https://wordpress.org/plugins/homepage-control/
Forum: Plugins
In reply to: [WooCommerce] categories not showing after upgrading to 3.3.3Appearance > Customize > WooCommerce > Products Catalog has some settings that you should check.
If those settings don’t do what they should, then your theme or another plugin is causing a conflict. Directly editing the code in WooCommerce core isn’t a good long term solution.