Recently I’ve been developing a WordPress plugin to extend WP e-Commerce, a free storefront plugin. I used to use osCommerce, a robust PHP solution for shopping carts and heavily customized it. I was looking at this implementation of osCommerce (a great effort) as a WordPress plugin, but it was like reinventing the wheel–not worth it. WP e-Commerce is a native WordPress plugin, works well, has a huge user base and is (mostly) easy to extend.
The WP e-Commerce developers are kind enough to provide documentation for developers of plugins. Their page on “Settings Page API” describes the process of adding a tab to the WPEC settings page. While mostly straightforward there are two points that tripped me up:
- The
class WPSC_Settings_Tab_PLUGIN_SLUG extends WPSC_Settings_Tab needs to be inside the plugin tab function being described. This issue was mostly a result of my own dimness…
- This one seems to be a typo. The action hook tying in your plugin tab function as described is:
1add_action( 'wpsc_load_settings_tab_class', 'my_plugin_settings_tabs');
add_action( 'wpsc_register_settings_tabs', 'my_plugin_settings_tabs');
can you email me or post the the simple demo code
it is a issue me too
The code that worked for me follows:
Thank you! I’ve been tearing my hair out trying to figure out why this wouldn’t work. (=