WooCommerce extension updates & releases

WooCommerce Authorize.net CIM 2.0 Released

WooCommerce Authorize.CIM 2.0 is here (finally)! We’re super excited to announce that we’ve released a large update to our WooCommerce Authorize.net CIM payment gateway 🙂 While development took far longer than we would’ve liked (initial estimate was 50 hours, the final tally was over 200 hours), we’re really pleased with the final product and we can’t wait for you to update and try it out! This update has undergone many hours of testing and is…

Ask SkyVerge

How to Remove WooCommerce Product Images from the Cart

This Ask SkyVerge question comes from Frank: Is it possible to remove the product thumbnails and the links to the product page on the cart page? By default, the WooCommerce cart page includes product images and links to product pages in your shop for each item in the cart. However, the cart template is pretty flexible, and there a couple of handy filters in it that can let us change these cart elements. First, we…

WooCommerce extension updates & releases

WooCommerce Memberships version 1.1 Released

Version 1.1 of WooCommerce Memberships was released this week, which adds a few new features to make content public, display content to non-members, and improves the User Switching plugin integration. We also added a public feature voting list to our documentation, which shows the features we have on our roadmap, and allows users to vote for their favorites so we can better prioritize them. Make Content Public WooCommerce Memberships makes it super easy to restrict…

WordPress development tutorials

Developers: Stop Using sslverify = false — WordPress has you covered

I listened to a talk recently about using WordPress to communicate with external APIs, which is something we do frequently at SkyVerge. We’ve built over 20 payment gateway integrations for WooCommerce, each of which needs to communicate with the payment processor’s API. One thing that I noticed in the talk is that setting sslverify = false when using wp_remote_get or wp_remote_post was recommended. This is a fairly common practice and has thus become recommended for…

WooCommerce extension updates & releases

WooCommerce Memberships is here!

It feels so incredible to finally launch a project that our team has been building for almost a year: WooCommerce Memberships is here! First, a Brief History We build a lot of plugins at SkyVerge, and we use even more. While we don’t have the capacity to do much client work now, we’ve had several long-standing relationships and retainers with clients, and we’ve done a lot of custom work over the past couple of years….

Ask SkyVerge

Changing the Storefront My Account Page

Today’s Ask SkyVerge question is from Harshad: The “My Account” page used to display the login and register forms side by side, but now that I switched to Storefront and updated WooCommerce they are below each other, taking up a lot of space on the page. Can the Storefront My Account page be changed? If you use WooCommerce in a default theme, like TwentyTwelve, you’ll see that the “My Account” page layout is in two…

Birthday Contest Winners

First, thanks so much to all of you who participated in our birthday celebration this week! We really appreciate you being a part of our journey over the past two years and participating in our birthday sweepstakes. Our grand prize winner has been contacted — congrats Amber! She’s getting $200 worth of WooCommerce extensions from WooCommerce.com. Our second place winners have also been notified via email, and we’ll be shipping out some swag to them…

Happy Birthday, SkyVerge

2 years ago, Justin and I founded SkyVerge with the modest goal of taking over the world working for ourselves and building some plugins. Now, with over 65 WooCommerce extensions, 3 Shopify apps, a cross-platform abandoned cart app in the works, and an incredibly talented team of developers, designers, and writers, we couldn’t be more excited with what the future holds. While we spend some time reminiscing and celebrating (not too much though, lots of…

WooCommerce reviews + tutorials

Hooking into WooCommerce Actions

This is post 2 of 8 in the series “Build a WooCommerce Extension” This series walks you through some of the beginner to intermediate skills you’ll need to build your first WooCommerce extension. Building Your First WooCommerce Extension Hooking into WooCommerce Actions How to Create a WooCommerce Widget Widgets, Part Deux: Create a Smart WooCommerce Widget Add Plugin Settings to WooCommerce, Part 1 Add Plugin Settings to WooCommerce, Part 2 WooCommerce Class Members Example: Create…

Overriding Templates in WooCommerce Extensions

WooCommerce has a system in place that will allow you to override core templates within your child theme. This means that you can copy a template file, edit it, and the edited version in your theme will be loaded instead of the core version of the template. We do encourage you not to do this, as most changes can be made via hooks (filters and actions) instead, and this method is far more upgrade-safe than…