Archive by Author

WooCommerce Extension Updates, 2015-02-05

05 February

Hi folks. A few WooCommerce extension updates were pushed up today, including: WooCommerce Dynamic Pricing Version 2.9.2, Released on 2015-02-03 Storefront Designer Version 1.4.1, Released on 2015-02-04 Storefront WooCommerce Customizer Version 1.3.0, Released on 2015-02-04 WooCommerce Free Gift Coupons Version 1.0.4, Released on 2015-02-03 WooCommerce Wishlists Version 1.6.7, Released on 2015-02-04 Existing members, you can […]

WooCommerce Extension Updates, 2015-02-04

04 February

Hi folks. A few WooCommerce extension updates were pushed up today, including: WooCommerce PayPal Pro Version 4.3.0, Released on 2015-01-26 WooCommerce Product Add-Ons Version 2.7.0, Released on 2015-01-27 WooCommerce Distance Rate Shipping Version 1.0.1, Released on 2015-02-03 WooCommerce Stripe Payment Gateway Version 2.3.0, Released on 2015-01-31 WooCommerce One Page Checkout Version 1.1.1, Released on 2015-02-02 […]

WooCommerce Extension Updates, 2015-02-03

03 February

Hi folks. A few WooCommerce extension updates were pushed up today, including: WooCommerce Subscriptions Version 1.5.17, Released 2015-02-02 WooCommerce Product CSV Import Suite Version 1.9.17, Released 2015-02-02 WooCommerce One Page Checkout Version 1.1.1, Released 2015-02-02 WooCommerce Force Sells Version 1.1.7, Released 2015-02-02 Existing members, you can find these updates by logging into your account and […]

WooCommerce Extension Updates, 2015-01-20

20 January

Hi folks. A few WooCommerce extension updates were pushed up today, including: WooCommerce Checkout Add Ons Version 1.3.1, Released 2015-01-20 WooCommerce Sage Pay Form Extension Version 2.2.3, Released 2015-01-18 Storefront Designer Extension Version 1.3.1, Released 2015-01-15 WooCommerce Google Product Feed Version 3.9, Released 2015-01-14 WooCommerce Cost of Goods Version 1.5.1, Released 2015-01-20 WooCommerce Social Login […]

WooCommerce Extension Updates, 2015-01-13

13 January

Hi folks. A few WooCommerce extension updates were pushed up today, including: WooCommerce Checkout Add Ons Version 1.3.1, Released 2015-01-20 WooCommerce Sage Pay Form Extension Version 2.2.3, Released 2015-01-18 Storefront Designer Extension Version 1.3.1, Released 2015-01-15 WooCommerce Google Product Feed Version 3.9, Released 2015-01-14 WooCommerce Cost of Goods Version 1.5.1, Released 2015-01-20 WooCommerce Social Login […]

Fix bbPress Search in Canvas Theme

17 December

If you’re having trouble with bbPress searching in the Canvas theme you can try the following technique to get it resolved. Download the file bbpress.php from https://gist.github.com/mattyza/1b01583441b11c8d04d0 Place the following code in your functions.php file: //https://gist.github.com/mattyza/f210cadb7f70188d513d add_filter( ‘template_include’, ‘woo_custom_maybe_load_bbpress_tpl’, 99 ); function woo_custom_maybe_load_bbpress_tpl ( $tpl ) { if ( function_exists( ‘is_bbpress’ ) && is_bbpress() ) […]

Add Twitter Bootstrap Icons to Widget Titles in WordPress

03 July

Best option I’ve found is via a shortcode. Open your functions.php in your favorite text editor and first enable shortcodes for widget titles: add_filter(‘widget_title’, ‘do_shortcode’); Then, add your shortcode with the icon: add_shortcode(‘iconthlist’, ‘wpbase_iconthlist’); function wpbase_iconthlist() { return ‘<i class=”icon-th-list”></i>’; }