The Cart Blog

Saturday, September 27, 2008

Automatic Coupon Creation in Zen Cart

Filed under: That Software Guy, Zen Cart — thatsoftwareguy @ 9:27 pm

At the tail end of National Coupon Month, I am pleased to announce the limited availability of two automatic coupon generation solutions for Zen Cart:  Spender AutoCoupon and Chooser AutoCoupon.  Spender AutoCoupon allows coupons to be automatically generated on the basis of total purchase amount; Chooser AutoCoupon allows coupons to be automatically generated on the basis of items purchased.   They use the syntax from Big Spender and  Big Chooser respectively.  These solutions are ready for use in Zen Cart version 1.3.7.1 and 1.3.8a.

Wednesday, September 24, 2008

E-Commerce Guide talks Prestashop, Ubercart

Filed under: Cart Vendors — thatsoftwareguy @ 12:19 am

Read the interview here.

Saturday, September 20, 2008

Wishpot Integration for Zen Cart now available

Filed under: That Software Guy, Zen Cart — thatsoftwareguy @ 12:59 pm

My Wishpot Integration for Zen Cart is now available on the Zen Cart download site.

Saturday, September 13, 2008

Zen Cart Big Chooser Bug Detected

Filed under: That Software Guy, Zen Cart — thatsoftwareguy @ 5:57 am

A bug has been detected in all versions of my Zen Cart Big Chooser extension.

The issue was as follows:

  • For set_constraint() parameters with multiple required purchases, passing was based on whether the final required quantity passed. So if you used
    $this->set_constraint(CAT, 3, 6, CAT, 2, 5);

    and you had 5 category 2 items but less than 6 category 3 items, the constraint would be considered passed.   (Note: If your set_constraint() parameters have only one required purchase, you are not affected by this bug.)

  • For set_choice_constraint() parameters, if you had multiple instances of  set_choice_constraint, passing was based on whether the last one passed. So if you had
    $this->set_choice_constraint(6, CAT, 2);
    $this->set_choice_constraint(6, CAT, 3);

    and you did not have 6 category 2 items but you did have 6 category 3 items, the constraint would be considered passed. (Note: If your choice constraints are consolidated into one single set_choice_constraint parameter, you are not affected by this bug.)

This is the resolution. Edit the file includes/modules/order_total/ot_big_chooser.php, and in the function calculate_deductions() find this block of code:

// If there's a constraint list, make sure the product is in it.

if (sizeof($rule->constraintlist) > 0) {

     $pass = false;

     foreach ($rule->constraintlist as $constraint) {

        $pass = $this->check_cart_constraint($products, $constraint);

     }

     if (!$pass) continue;

}

// If there's a choice constraint list, make sure it's covered.

if (sizeof($rule->choice_constraintlist) > 0) {

     $pass = false;

     foreach ($rule->choice_constraintlist as $constraint) {

        $pass = $this->check_cart_choice_constraint($products, $constraint);

     }

     if (!$pass) continue;

}

Replace it with this block of code:

// If there's a constraint list, make sure the product is in it.

if (sizeof($rule->constraintlist) > 0) {

     $pass = false;

     foreach ($rule->constraintlist as $constraint) {

        $pass = $this->check_cart_constraint($products, $constraint);

        if (!$pass) break;

     }

     if (!$pass) continue;

}

// If there's a choice constraint list, make sure it's covered.

if (sizeof($rule->choice_constraintlist) > 0) {

     $pass = false;

     foreach ($rule->choice_constraintlist as $constraint) {

        $pass = $this->check_cart_choice_constraint($products, $constraint);

        if (!$pass) break;

     }

     if (!$pass) continue;

}

This bug is fixed in Big Chooser version 1.2.0a.  If you already have Big Chooser, I can send you a fresh copy with this fix (and selection by manufacturer) for just $10.

Wednesday, September 10, 2008

Want to start it up? Carpe Diem!

Filed under: Entrepreneurship — thatsoftwareguy @ 1:48 am

Harvard Business Review advises, “Don’t Wait Too Long to Become an Entrepreneur.

Tuesday, September 9, 2008

Better Together 2.0 Released!

Filed under: That Software Guy, Zen Cart — thatsoftwareguy @ 7:09 am

Better Together 2.0 is now available. The new features in this version are:

  • The addition of add_cat_to_prod linkages.
  • Automatic cart sort by price. This means that discounts which use add_cat_to_cat, add_prod_to_cat or add_cat_to_cat will automatically discount the least expensive item that matches the second id.

Related changes to other parts of the Better Together family:

  • Users of the Better Together Admin Panel will require version 2.0 of that software to create add_cat_to_prod linkages; the upgrade fee is $10. Prior versions will continue to work but will be unable to create add_cat_to_prod linkages.
  • Users of the Buy Both Now will require version 2.0 of that software to create add_cat_to_prod linkages; the upgrade fee is $10. Prior versions will continue to work but will be unable to create add_cat_to_prod linkages.
  • Users of the Better Together Promotional Page must download a new copy from my site here.
  • Users of Discount Preview and Checkout Candy do not require any additional changes.

Thursday, September 4, 2008

Free shipping still important? Yep.

Filed under: Pricing — thatsoftwareguy @ 5:00 am

Jason Billingsley of Elastic Path finds that people even search for it during the Christmas shopping season.

Wednesday, September 3, 2008

Mixed messages?

Filed under: Marketing — thatsoftwareguy @ 6:27 am

A wise man once advised  t-shirt vendors to use attractive female models, not the hoagie-loving dudes who actually wear the shirts.   This was a funny line, but is it truly good advice?   GrokDotCom’s Anthony Garcia says that seeing female models when he selected Men’s 2XL as his size  led to a confusing user experience.

“I would be interested to see what the bounce/exit rate would be on this page. I would bet a lot more than $50 that Threadless.com is bleeding guys on this listing page. I wonder how many guys are thinking they are in the wrong place.”

Perhaps a single size and gender appropriate model (even if CGI) followed by the usual community contributed photographs  would be a better compromise.

Tuesday, September 2, 2008

Merlin on multitasking

Filed under: Productivity — thatsoftwareguy @ 2:38 am

I started reading 43 Folders again and stumbled on this gem.  Couldn’t agree more – most people who claim to be great multitaskers just do a crappy job at a bunch of things at the same time.

Monday, September 1, 2008

Tackling the pile of stars

Filed under: Email — thatsoftwareguy @ 5:31 pm

I use GMail’s “star” feature Star as a giant honking todo list, and I’m pleased to say that this weekend, I’m down to 54 starred items.  “Inbox Zero” should be “Starred Zero” for me. :)

I enjoy using Remember the Milk (in fact, I just downloaded the BlackBerry client, which is called MilkSync), but for email that takes time to process, starring can’t be beat.

Powered by WordPress