Tag Archives: WP e-Commerce

Disable WP E-Commerce scripts and stylesheets

This comes straight outta the getShopped forums: http://getshopped.org/forums/topic/disable-all-wpsc-javascript-and-css-files-3/ via cannobbio. To disable all scripts and stylesheets, add this code to the functions.php file in your theme folder: // Remove Styles function childtheme_deregister_styles() { wp_deregister_style( ‘wpsc-theme-css’ ); wp_deregister_style( ‘wpsc-theme-css-compatibility’ ); wp_deregister_style( ‘wpsc-product-rater’ ); wp_deregister_style( ‘wp-e-commerce-dynamic’); wp_deregister_style( ‘wpsc-thickbox’ ); wp_deregister_style( ‘wpsc-gold-cart’ ); } add_action( ‘wp_print_styles’, ‘childtheme_deregister_styles’, 100 [...]

Posted in Solutions | Also tagged , , | 3 Comments

WP E-Commerce 3.8 and Thematic = no sidebars!

I just upgraded a client from WP E-Commerce 3.7 to 3.8 and all my sidebars disappeared! This is how I fixed it: Background info The freshest software First of all, I’m using a child theme of Thematic (version 0.9.7.7) and the latest versions of WP E-Commerce (3.8.6) and WordPress (3.2.1). I just downloaded everything today [...]

Posted in Solutions | Also tagged , , | 7 Comments

A fix for WP e-Commerce error: “The following directories are not writable”

If you get this error: The following directories are not writable: * /var/www/mysite/wp-content/uploads/wpsc/downloadables/ * /var/www/mysite/wp-content/uploads/wpsc/previews/ * /var/www/mysite/wp-content/uploads/wpsc/product_images/ * /var/www/mysite/wp-content/uploads/wpsc/product_images/thumbnails/ * /var/www/mysite/wp-content/uploads/wpsc/category_images/ * /var/www/mysite/wp-content/uploads/wpsc/upgrades/ You won’t be able to upload any images or files here. You will need to change the permissions on these directories to make them writable. When you click on “Products” in WP [...]

Posted in Solutions | Also tagged | 10 Comments