Page 1 of 2 12 LastLast
Results 1 to 10 of 699

Hybrid View

  1. #1
    Join Date
    Aug 2007
    Posts
    3
    Plugin Contributions
    0

    Default Re: Better Together Contribution Support Thread

    Hi,

    I have a question and sugestion. I have installed your module as I found it very very interesting. CONGRATULATIONS. But just one concern at least for me.
    You know that some of as uses Discount Groups, and others like my self that uses the Discount Pert Itemes Per Group prices. The problem is that a 2x1 or what ever offer based on the listed price is good for the business, the problem is when you sell to at the same time to "final customers" "reselleres" and or "distributors". one 2x1 offer based on price list for example 10 USD is ok, but when you have a Price group for 50% off price list, for exaple "Reselleres" then with your module they will have 10USD plus 50% off - 5USD plus 2x1 - 2.5 USD per item..... Well to shot this out as i guess you may figure out what i mean. Is ther a posibility to avoid a Better together offer to some Group Price or for all of them by default?

  2. #2
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,528
    Plugin Contributions
    127

    Default Re: Better Together Contribution Support Thread

    If you want to avoid double discounting, you should modify your per item per group logic to not discount items you have Better Together discounts on. You will have to ask whoever supports that code how to make that change.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  3. #3
    Join Date
    Aug 2007
    Posts
    3
    Plugin Contributions
    0

    Default Re: Better Together Contribution Support Thread

    Ok, Thanks for the reply. I will try tofigure out how to do this. One more question. Is there a posibility to list all Better Toguether products on one list just like Specials items?

  4. #4
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,528
    Plugin Contributions
    127

    Default Re: Better Together Contribution Support Thread

    Not right now. I have toyed with this idea in the past, but the trouble is, it's hard to make it relevant. If you are looking for gardening tools, you don't really care that diapers are discounted when purchased with baby food. That's why the marketing text on the product page is the promotional mechanism I have suggested - the customer has already drilled down and indicated his interest. That's the optimal upselling point.

    Nevertheless, thank you for the suggestion, and I'll think on it some more.

    That Software Guy
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  5. #5
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,528
    Plugin Contributions
    127

    Default Re: Better Together Contribution Support Thread

    I've had a change of heart on this. Look for a new optional download in late September providing this functionality. I think I'd like to keep it separate because not everyone wants it, but it definitely has value.

    Scott
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  6. #6
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,528
    Plugin Contributions
    127

    Default Re: Better Together Contribution Support Thread

    Quote Originally Posted by albertomrubio View Post
    Is there a posibility to list all Better Toguether products on one list just like Specials items?
    OK, this is now ready. Right now it's just a zip file on my website; I guess if people like it I'll submit it to the download area, but I wanted to keep it out of the main contribution so that people would have a choice of whether or not to use it. Here's the zip:

    http://www.thatsoftwareguy.com/promo_better.zip

    and if you want to see what it looks like before installing it, here's an example:

    http://www.thatsoftwareguy.com/swguy...together_promo

    Scott
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  7. #7
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,528
    Plugin Contributions
    127

    Default Re: Better Together Contribution Support Thread

    Better Together 1.5 has been released and is available in the download area.
    It builds on the introduction of tpl_better_together_marketing.php (as the way to add marketing text to the product info page) in the following ways:

    - The marketing text has been consolidated to a single div named
    betterTogetherDiscountPolicy. This div is only created when it is needed,
    so you are now free to style it with a border. If you have styled
    "discountPolicy" and "discountPolicyReverse" (the previous names), please
    incorporate this name change into your stylesheet.

    - Some wording changes have been made to the marketing text to further
    clarify the discount being offered. If you have made changes to the
    language file, you will want to install the new one and merge your changes.
    In particular, the change noted in post 97

    http://www.zen-cart.com/forum/showpo...7&postcount=97

    is critical for two for one category discounts, and must be installed. Other
    changes are required to align the marketing text with how the code actually works.

    The core contribution does not include the "Promotional Page" described in the previous
    post, which is packaged separately and is available as a free download off my site.

    Thank you,
    That Software Guy
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  8. #8
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,528
    Plugin Contributions
    127

    Default Re: Better Together Contribution Support Thread

    If you are using Better Together and want to use Google Checkout, please upgrade to Better Together 1.5a. A bug was detected in the process() routine in ot_better_together.php that makes Google Checkout unable to determine the discount. Of course, you will also need to be running Google Checkout v1.4.1_beta2 (or better), which contains the fixes required to make Order Total modules work.

    If you have made significant changes outside of the setup() routine and just want to merge in this change, look for the string 'value'. You will see

    Code:
       'value' => $this->deduction);
    Change this to

    Code:
       'value' => $od_amount['total']);
    So the whole block should look like this:
    Code:
              $this->output[] = array('title' => $this->title . ':',
                                     'text' => '-' . $currencies->format($od_amount['total'], true, $order->info['currency'], $order->info['currency_value']),
                                     'value' => $od_amount['total']);
    Thank you,
    That Software Guy
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  9. #9
    Join Date
    May 2005
    Posts
    539
    Plugin Contributions
    0

    Default Re: Better Together Contribution Support Thread

    swguy,

    this mod was working okay and I have just added a second promo and now I get this error regardsless of how many promos it only goes if I take all promos off the module ot_betther_together.php file

    error is

    Parse error: syntax error, unexpected $end in /secure/f/mydomain/includes/modules/order_total/ot_better_together.php on line 457

    odd it should suddenly occur. I have even taken a new copy of the file from the down load incase I had deleted something by error.

    But still get issue. Look forward to your help and thoughts

    MG

  10. #10
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,528
    Plugin Contributions
    127

    Default Re: Better Together Contribution Support Thread

    Typically this indicates a brace or bracket imbalance.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Twitter Updates Sidebox Contribution Support Thread
    By delia in forum Addon Sideboxes
    Replies: 13
    Last Post: 29 Dec 2010, 12:44 AM
  2. Better Together Promotional Page Contribution
    By swguy in forum All Other Contributions/Addons
    Replies: 10
    Last Post: 27 Feb 2010, 05:52 PM
  3. Windows Live Product Search Contribution Support Thread
    By numinix in forum All Other Contributions/Addons
    Replies: 209
    Last Post: 3 Jul 2009, 08:23 PM
  4. Better together mod
    By coolman in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 16 Aug 2008, 09:48 PM
  5. LinkConnector Affiliate Contribution Support Thread
    By hyperdogmedia in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 28 Jun 2007, 06:33 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg