Can Shopp Commercial Plugin be hacked to display radio buttons instead of Dropdowns? [closed]

This example highlights the versatility of interface options you can create by using radio inputs to select a product variation rather than the default menus. This section of code could be used in place of the variations code block in either the product.php template file or the category.php template file (if you want variation inputs … Read more

Can Shopp or WP ecommerce create something as extensive as these sites? Other recommended solutions?

I would either recommend PHPurchase or Shopp for WordPress. Each have their own pro’s and cons in relation to set-up and features. Both of the below plugins are not free, but a lot of free e-commerce solutions like WP E-Commerce sometimes just aren’t enough to build a great online store. PHPurchase Allows you customise every … Read more

Proper hook for W3TC defines, or dynamically disable w3 total cache [closed]

U could try using this type function: add_action( ‘wp_print_scripts’, ‘my_deregister_javascript’, 100 ); if ( !is_page(‘Events’) ) { wp_deregister_script( ‘wpng-calendar’ ); wp_deregister_script( ‘date-js’ ); wp_deregister_script( ‘thickbox-js’ ); wp_deregister_script( ‘jquery-js’ ); wp_deregister_script( ‘wiky-js’ ); } } Found it on this website U’ll have to modify the nandlers to your needs, i found the W3TC handlers to be: … Read more

Pros/Cons of “WP e-commerce” and “Shopp” plugins [closed]

I have used both plugins. I tested them both extensively and have built and delivered client websites on both platforms. My tests were conducted over a year ago before I went with my preferred (Shopp) but here is what I found. WP Commerce at the time had buggy code, poorly written markup and many elements … Read more