Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Product atributes in title of order (not in description)Quick google searches or forum searches can often help give an immediate answer 🙂
– https://wordpress.org/support/topic/problem-need-help-variationattributes-display-re-arrange-on-woocommerce-3-xx/
– https://stackoverflow.com/questions/44839975/woocommerce-3-0-hide-variation-info-in-product-titleTL;DR – Set this filter to return false: https://github.com/woocommerce/woocommerce/blob/00b4e1ed447003bef52ba27064ec17784ec9df2e/includes/data-stores/class-wc-product-variation-data-store-cpt.php#L258
The ordering of products depends on this field: http://cld.wthms.co/mYyLsu
It is set up and the default is configured at Appearance > Customize > WooCommerce > Product Catalog in WC 3.3+
Forum: Plugins
In reply to: [WooCommerce] Remove Product ID WoocommerceProduct IDs will always be available from the admin / management side of things. It is a must-have.
However, they definitely shouldn’t show up on the frontend product page, as least they don’t by default. So yea, this is something to ask the theme authors about.
Forum: Plugins
In reply to: [WooCommerce] custom header on single product pageis_pagechecks for a specific page, products aren’t a WordPress page: https://developer.wordpress.org/reference/functions/is_page/Products are a custom post type, so is_singular will return true on those for the products post type: https://developer.wordpress.org/reference/functions/is_singular/. Could also use
is_product()WooCommerce conditional.Use
is_single($ID)for a specific post/product ID: https://developer.wordpress.org/reference/functions/is_single/Forum: Plugins
In reply to: [WooCommerce] Woocommerce 3.3.3 product miniaturesImage width and cropping settings should be all that you need, don’t need to alter height.
Set the width to 200px for example. 1:1 ratio will be 200px height, 1:2 ratio will be 400px height, uncropped will let the image be as tall as it needs to be with the set width.
More info: https://docs.woocommerce.com/document/image-sizes-theme-developers/
If those do not work out for what you need, this will require custom code.
- This reply was modified 8 years, 2 months ago by Caleb Burks.
Forum: Plugins
In reply to: [WooCommerce] Shop page content disappears unless…We’ve talked with Elegant Themes about this issue when 3.3 was released. I do not know if they have patched the problem yet, but it is definitely something that has to be done on the theme side.
So contact Divi support if you need this. I found a temporary workaround to be disabling the page builder on the shop page I believe.
Forum: Plugins
In reply to: [WooCommerce] How can I access product tabs (reviews) directly via URL?I didn’t need any custom code for this to work on my test site, using the latest version of WooCommerce and the Storefront theme. Just this URL does the trick: https://example.com/shop/accessories/sunglasses/#tab-reviews
Forum: Plugins
In reply to: [WooCommerce] Automatic product VariationsThis all depends on stock control needs though. If you need to control stock at a variation level (mixtures of attributes), then there is no other way than to create variations and use the inventory fields.
Forum: Plugins
In reply to: [WooCommerce] Admin search problem after 3.x updateWooCommerce 3.3 started using it’s own products search functionality rather than relying on WordPress. As a result, a few unforeseen “features” were missed. Some info on this here:
– https://github.com/woocommerce/woocommerce/issues/19061
– https://github.com/woocommerce/woocommerce/issues/18856
– https://github.com/woocommerce/woocommerce/issues/18757The latest work on this can be seen here if you want to follow along: https://github.com/woocommerce/woocommerce/pull/19096. TL;DR is that it’s adding support to skip stop words.
That said, if you skip more “important” words in the search like you described it might not have an effect.
Forum: Plugins
In reply to: [WooCommerce] Why isnt WooCommerce importing my .csv?See https://docs.woocommerce.com/document/product-csv-importer-exporter/ and https://github.com/woocommerce/woocommerce/wiki/Product-CSV-Import-Schema
Why do you have ID = 0 in your CSV? If the product doesn’t exist in WooCommerce yet, don’t set an ID. Also be aware of what selecting “merge existing products” does when checked/unchecked.
Forum: Plugins
In reply to: [WooCommerce] how get variable and sned it with email of “new order”What are the date and time for? When the order was created?
$order->get_date_paid()and$order->get_date_completedwill get you some dates. The second will only get you the completed date if the order status has been completed though I believe.Forum: Plugins
In reply to: [WooCommerce] How do you make 2 dropdown menus?You can do two attributes. The first called “car maker” and the second “car model”. Then give the appropriate terms. More information here: https://docs.woocommerce.com/document/variable-product/
Worth noting though that this will result in hundreds of variations which isn’t great and would be good to avoid if possible. So unless you need a specific image for each combination and inventory tracked for each combination, then I would recommend doing something else like Product Add-Ons instead: https://www.woocommerce.com/products/product-add-ons/
Forum: Plugins
In reply to: [WooCommerce] Shop permalinks won’t changeWhat you want will look like this: http://cld.wthms.co/tJRR04. After setting that up, it seems to be working correctly for me: http://cld.wthms.co/II6v7K
So perhaps your theme or another plugin is causing a conflict? https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Square E-Gift CardSquare gift cards are not yet accepted by our Square extension: https://wordpress.org/plugins/woocommerce-square/. Is has been added to our feature requests list though for possible inclusion in the future
So unless you find another plugin that offers this, I’m afraid you will need to hire a developer to have this built out for you if this is a must-have.
Forum: Plugins
In reply to: [WooCommerce] Cant Integrate paypal to my woocommerce@islandbrazil I would not recommend posting API key information like that. Might want to delete the image.
It is hard to know what is going wrong just based off of that though. My recommendation would be to go through this guide: https://docs.woocommerce.com/document/paypal-standard/