Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Discount not show in customer email invoiceProcessing customer email: http://cld.wthms.co/j0xOQx
Completed customer email: http://cld.wthms.co/IAzmR5
Manually sent invoice: http://cld.wthms.co/zCBySG
Your theme must be overriding the email templates and not showing discount amount, else another plugin is doing something to prevent it from showing.
Forum: Plugins
In reply to: [WooCommerce] .woocommerce-pagination class goneThe class is definitely still used: https://github.com/woocommerce/woocommerce/blob/f0942a9b44a729bb724b16e0100de2a4346d9d47/templates/loop/pagination.php#L31
So your theme or another plugin must be removing it.
Forum: Plugins
In reply to: [WooCommerce] How to exclude products from code added to functions.phpadd_action( 'woocommerce_single_product_summary', 'custom_return_policy_button', 20 ); function custom_return_policy_button() { global $product; if ( ! in_array( $product->get_id(), array( 29, 35, 73 ) ) ) { echo do_shortcode('[wcm_nonmember][maxbutton id="5"][/wcm_nonmember]'); } }Add your special product IDs to the array list of numbers.
Forum: Plugins
In reply to: [WooCommerce] contacts disappeared from the websiteAll of this goes wrong when
YITH WooCommerce Product Slider Carouselis activated?There’s definitely a conflict with that plugin then, you need to contact YITH plugin authors.
Forum: Plugins
In reply to: [WooCommerce] Custom order/address data on orders-details.php1) Can use the
woocommerce_order_formatted_billing_addressandwoocommerce_order_formatted_shipping_addressfilters to customize the output of the address.2) You’re looking to leftpad. This function will help: http://php.net/manual/en/function.str-pad.php
Forum: Plugins
In reply to: [WooCommerce] Remove-the-shop-page-subheadingI can’t see the facebook article, so not 100% sure what you’re referring to.
It sounds like something specific your theme is doing though, as pages don’t have a “subheading” by default.
Forum: Plugins
In reply to: [WooCommerce] Possible to bypass SHOP base page functionality?Shortcodes do have pagination support now actually 🙂
WooCommerce 3.3+ :
[products limit=10 paginate=true]The attribute filter do just alter the URL. So you could use the filter, then copy/paste the line.
Tags are also a good fit for this. Use a tag, like
architecture-of-cornwall. View the product with this tag, and click on the tag. You’ll be taken to a page of products with this tag.Forum: Plugins
In reply to: [WooCommerce] Payment Status is PendingWhat payment gateway are you using? For an order status to go to pending -> processing, it needs confirmation of received payment. For example, PayPal IPN will communicate back to your site to confirm money was received. Then the order status goes to processing.
If the gateway can’t reach your site (because it’s local only), then the status won’t be updated.
Forum: Plugins
In reply to: [WooCommerce] how remove product reviews in checkout pageHmm, that’s odd. I believe it has to do with the theme you are using, but perhaps disabling comments on the checkout page would help solve this: http://cld.wthms.co/ShmAkn
Forum: Plugins
In reply to: [WooCommerce] Section Woocommerce Products Error FiltersThe filters not working and deformed product area is being caused by another plugin, so try disabling plugins until you find the one causing this.
As for searching by ID and SKU not working, this will be fixed in WooCommerce 3.3.2.
Forum: Plugins
In reply to: [WooCommerce] Setting Shop Base Page adds unwanted sidebar and header^ That would work on Storefront theme, you’re using flatsome.
This is something your theme is doing, so removing sidebar/header will be theme specific.
Forum: Plugins
In reply to: [WooCommerce] woocommerce checkout | billing detailsThis is happening do to a conflict with your theme styles and/or the bookings plugin you are using.
You’ll need to contact your theme authors most likely.
Forum: Plugins
In reply to: [WooCommerce] Product attribute type has changed after WC updateThis is intended. What is the reason you need the “text” option is the better question 🙂
You can add a new term still: http://cld.wthms.co/vEpkzQ
Or a custom attribute: http://cld.wthms.co/juaHl4
Forum: Plugins
In reply to: [WooCommerce] Js Error country-select.min.js?ver=3.3.1:1I’m not getting this error, so there must be someting else going on. Could you disable all plugins except for WooCommerce and test again?
Something must be interferring, as the variable is certainly defined: https://github.com/woocommerce/woocommerce/blob/3b895bd0a98e1c3c6b336ca69c002bc6b67e8524/includes/class-wc-frontend-scripts.php#L546