IgniteWoo Team
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Selling without customer registrationGet a copy of the custom checkout fields plugin for WooCommerce and use that to modify which fields appear on the checkout page.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Mollie Extension errorHave the developer taht built it fix it π
Forum: Plugins
In reply to: [WooCommerce] Missing borders on sub-category thumbnails in WhitelightYou need some help apply CSS styling to your category pages.
Forum: Plugins
In reply to: [WooCommerce] Reporting options?No it cannot. But there are add-ons that let you export customers and orders; and you can have someone build a custom reporting tool for you – it’s not difficult to build custom reporting for WooCommerce.
Forum: Plugins
In reply to: [WooCommerce] Installing in a Sub Folder?If you add WooCommerce to an existing site, then by default the shop page will be domain.com/shop
If you want a totally new WordPress install ( with WooCommerce ) in a subdirectory of “shop” then install WordPress there, add WooCommerce, etc.
Forum: Plugins
In reply to: [WooCommerce] How can I change the values ββin "woocommerce_price"If you want a shopper to be able to change the price on the product page before adding an item to the cart then you need custom code to do that – WooCommerce doesn’t provide that feature by default.
Forum: Plugins
In reply to: [WooCommerce] Update ruined site layout…I think your theme is not injecting body classes properly.
Check your theme header.php and any other templates that write a <body> tag to make sure they look like this:
<body <?php body_class(); ?> >I’m thinking that’ll fix it π
Forum: Plugins
In reply to: [WooCommerce] Where are the woocommerce orders stored in the database?@permarad, ya, in WooCommerce 1.x order items are in postmeta associated with a specific order ID. In 2.x they have their own tables, so code written for 1.x related to order items won’t operate correctly with 2.x
Forum: Plugins
In reply to: [WooCommerce] Update ruined site layout…There’s some sort of problem with the WooCommerce CSS itself on your site. Do you have any caching plugins installed? Are you using a CDN network? Or maybe Cloudflare? If so, disable that stuff or at least flush the cache.
If I open your site HTML in Firebug and change the WooCommerce frontend stylesheet URL to a stylesheet URL of a site on the net with a known working copy of WooCommerce 1.6.x then your shop layout looks as it should. If I change it to a site using WooCommerce 2.x, it looks Ok, but not entirely correct – products on the main shop page look styled Ok, but they don’t line up across the page, they line up one-by-one down the page.
So, this is a problem with the CSS itself. It’s either cached, or very outdated. You might try deleting the WooCommerce plugin entirely and reinstalling it. All your settings should remain in tact.
Forum: Plugins
In reply to: [WooCommerce] how to send to more than 1 email notificationYou can send to more than one person by setting up a mail alias that forwards to numerous people. If you don’t know how to do this ask your hosting company for help.
Forum: Plugins
In reply to: [WooCommerce] Examples of websites with big number of products on WooCommerceI’ve worked on one with nearly 5000 products, and including variations it has over 7400 products total. I’ve also worked on a site that has over 35,000 orders as of today ( selling phone accessories ) and gets at least one new order every minute or two, 24 hours a day. No problems there.
WooCommerce runs within WordPress, so your contraints are the same as WordPress. If you expect high traffic, don’t bother with shared hosting as it is rarely ever geared towards heavy traffic. Get a dedicated server instead, and don’t skimp on the RAM and CPU power, especially if you’re running the Web site and database server on the physical computer. And … when you see dedicated server pricing and it seems high just keep this in mind: You have to spend money to earn money. In nearly every situation, response is usually dictated by database server performance… not Web server ( Apache, Lightty, Nginx, etc ) performance. DB servers need to be tuned, and tuning needs to be done by someone that knows what they’re doing, not by someone fiddling around willy nilly. Make sure you get a hosting company with a proven, knowledgeable support team.
Bottom line: WordPress scales if a person knows what they’re doing. Thus, WooCommerce scales if a person knows what they’re doing.
Forum: Plugins
In reply to: [WooCommerce] How to set up Paypal to work with Woocommerce?Have you set up IPN in your PayPal account?
Forum: Plugins
In reply to: [WooCommerce] UPS Shipping MethodNot sure about the one at WooTheme’s but our Fedex plugin works in the USA and Canada for sure – possibly other countries.
Where are you? I’d be happy to call my tech contact at Fedex and ask if it’ll work in your country.
Forum: Plugins
In reply to: [WooCommerce] cost for additional productsI’m not certain but maybe the Table Rate Shipping add-on might work for this.
Forum: Plugins
In reply to: [WooCommerce] Where are product type forms being loaded from?The product types are loaded in
woocommerce/admin/post-types/writepanel/writepanel-product_data.phpIn there you will find this:
$product_type_selector = apply_filters( 'product_type_selector', array( 'simple' => __( 'Simple product', 'woocommerce' ), 'grouped' => __( 'Grouped product', 'woocommerce' ), 'external' => __( 'External/Affiliate product', 'woocommerce' ) ), $product_type );So as you can see, you need to create a filter to add / remove types.