IgniteWoo Team
Forum Replies Created
-
Forum: Plugins
In reply to: [Event Calendar & Ticketing] JS Errorplease continue your support request via contacting us directly. Unless you want to wait for us to get around to checking this support area – which we rarely do.
Forum: Plugins
In reply to: [Event Calendar & Ticketing] JS ErrorInstall v2.2.17
Forum: Plugins
In reply to: [Event Calendar & Ticketing] 2.2.16 update BREAKES WP ADMINIncorrect. Closing this support issue.
Forum: Plugins
In reply to: [Event Calendar & Ticketing] 2.2.16 update BREAKES WP ADMINClosing.
The solution is to get 2.2.17 when we release it.
Forum: Plugins
In reply to: [Event Calendar & Ticketing] WooEvents Doesn't Display Postal CodePlease update to the latest version
Forum: Plugins
In reply to: [Event Calendar & Ticketing] duplicate contentUpdate to the latest version, review the settings – there’s a new setting at the bottom of the settings page. Then use the new shortcode indicated on the settings page to insert the content anywhere within the body of the event post content.
Forum: Plugins
In reply to: [Event Calendar & Ticketing] Move js to file?We can certainly look into doing that.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce duplicate order via Class API?Oh that’s cool – totally forgot about that! Thanks Lucas 🙂
That’s a decent start. But it expects someone to run through checkout on the public site. So it only serves a beginning to actually get the order into the store DB.
WooCommerce Subscriptions actually has code to totally dup an order from start to finish. Thus my suggestion to have a look at the code if possible.
Forum: Plugins
In reply to: [WooCommerce] Problem with onsale itemsWhen in doubt, switch to a stock WP theme and retest. Many themes for WC ( in so far as we’ve een ) are basically broken except for bare bones functionality.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce duplicate order via Class API?This not trivial to accomplish. There are a few different approaches to take. You have to deal with the order post, order status taxonomy, order postmeta, order items, order item meta. There’s no existing function to duplicate an order. Got a copy of WC Subscriptions? It duplicates orders to some extent. Might be a good example for you.
Forum: Plugins
In reply to: [WooCommerce] Picture sizesMaybe a theme problem. Test with a stock WP theme such as TwentyThirteen etc.
If you theme overrides image sizes by forcefully setting a CSS attrib for images then you have to modify CSS.
Forum: Plugins
In reply to: [WooCommerce] WP initial page being a single productCheck the WooCommerce docs for a list of shortcodes. Those are what you have to work with outside of custom code.
Forum: Plugins
In reply to: [WooCommerce] woocommerce flat rate shippingMaybe check into table rate shipping.
Forum: Plugins
In reply to: [WooCommerce] Change the number of columns products are displayed in ShopFrom the WooCommerce docs … add something like this to your theme functions.php file:
add_filter('loop_shop_columns', 'loop_columns'); if (!function_exists('loop_columns')) { function loop_columns() { return 3; // 3 products per row } }