how to add weight field on checkout page in Jigoshop Plugin

Simply use a callback that you hook to wp_mail(). The first line of the function: extract( apply_filters( ‘wp_mail’, compact( ‘to’, ‘subject’, ‘message’, ‘headers’, ‘attachments’ ) ) The third argument $message is what you want to alter. Just return an array in the callback where you merge the original with your alterations.

Turning Existing Eccommerce Site into Multi-SIte

I develop locally in a non-multi-site environment, then push to a multi-site (not the users or user_meta tables). Most plugins will work, but some expressly do not, so you should check with each first. This workflow was used on a WooCommerce site with no issues. Get comfortable with the table structure differences between standard and … Read more

How can I list only Subcategories in Woocommerce

You can try this. $args = array( ‘parent’ => 100, // id of the direct parent ‘hide_empty’ => false, ); $cats = get_terms( ‘product_cat’, $args ); foreach( $cats as $cat ) { // do your loop stuff here } Here is more information on this function and additional arguments you can use.

Can Shopp Commercial Plugin be hacked to display radio buttons instead of Dropdowns? [closed]

This example highlights the versatility of interface options you can create by using radio inputs to select a product variation rather than the default menus. This section of code could be used in place of the variations code block in either the product.php template file or the category.php template file (if you want variation inputs … Read more

Selling Downloadable Products [closed]

your file upload limits are controlled by your php configuration (php.ini). if you’ve tried the various fixes found when searching “php increase maximum upload filesize” or similar, then that’s a question for your host. as far as hosting files elsewhere and a commerce plugin that supports that feature, I suggest having a look at Woocommerce … Read more

Is it possible to set individual shipping prices in Woocommerce? [closed]

Just to help you out … WordPress and Magento are comparable as they are both PHP content management systems. However Magento doesn’t compare to WooCommerce in the way you mention it above. For example: you may not need WordPress if you installed Magento. But you have to install WordPress to use WooCommerce. What you are … Read more