Page 22 of 70 FirstFirst ... 12202122232432 ... LastLast
Results 211 to 220 of 699
  1. #211
    Join Date
    Jul 2008
    Posts
    138
    Plugin Contributions
    0

    Default Re: Better Together Contribution Support Thread

    Never mind I'll just uninstall it then because it doesn't do what I need it to do. Thanks

  2. #212
    Join Date
    Oct 2006
    Posts
    64
    Plugin Contributions
    0

    help question Can better Better Together do this?

    Can better Better Together do this kind of thing:

    "Enter this code at checkout and get a free thingamajig with your purchase of $50 or more”

    or am I barking up the wrong tree?

  3. #213
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,314
    Plugin Contributions
    125

    Default Re: Better Together Contribution Support Thread

    No - Better Together is "Buy A, get B at a discount."
    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.

  4. #214
    Join Date
    Mar 2005
    Posts
    123
    Plugin Contributions
    0

    Default Re: Better Together Contribution Support Thread

    I've read through all 22 pages of this thread but I'm still confused if BT can do the following:

    TOP LEVEL CAT
    |
    SUB CAT1
    |
    Product1
    Product2
    Product3


    Buy at least one of every item in SUB CAT1 and get a 10% discount on your order total...

    I don't want it to mix 'n match between sub categories...

    To give you a better idea (as I am pants at explaining these things) - Sub Cat1 will contain approx 6 products in a design, if the customer chooses to order every product in this design then they get a 10% discount, there are several designs in several sub cats.

    Thanks!

  5. #215
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,314
    Plugin Contributions
    125

    Default Re: Better Together Contribution Support Thread

    No - this is not what Better Together does. Better Together is "Buy A, get B at a discount."
    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. #216
    Join Date
    Apr 2005
    Posts
    298
    Plugin Contributions
    0

    help question Re: Better Together Contribution Support Thread

    Just a question on if this can be done. Can there be an image of the product if your doing product to product instead not to a category.

    Lets say buy product 1 and get product 2 at 50% off. where there would be an image of product 2. instead of the customer having to click on the link for product 2 just to see what it is. It would already have the image there, and if they want to buy it they can click the image or the link.

    Do you think this would sell other products better if it was this way. This way your saving the customer extra clicking. because if it is something they do not want now they have to click back to the product they do want.

    Can this be done? If so how do i do it?
    [FONT=Comic Sans MS]Don Scott
    http://dealz-r-us.com
    [/FONT]

  7. #217
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,314
    Plugin Contributions
    125

    Default Re: Better Together Contribution Support Thread

    This is the next item on the Better Together roadmap. Stay tuned.
    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. #218
    Join Date
    Jan 2006
    Location
    Downunder - QLD - Gold Coast
    Posts
    964
    Plugin Contributions
    0

    Default Missing includes/modules/order_total/ot_better_together.php

    Hi I have just received my zip files but I can not find where on earth you have hidden the includes/modules/order_total/ot_better_together.php . It is not in my zipped version I have received. I need it asap please ...

    Thanks you

    PS. I have emailed you direct as well just in case
    Downunder QLD

  9. #219
    Join Date
    Jan 2006
    Location
    Downunder - QLD - Gold Coast
    Posts
    964
    Plugin Contributions
    0

    Default Re: Better Together Contribution Support Thread

    Quote Originally Posted by swguy View Post
    I have updated the help on my home page to answer this question more clearly.

    Thanks,
    Scott

    I did have look but all I need to know if this is correct. I have the admin mod. So I need to insert this bit -

    if (!IS_ADMIN_FLAG) {
    require(DIR_WS_MODULES . 'better_together_admin.php');
    }




    Code:
         function setup() {
             // Add all linkages here
             // Some examples are provided: 
    /*
             $this->add_cat_to_prod(4, 83, "%", 100); 
    
             // Buy product 83, get product 53 at 50% off 
             $this->add_prod_to_prod(83, 53, "%", 50); 
    
             // Buy product 83, get one free 
             $this->add_prod_to_prod(83, 83, "%", 100); 
    
             // Buy product 83, get an item from category 14 free 
             $this->add_prod_to_cat(83, 14, "%", 100); 
    
             // Buy an item from category 21, get an item from category 14 free
             $this->add_cat_to_cat(21, 14, "%", 100); 
    
             // Buy item 12, get a second one free.
             $this->add_twoforone_prod(12);
    
             // Buy any item from category 10, get a second identical one free
             $this->add_twoforone_cat(10);
    
             // $this->add_twoforone_prod(17);
             $this->add_prod_to_prod(26, 27, "%", 100); 
             $this->add_prod_to_prod(83, 15, "%", 50); 
             $this->add_prod_to_prod(83, 20, "%", 25); 
             $this->add_cat_to_cat(14, 14, "%", 100); 
             $this->add_prod_to_prod(3, 25, "%", 50); 
    */
    
    /* Is this correct where it is below the line ?? */
    
             if (!IS_ADMIN_FLAG) { 
                require(DIR_WS_MODULES . 'better_together_admin.php'); 
             }
        }
    
      }
    ?>
    Downunder QLD

  10. #220
    Join Date
    Jan 2006
    Location
    Downunder - QLD - Gold Coast
    Posts
    964
    Plugin Contributions
    0

    Default Re: Better Together Contribution Support Thread

    Mine isn't working. Can anyone please offer a helping hand?

    I am using Zenrt 1.3.8a with Better Together Contribution + Better Together Admin

    So I don't need to (want to) enter manual discounts and hard code the files. Therefore as per instruction, I have inserted the extra code to my tpl_product_info_display.php in my own template folder. I have also entered the code into includes/modules/order_total/ot_better_together.php.

    I then have created the discount product > Product at 15%

    (2) Buy: Jojoba Oil 25/50/100ml (PROD 80) Get: Midgie/Mossie Bite Balm 125/250ml (PROD 77) Discount: 15%

    Problem I can not see the like in the demo any of this type of text. What is missing? I have upload all the files.
    ------------------------------------------------------------------------------------
    Better Together Discounts
    Buy this item, get a Die Hard With A Vengeance Linked at 50% off
    ------------------------------------------------------------------------------------



    4. Edit the file
    includes/modules/order_total/ot_better_together.php
    and in the setup() function at the bottom of the file, add the lines:

    if (!IS_ADMIN_FLAG) {
    require(DIR_WS_MODULES . 'better_together_admin.php');
    }



    6. Customize the tpl_product_info_display.php file to advertise
    your discounts. Put the file
    includes/templates/template_default/templates/tpl_product_info_display.php
    into includes/templates/<Your Template>/templates, and be sure
    you have installed tpl_better_together_marketing.php in this
    same directory. Then add this block of code to the
    tpl_product_info_display.php file

    <?php
    require($template->get_template_dir('/tpl_better_together_marketing.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_better_together_marketing.php');
    ?>


    The placement of this code is a matter of personal preference.
    Try placing it below the product description (line 87 in
    tpl_product_info_display.php in 1.3.7), and adjust to your taste.
    Downunder QLD

 

 
Page 22 of 70 FirstFirst ... 12202122232432 ... 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

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR