superkot
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Add to Cart Buttons on WoocommerceThe one where you can add to cart is simple product, the one where you cant – variable. Woocommerce is unable to know which variation you want to add to your cart so you have to select it first.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce shortcodes not working as expectedThat code is supposed to hide products of mentioned categories from query results, so no surprise hund-fertiggerichte is not showing.
What is surprising is that some products in rind do show. Maybe there is no checkbox on parent category for rind products?
Anyway
The goal is to list all the products on the category and cluster them in the given sub-categories.
That can be done just by adding links to parent category and subcategories, and they will work like that. No need for shortcodes etc.
Forum: Plugins
In reply to: [WooCommerce] Adding to cart/removing from cart problemMedia Center seems to be a paid theme, you should contact its developer.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce shortcodes not working as expectedYou probably need to show your “custom php function”.
Forum: Plugins
In reply to: [WooCommerce] Internal server Error when place orderLooks like your theme’s email template has something wrong. Post the content of that file here.
Forum: Plugins
In reply to: [WooCommerce] How To Display Currency Symbol on Cart and CheckoutI have visited your site to see dollar sign everywhere. Although the cart widget is buggy, it shows no products after first product having been added.
Forum: Plugins
In reply to: [WooCommerce] Import from PHP codeOk, thats new and I’ve missed it.
Forum: Plugins
In reply to: [WooCommerce] Import from PHP codeWoocommerce does not have its own import, as far as I know. You need to process your CSV file line by line, creating a “product” WordPress post type per each line and populate it with data.
This link might help:
https://lukasznowicki.info/insert-new-woocommerce-product-programmatically/Forum: Plugins
In reply to: [WooCommerce] The product images don’t switch in the variable productsEdit your product, open Variations tab and fill “Default form values”. You can select only that attribute which need to be pre-selected. That would be size in your case.
No, visitors have not made any selection if all attributes are not selected. Imagine global international business. You receive contact form with phone number, but no country code. You wouldnt be able to call back. Until everything is specified, no selection is made.
Forum: Plugins
In reply to: [WooCommerce] Error 404 after payment with credit cardThe pluggin seems to work OK
You have written this whole post exactly because the plugin seems NOT to work OK.
It obviously fails to do the final part of its work properly.Normally there is no email for “waiting payment” status unless you’ve specified otherwise. Email is send when payment is confirmed and order status changes to processing, and that is what fails to happen on your site.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce start pageThe shortcode that ‘worked’ is the one that does not allow sorting. Sorting is available on the shop archive page. You need to specify the required page as shop page in Woocommerce settings, that is what decides the proper display of products (the one allowing sorting). Although it wont show just “recent”, but all of your products. Display order can be changed in Woocommerce options (Products > Display).
Forum: Plugins
In reply to: [WooCommerce] Store with lots of additional contentI dont think such plugin exists. If you need to “utilize” registered users from the regular site, then having one united site seems to be the better option after all.
If you dont need registered users, just cart content on other ‘non-shop-site’ pages, you may simply create code that generates a simple file at certain url, that you can include from there and display in the required way.
Forum: Plugins
In reply to: [WooCommerce] Import from PHP codeI dont think I understand the question. You want to import CSV file, there are plugins that can do it. You need not to care of their code (although it is of course php).
Forum: Plugins
In reply to: [WooCommerce] Remove Shop trail from WooCommerce breadcrumbAdd this line to your custom CSS
ul.breadcrumbs li:nth-of-type(2) {display:none}
If it does not work, might also need !important
ul.breadcrumbs li:nth-of-type(2) {display:none!important}
Forum: Plugins
In reply to: [WooCommerce] connect user to previous ordersYou need to find _customer_user meta key in wp_postmeta, and its meta value is the user’s ID number.