Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Error NOTICE post was uncorrectly called on the checkout pageYour theme or another plugin is calling properties incorrectly. Your theme or the Redsys plugin by the looks of it.
Forum: Plugins
In reply to: [WooCommerce] This product is currently out of stock and unavailable.Check the inventory of each variation, and make sure each variation has a price.
Forum: Plugins
In reply to: [WooCommerce] Simple Product AttributeOnly variable products use attributes in the way you want. See https://docs.woocommerce.com/document/variable-product/
Forum: Plugins
In reply to: [WooCommerce] Customize breadcrumb linkDidn’t look too closely, but I think all you need to do is exchange this line:
$shop_page_id = wc_get_page_id('shop');to be equal to the ID of your custom page:
$shop_page_id = '99Forum: Plugins
In reply to: [WooCommerce] Send just some of the order-items.How you process an order is up to you 🙂
Ship them one item, but leave the order status in “processing”. You can use the order notes feature to send them an email letting them know what is going on if you want.
Forum: Plugins
In reply to: [WooCommerce] Showing percentage discounted under priceThat code is actually pretty solid, and works for me: http://cld.wthms.co/BFYGuV
Either
( $regular_price - $sale_price )is returning 0, or$regular_price * 100is returning 0.Either way, check the outputs of the $regular_price and $sale_price in that filter, as something is going wrong.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce uses page.php instead of child theme filesMake sure the theme properly declares WooCommerce support if you plan on overriding templates: https://github.com/woocommerce/woocommerce/wiki/Declaring-WooCommerce-support-in-themes
Forum: Plugins
In reply to: [WooCommerce] Cart page X button not showingIt is definitely plugin or theme related. Something on your site other than WooCommerce is causing this. https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] SUBMIT button positioningHere are the hooks on the single product content area: https://github.com/woocommerce/woocommerce/blob/master/templates/content-single-product.php
Add you custom button to one of them and use the priority level to choose where it’s output on the page in that hook.
Forum: Plugins
In reply to: [WooCommerce] Size of Single product image in woocommerceIt has to do with the actual image sizes.
Before: http://cld.wthms.co/7rONEF
After: http://cld.wthms.co/2fAGT4You can change the single product image width in the customizer settings. Else can also be declared by the theme: https://github.com/woocommerce/woocommerce/wiki/Customizing-image-sizes-in-3.3
Can regenerate with this after a change for faster regenerations: https://wordpress.org/plugins/regenerate-thumbnails/
Every time you switch themes that use a different image size, thumbnails are going to regenerate in the background with WC 3.3+. This process can be long as it tries to not put strain on the server while still making thumbnails for all images.
Switching themes back and forth just restarts the process 🙂
You can cancel the regeneration job and do it all at once with https://wordpress.org/plugins/regenerate-thumbnails/
Forum: Plugins
In reply to: [WooCommerce] Thumbnails for Product items in shop displayBest I can tell, all the products on the shop archives are the same size.
That said, if you are experiencing something different, be sure to rule out theme / plugin conflicts: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] How to authorize REST API to server with passwordIf the site isn’t publicly accessible, then you probably can’t serve data form it via the REST API.
Set up the htaccess file to allow for the rest api endpoints to go through with the password.
Can then restrict rest api results to a specific IP or domain if you want: https://wordpress.stackexchange.com/questions/150207/wordpress-json-api-restrict-to-specific-domain
Forum: Plugins
In reply to: [WooCommerce] Conditional tags not working on staging, but work on local dev.If your theme doesn’t declare WooCommerce support, other templates may be used to better fit into your theme.
Declare WC support if you are making WC enhancements to the theme: https://github.com/woocommerce/woocommerce/wiki/Declaring-WooCommerce-support-in-themes
Forum: Plugins
In reply to: [WooCommerce] Sale products page category filterBest way I can think of to implement this will be to add a sorting option to sort by on-sale.
Here’s a code snippet: https://metorik.com/blog/order-products-by-on-sale-in-woocommerce
Could also try this plugin: https://wordpress.org/plugins/woocommerce-extra-product-sorting-options/