Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] WP Woocom shop page not showing all productsHmm, that is odd. Need to rule out plugin/theme conflicts. So follow this guide to do that: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Extra text on cod payment optionThere is likely a plugin or theme conflict causing this. Temporarily disable all other plugins except for WooCommerce, and switch to a default theme and test to see if this still happens. If it is solved at this point, start to enable features until you see it happening again. More info: https://docs.woocommerce.com/document/woocommerce-self-service-guide/#section-4
Forum: Plugins
In reply to: [WooCommerce] Woocommerce to WP Document RevisionsThis plugin: https://wordpress.org/plugins/wp-document-revisions/ ?
I’m not familiar with that. But if it doesn’t support WC orders by default, this will require some customization. You will likely need to hire a developer.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Checkout Shourtcode not workingYour payment gateway likely requires some of these fields in order to process the payment. Billing info is often used to validate the credit card and prevent fraud – you can’t just remove every field.
Forum: Plugins
In reply to: [WooCommerce] Cannot declare class WC_Settings_Products ?You will need to contact the plugin authors about this. If this is the plugin you are using: https://woocommerce.com/products/measurement-price-calculator/, and you have a valid license, you can contact WooCommerce.com premium support here: http://woocommerce.com/my-account
Forum: Plugins
In reply to: [WooCommerce] Main Product image not showing upI see you did some conflict testing, but just want to make sure it’s not a combination of things. So could you test once more by disabling every plugin but WooCommerce core (so only one plugin active), and at the same time switch to a default WordPress theme. Then, clear out your browser cache and web server cache if the web host has an option for that.
If the problem still happens at this point, open up the console (here is a guide for Chrome: https://developers.google.com/web/tools/chrome-devtools/console/), and take a screenshot of any errors happening there after you try to add an image when it won’t let you.
I recommend https://snag.gy for easily sharing screenshots – just follow the instructions on the page, then paste the URL in this chat. It works with Chrome, Firefox and IE.
Forum: Plugins
In reply to: [WooCommerce] Access cart item data in woocommerce_new_order_item?How is the data be saved to the cart item temporarily? This guide looks promising: https://iconicwp.com/blog/add-custom-cart-item-data-woocommerce/
Forum: Plugins
In reply to: [WooCommerce] Email notifications missing template: “Processing order”You are missing multiple emails. Could you disable all plugins except for the core WooCommerce plugin and temporarily switch to a default WordPress theme? Something is removing the emails, perhaps “Conversio”.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce product attributesget_post_meta( $product_id, ‘_product_attributes’, true );is likely the incorrect part.Try getting the product object and then attributes from that. So:
$product = wc_get_product( $product_id ); $atributai = $product->get_attributes();This isn’t something we can support though, as it’s not a core feature of the plugin. If you can’t figure out the code you need and this is something you must have, I recommend hiring a developer:
– http://jobs.wordpress.net/
– https://codeable.io/
– https://woocommerce.com/experts/Forum: Plugins
In reply to: [WooCommerce] Shipping Zones – Import/ExportLooks like there are a few plugins and tools for that. Here is one that looks promising: https://wordpress.org/plugins/ns-cloner-site-copier/
Forum: Plugins
In reply to: [WooCommerce] Woocommerce adds a symbol where there should be a spaceWhich template file is this in? Can look at what WooCommerce core does in the default template file and copy that: https://github.com/woocommerce/woocommerce/tree/master/templates
Forum: Plugins
In reply to: [WooCommerce] Plugin to show prank pricesThis sounds like what you are looking for: https://docs.woocommerce.com/document/msrp-pricing/
Forum: Plugins
In reply to: [WooCommerce] Página carrinho demora carregarDeleting the page won’t have an affect here really, as their are performance troubles going on. First, you should rule out plugin/theme problems following this guide: http://docs.woothemes.com/document/template-structure/. So test to see if it is still slow when only the main WooCommerce plugin is active along with a default WordPress theme.
If it is slow when only WooCommerce is being used, then your web hosting plan might be problematic and should maybe look for a new web host better suited for eCommerce.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce adds a symbol where there should be a spaceYea, that won’t be the same process for fixing this.
You could try temporarily removing template overrides from the theme until you find the template override causing this problem (assuming it is coming from a template override).
Forum: Plugins
In reply to: [WooCommerce] Variable product price free or without priceThis is intended, variations with a price are not able to be purchased.
free variable products are no longer available.
They never would have been available for purchase, as no add to cart button would appear. If it’s free, set the price to $0.