We are testing out an update to the Live Grid for WP-eCommerce plugin that enhances the styling for product prices.
Styling now includes an option for free products, and highlights product prices that are on sale.
We are testing out an update to the Live Grid for WP-eCommerce plugin that enhances the styling for product prices.
Styling now includes an option for free products, and highlights product prices that are on sale.
PayPal offers a really nice feature that lets you customize the look and feel of the PayPal checkout page to match the look and feel of your web site. We highly recommend that you use this feature to have your PayPal checkout page look similar to your WP-eCommerce shopping cart pages. It makes for a much friendlier feeling checkout experience.
But what do you do when you have one PayPal account and multiple stores. The PayPal Payments Standard 2.0 gateway that comes with WP-eCommerce doesn’t let you override the look and feel settings on a store by store basis. And the newer PayPal gateways that come with WP-e Commerce may not be suitable for your store for some reason.
There is an easy answer!
The PayPal gateway that comes with WP-eCommerce has a nifty “filter” that we can use to pick any of the “styles” you have set up in your PayPal settings. It’s only a few lines of code that you can drop into a file in the mu-plugins directory, or into your theme’s functions.php.
add_filter( 'wpsc_paypal_standard_post_data', 'my_wpsc_paypal_standard_post_data', 10 , 1 ); function my_wpsc_paypal_standard_post_data( $paypal_vars ) { $paypal_vars['page_style'] = 'pyebrook'; return $paypal_vars; }
And this is what your shoppers will see:
When we are contacted for to help build a new WP-eCommerce site, upgrade an older WP-eCommerce installation, or fix an issue in a WP-eCommerce store there we try to gather a little technical information to understand what we are working with.
The questions we ask, and the things that we look at have been moved into a FREE, easy to use plugin that you can install to check your WP-eCommerce / WordPress configuration health.
Download the Site Check-up Plugin for WP-eCommerce here!
Using one of the less expensive hosting providers and a shared hosting plan for your WP-e-Commerce site is a great way to get started. The hosting providers often have easy one-click setups that they have already been optimized for a WordPress blog. These configurations can be a convenient as a starting point for setting up your WPeC site. Not having to set up and tune your Web Server and WordPress configurations can save hours or even days worth of work.
Optimizing a server for WordPress almost always includes setting up a cache to improve the ability of your server to handle requests quickly and consistently. If you aren’t familiar with how a cache works it’s pretty simple. If the result of a computation, database request or file read might be needed later, save the result close by so that if it is needed again it both easy and fast to get.
Caching on a blog is useful because the intent is for each piece of content to be read over and over again, perhaps thousands of times. Keeping the raw data close to where the web page is created not only speeds the experience for the end-user, it helps balance the utilization of server components. This means more requests can be processed by less hardware and software.
There are lots of caches that can be configured for a WordPress site. The common types are proxy-caches, op-code caches, object (attribute-value) caching and content delivery networks (CDN). Hosting provider’s will setup whatever a combination of cache types that matches what they anticipate to be met their users needs.
There a many implementations of each cache type some are bundled with server software, some are commercial products, some are services. For example, there are probably hundreds of CDN that could be used with any given web site. If your web site is running on any type of Linux variant with Apache it could be the case that your hosting provider has preconfigured a server to APC for WordPress Caching.
APC offers two caching capabilities, op-code caching and attribute caching. Your site can be configured to use either APC capability, or both, or neither. It’s important to understand each cache capability, and how it helps your site.
Op-code caching stores pre-processed copies of your web site’s PHP source code so that pages will load very fast. I benchmarked this site with APC op-code caching enabled and disabled and WordPress loaded 20 times ( 210 vs 10 milliseconds) faster with APC op-code caching enabled. That is a huge improvement.
APC also offers attribute (object) caching. Two things about WordPress blogs that make it a perfect fit for very active attribute caching. First is that content is very rarely changed, it is added to. This means that if WordPress saves an extra copy of a piece of content it doesn’t have to worry about has the value of the attribute being changed.
Second is that under the hood, WordPress data is broken into lots of distinct, small, easy to manage, pieces of data, sometimes called objects. These pieces of data used to create web pages can come from attributes and values saved in a database, or somewhere else.
Post objects have attributes with values. User objects have attributes with values. Comment also have attributes with values. If you take a quick look at your WordPress database you will see many of these attributes and values saved in the wp_commentmeta, wp_postmeta and wp_usermeta database tables.
The core WordPress code is tuned to take advantage of attribute value (object) caching if it is available. WordPress does this by saving the attributes and their values in the object cache at the same time they are saved to, or read from, the database.
WP-e-Commerce (WPeC) is architected to take advantage of the WordPress platform and all of the performance benefits that it provides. In WPeC products are just another WordPress post type, visitors are just another meta type, and carts are just attributes attached to visitors.
Shopper goes to checkout page and cart is empty! 🙁
If our server configuration includes Linux, Apache using Fast CGI and APC, and is set up to use APC for attribute value caching it is likely the case that we just got hit by the behavior in this bug report.
When your web server gets a request to serve a web page or add something to a cart the web server gives the request to one of many “workers” that are available. Each of these workers is thought to be an exact duplicate of each other. This means that any worker should be able to process any request, and the result should be the same.
But this isn’t always entirely true with regards to APC. Each worker could have its own copy of the APC cache.
We installed the apc.php statistics file that comes with the APC cache on a production web server. Watch file cache information as we refresh the page.
Notice the hit/misses change, and they and go down. The other stats change also. This is because the request to serve this page is using statistics from the APC cache unique to the worker that is serving the page.
Easy. Don’t use APC for object ( attribute-value ) caching with WordPress. Use APC for op-code caching only.
Yes. But it’s not a good idea. Without an object cache your site will slow down. The impact on user experience will be noticeable. However, If you want to you can turn off object caching entirely rename or delete the object-cache.php file in your wp_content directory.
Perhaps. This is an article that describes what you have to do. Not for uninitiated or the faint of heart 😉
If your host is sophisticated enough to try to make APC available to you it’s also very likely that your host has memcached available. If so, you can switch to using memcache as your object cache by replacing the object-cache.php in your wp_content directory with an object-cache.php that sends the request to memcache rather than APC. You might want to take a look at this plugin that includes the object-cache.php you need and some installation instructions. If your host hasn’t made memcached available it’s requires some basic Linux skills to set up. Just make sure you host has given you the required permissions.
If you want to see if your site has this configuration problem you could also try our Snappy WPeC plugin that does provides some WPeC and WordPress diagnostic information. The plugin is free.
If you find the snappy plugin helpful and want to tell us how much you like it, why not purchase one of our other WPeC plugins. Perhaps the Shopper Watch plugin that let’s you see what users are looking at, and what they have in their carts, or maybe our stamps.com plugin that let’s you print postage from the WPeC sales log page.
If you need some help diagnosing and fixing up your WordPress + WPeC configuration email us and we can work with you and your hosting provider to get things set up correctly.
Shopper rewards was mentioned over at WordPress Tavern in the The Daily Plugin. We (and lots of other people) think WP Tavern is a great resource to check in to to see what’s happening around the WordPress ecosystem.
Here is what they said…
Shopper Rewards for WP-eCommerce is an interesting add-on plugin for WP-eCommerce that allows you the opportunity to add a rewards program for your customers. With more and more retailers taking advantage of Shopper Rewards, it’s nice to see WPEC have the same functionality. This plugin allows you to set up various point systems and rewards for shopping based on overall spending. Rewards are a great way to retain a client with incentive to keep purchasing. The plugin allows the customer to check their rewards balance, access their complete purchase history with a running total of the reward points earned and even transfer points to fellow shoppers. Multiple currency options can help to set up different point values based on the currency being used. Additional ways to earn points include Tweeting or Following, viewing specific products/pages, Facebook likes and shares, creating an account and other doorways to points. Some features are available via their premium version, which is only $20 for a license. Excellent execution and a great add-on for designers who would like to provide extra oomph to eCommerce sites under their administration.
Sparkle Gear, a retailer of premium customized rhinestone bling clothing and accessories engaged us to build their e-commerce site! The site www.sparkle-gear.com is up and running.
Created completely from open-source software and our own custom WordPress plugins, including a product templating and generation plugin, this site rocks. It is fully integrated with Facebook and Twitter, processes Paypal and credit card transactions, and tracks orders from start through shipping.
One of the best features of our integration is our WordPress plugin that manages giveaways. Check out http://www.sparkle-gear.com/giveaway/santas-little-helper-martini-glasses-handbag-giveaway/ to see it in action.