D Smith a11n
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Product import speedHi Kelvin!
I would look at the server you’re uploading it to– the delay may be on that end.
That said, 3000 records with ten columns is quite a lot. Would it be possible to upload a shorter CSV containing only those records with changed information, or are you routinely updating every field?
Forum: Plugins
In reply to: [WooCommerce] eWay API in woocommerceHi there!
If you’ve purchased the eWAY extension ( https://woocommerce.com/products/eway/ ), you can get premium support at https://woocommerce.com/my-account/create-a-ticket/
That said, for security reasons saved cards are tokenized, which means the info won’t be useful (or valid) outside of direct, validated secure communication with eWAY.
Forum: Plugins
In reply to: [WooCommerce] Get product categoriesHi there! Our REST API docs are here: http://woocommerce.github.io/woocommerce-rest-api-docs/
I don’t know about Ionic 3, but here’s the category retrieval call: http://woocommerce.github.io/woocommerce-rest-api-docs/#list-all-product-categories
The right sidebar of that shows the structure of the resultant array.
Hope that’s helpful!
Forum: Plugins
In reply to: [WooCommerce] Woocommerce products per rawHi Martina!
We can’t really provide support for a third-party theme, even one as popular as Avada… but if you try updating Avada to the current version, does that fix it?
Forum: Plugins
In reply to: [WooCommerce] No Subcategories Displaying after 3.3.3 updateHi there! Did you set this via the Customizer? That setting’s now at Customizer
> WooCommerce > Product CatalogFor rolling back versions of plugins (or themes!) I recommend https://ww.wp.xz.cn/plugins/wp-rollback/
Forum: Plugins
In reply to: [WooCommerce] woocommerce with usps print label problemHi there! In general I would recommend talking to XAdapter, the developers of the plugin about this error…
…but it may also be worth checking with the credit card issuer to see if they have any insight into this situation.
We do have a comparable product, https://woocommerce.com/products/shipping/ , which we provide support for.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce 3.3.3 product miniaturesHi there!
You can do this via a snippet here that will set them automatically upon theme activation:
https://docs.woocommerce.com/document/set-woocommerce-image-dimensions-upon-theme-activation/
Please let us know if we can be of further assistance!
Forum: Plugins
In reply to: [WooCommerce] Products Duplicated on products category display pageHi there!
I was unable to view this page, but that URL looks like a category page. This could be a template issue– if you temporarily switch to a default theme like Twenty Seventeen, do you still see the products duplicating? If you don’t, then I’d take a closer look at your theme templates. Is it possible your template’s calling content-product_cat.php more than once?
Forum: Plugins
In reply to: [WooCommerce] How can I access product tabs (reviews) directly via URL?Hi there!
Did you try this update to my colleague Remi’s solution?
http://www.remicorson.com/access-woocommerce-product-tabs-directly-via-url/#comment-15517Forum: Plugins
In reply to: [WooCommerce] Proceed to checkout – not translatedHi there!
It’s possible this is an issue with your third-party theme. If you temporarily switch themes to Twenty Seventeen and disable all plugins except WooCommerce core and Loco Translate, does this string translate as it should?
If you don’t want to do this test on your live site, you can use https://ww.wp.xz.cn/plugins/wp-staging/ to clone your site onto a “stage” for testing purposes where you can experiment without affecting the live site.
Forum: Plugins
In reply to: [WooCommerce] {} removed on affiliate linksHi there!
Please try using
%7Band%7Din that link URL, instead of { and } respectively.Forum: Plugins
In reply to: [WooCommerce] Customizing Woocommerce Template filesHi @fastfingaz!
Unfortunately, that’s something the developers or users of that (third-party) plugin will have to help with. We have our own Brands product, https://woocommerce.com/products/brands/
…which comes with a money-back guarantee, a year of support and updates, and is 30% off (as are all of our products) during Cyber Monday! Just sayin’.
Forum: Plugins
In reply to: [WooCommerce] Customizing Woocommerce Template filesWonderful!
So glad to hear it. I’m going to mark this thread “resolved,” but please feel free to get back in touch any time.
Thanks for using WooCommerce!
Forum: Plugins
In reply to: [WooCommerce] Webhooks don’t fireHi there!
Sorry to hear of this problem. Because Active Campaign is third-party software we’re not familiar with, I’m afraid there’s not a ton we can do regarding troubleshooting it.
Can you test with another webhook? Something simple, like the example at https://growdevelopment.com/woocommerce-webhooks/ …and see if that works correctly?
Forum: Plugins
In reply to: [WooCommerce] Customizing Woocommerce Template filesHi @fastfingaz!
As a starting point, I would recommend this guide to reorganizing/restructuring the single product page: http://ohsoren.github.io/reorder-single-product-template/
… in terms of editing the HTML output, the relevant templates you’d want to override would be
https://github.com/woocommerce/woocommerce/blob/master/templates/single-product/price.php
https://github.com/woocommerce/woocommerce/blob/master/templates/single-product/title.phpAnother option would be using aggressive CSS to handle the layout.
Hope that’s helpful!