Daniel Espinoza
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Problem with adding and removing items to/from CartHi rrvoigt, If you post the site URL I can take a look. I’d suggest also to switch to the TwentyTwelve theme to see if the issue still happens. If so, then we can rule out an issue with the theme.
Hi phildom, please post your ticket number and I’ll take a look at it.
Forum: Plugins
In reply to: [WooCommerce] No available shipping methodsI’ve responded on the ticket.
Forum: Plugins
In reply to: [WooCommerce] No available shipping methodsI’ve grabbed those tickets and responded.
Forum: Plugins
In reply to: [WooCommerce] No available shipping methodsfloydrose5150, I’ve asked the extension developer.
What’s your ticket # on woo.com?
Forum: Plugins
In reply to: [WooCommerce] Product shortcodes don't workI just saw that I’m helping you with this ticket on WooThemes support 🙂
Forum: Plugins
In reply to: [WooCommerce] Product shortcodes don't workWell, the WooCommerce settings are kicking in. They are 300×300: http://cld.wthms.co/ECWn
But, the width of the image is determined by its container – and you’ve set that to be 20% of its parent. So the browser is displaying it at 143px x 143px.
You can either 1) reduce the number of images per row or 2) reduce the size of the catalog thumbnails in WC settings.
Forum: Plugins
In reply to: [WooCommerce] Search options on Woo Ecommerce ThemesHi aliyahgator,
I’d suggest using a plugin like
http://ww.wp.xz.cn/extend/plugins/relevanssi/
or
http://ww.wp.xz.cn/extend/plugins/search-everything/
for the site search box.I’d suggest this for filtering products on the site (paid extension):
http://www.woothemes.com/products/ajax-layered-navigation/Forum: Plugins
In reply to: [WooCommerce] Product shortcodes don't workHi Kayle,
There’s some CSS on your site that is setting the width of the ul.products li.product elements to width: 55%.
http://cld.wthms.co/ITc2If you change this to 20% they look better.
You could add this CSS to your Function custom css area to adjust this page:
.postid-2835 ul.products li.product {
width: 20%;
}Forum: Plugins
In reply to: [WooCommerce] No available shipping methodsWas there any output in the debug options?
The 2nd most prevalent issue is wrong credentials. Verify the API credentials are correct.
And I work for Woo, so will try not to take that personally 🙂
Open a ticket on the support desk and we can take a look.Forum: Plugins
In reply to: [WooCommerce] No available shipping methodsHi floydrose5150,
You’ll want to enable debug in Purolator’s setup and see if any errors are output: http://cld.wthms.co/PorV
Purolator is a calculator, and normally this message is due to the plugin not being able to calculate because the product does not have weight and dimensions defined for it. Make sure you’ve got weight and dimensions set on all products.
Since you have purchased an extension you can go here to open a support ticket:
http://www.woothemes.com/supportYou will need to login with the account that your client purchased the extension under.
Forum: Plugins
In reply to: [WooCommerce] woocommerce don't need payment method, just need sent emailYou can activate the “Cheque” payment method and rename it to whatever you want. It won’t collect any sort of payment, but will create an order and email invoice.
Forum: Plugins
In reply to: [WooCommerce] woo-commerce excellingI’d suggest deleting the woocommerce directory and trying the WP installer.
You can go to Plugins, press Add New, then enter “woocommerce” in the search field.
WooCommerce will be the first one found. Press “Install Now” and it should fly.
Example: http://cld.wthms.co/etC (it’s already installed on my test site).Forum: Plugins
In reply to: [WooCommerce] Problem with adding and removing items to/from CartOk gotcha. Best of luck!
Forum: Plugins
In reply to: [WooCommerce] problem with priceHi mantaalex,
Go to WooCommerce > Settings, click on the Catalog tab, and check the Pricing Options: http://cld.wthms.co/43BX
Specifically make sure the Number of Decimals is set to 2.
Forum: Plugins
In reply to: [WooCommerce] Add product category to order email?Hi apreston48,
There is an email template called “email-order-items.php” located at
woocommerce/templates/emails/email-order-items.phpIt’s used with the WC_Order:email_order_items_table() method called from this file: customer-completed-order.php
here:
https://github.com/woothemes/woocommerce/blob/master/templates/emails/customer-completed-order.php#L29If you override that template by copying it from
/wp-content/plugins/woocommerce/templates/emails/email-order-items.php
to
/wp-content/themes/[YOUR THEME]/woocommerce/emails/email-order-items.phpin your copy, you can add some code right about here:
https://github.com/woothemes/woocommerce/blob/master/templates/emails/email-order-items.php#L29that would pull the terms (categories) for the product similar to what is happening here:
https://github.com/woothemes/woocommerce/blob/master/classes/abstracts/abstract-wc-product.php#L1077Then you can display the categories.