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

Hybrid View

  1. #1
    Join Date
    Jul 2007
    Posts
    132
    Plugin Contributions
    0

    Default Re: Reward Point Mod beta now available

    Quote Originally Posted by hem View Post
    Can you mail it to me and I'll give it a look.
    actually, I was just looking at it, and i'm sorry, my custom cart_sidebox is all on the CSS .. so the code is the same as the default one

    basically what I'd liek is to instead of just having

    $content .= '<div class="cartBoxRewardPoints">' . (int)$reward_points . '&nbsp;' . PRODUCT_REWARD_POINT_TAG . '</div>';
    I'd liek the entire info that is available on

    tpl_reward_points (sidebox)

  2. #2
    Join Date
    Sep 2007
    Location
    Dublin, Ireland
    Posts
    1,288
    Plugin Contributions
    8

    Default Re: Reward Point Mod beta now available

    Quote Originally Posted by NullMind View Post
    actually, I was just looking at it, and i'm sorry, my custom cart_sidebox is all on the CSS .. so the code is the same as the default one

    basically what I'd liek is to instead of just having



    I'd liek the entire info that is available on

    tpl_reward_points (sidebox)
    The easiest would be to copy and paste the code from tpl_reward_points into your custom code. The only line you would need to change would be:

    PHP Code:
    $content='<div id="'.str_replace('_''-'$box_id 'Content').'" class="sideBoxContent">'
    add a full stop after '$content' and before the '=' so it reads:

    PHP Code:
    $content.='<div id="'.str_replace('_''-'$box_id 'Content').'" class="sideBoxContent">'
    Andrew

    Andrew Moore
    Omnicia Agile Development
    www.omnicia.com

  3. #3
    Join Date
    Feb 2008
    Location
    West Virginia
    Posts
    137
    Plugin Contributions
    0

    Default Re: Reward Point Mod beta now available

    Looks like the global redeem is working...kind of. Take a look at these two screen shots.




    You can see in the admin pic (2) that the redeem value is $21.00 as it should be. However, when I go to make a purchase, it shows $0.00 on the Payment page for Value Rewards Points (pic 1). So it's showing correctly in the admin, but not on the checkout pages.

    It works fine with the Ty Package tracking mod. No modifications were needed to that mod.

    It does not work with the Better Together mod. I have two different things set up. One is buy one and get the other at 50% off. It's giving full redeem value for both. The other is buy one get another free. It's giving full value for both.

    I have it setup in admin to give 0 for free items and to use discount price and not base.

    It works fine when using Zens built in discount and sales mods, but not the Better Together or the Quantity discount mods.

    Other than that It all appears to work for me. Looking very nice.
    Zen Cart: 1.3.8a
    PHP: 5.2.4
    MySQL: 5.0.45

    Pine Tree Candles

  4. #4
    Join Date
    Jul 2007
    Posts
    132
    Plugin Contributions
    0

    Default Re: Reward Point Mod beta now available

    Andrew

    the update.swl does not work for me

    I initially got

    #1050 - Table 'reward_master' already exists
    so I skip that and now I get

    #1060 - Duplicate column name 'redeem_ratio'
    any ideas ?

  5. #5
    Join Date
    Feb 2008
    Location
    West Virginia
    Posts
    137
    Plugin Contributions
    0

    Default Re: Reward Point Mod beta now available

    NUllMind, if you updating from the last mod he posted to the thread here, then the only thing you need to run is:

    Code:
    RENAME TABLE `reward_point_history` TO `reward_status_track`;
    I don't think he has changed or adding anything else other than that line above from 1.03 to this one. That is all I changed and it's working alright execpt for the couple things I mentioned in my post above. Just remember, that if you use an extention in you database you need to add it to the above statement.

    Mine reads like this:
    Code:
    RENAME TABLE `zen_reward_point_history` TO `zen_reward_status_track`;
    Zen Cart: 1.3.8a
    PHP: 5.2.4
    MySQL: 5.0.45

    Pine Tree Candles

  6. #6
    Join Date
    Sep 2007
    Location
    Dublin, Ireland
    Posts
    1,288
    Plugin Contributions
    8

    Default Re: Reward Point Mod beta now available

    Quote Originally Posted by pinetreecandles View Post
    Looks like the global redeem is working...kind of. Take a look at these two screen shots.




    You can see in the admin pic (2) that the redeem value is $21.00 as it should be. However, when I go to make a purchase, it shows $0.00 on the Payment page for Value Rewards Points (pic 1). So it's showing correctly in the admin, but not on the checkout pages.

    It works fine with the Ty Package tracking mod. No modifications were needed to that mod.

    It does not work with the Better Together mod. I have two different things set up. One is buy one and get the other at 50% off. It's giving full redeem value for both. The other is buy one get another free. It's giving full value for both.

    I have it setup in admin to give 0 for free items and to use discount price and not base.

    It works fine when using Zens built in discount and sales mods, but not the Better Together or the Quantity discount mods.

    Other than that It all appears to work for me. Looking very nice.
    Dammit- the first issue was the Global Redeem problem we had earlier. I have updated this function.

    The Better Together mod seems to run its own set of tables so they would be "invisible" to the Reward Points mod as it only runs with the core ZenCart tables.
    Andrew

    Andrew Moore
    Omnicia Agile Development
    www.omnicia.com

  7. #7
    Join Date
    Feb 2008
    Location
    West Virginia
    Posts
    137
    Plugin Contributions
    0

    Default Re: Reward Point Mod beta now available

    Quote Originally Posted by hem View Post
    The Better Together mod seems to run its own set of tables so they would be "invisible" to the Reward Points mod as it only runs with the core ZenCart tables.
    Yeah I figured it has something to do with having different tables. It's fine for me. I will use what functionality you have put in and come up with a something that will work for me.
    Zen Cart: 1.3.8a
    PHP: 5.2.4
    MySQL: 5.0.45

    Pine Tree Candles

  8. #8
    Join Date
    Sep 2007
    Location
    Dublin, Ireland
    Posts
    1,288
    Plugin Contributions
    8

    Default Re: Reward Point Mod beta now available

    Okay- let's try again (no need to rerun update.sql- just rename reward_point_history to reward_status_track)
    Last edited by hem; 18 Apr 2008 at 01:51 PM.
    Andrew

    Andrew Moore
    Omnicia Agile Development
    www.omnicia.com

  9. #9
    Join Date
    Jul 2007
    Posts
    132
    Plugin Contributions
    0

    Default Re: Reward Point Mod beta now available

    Quote Originally Posted by hem View Post
    Okay- let's try again (no need to rerun update.sql- just rename reward_point_history to reward_status_track)
    You the best mate, it now works with super orders, mass moving of invoices to the rewarded category works !!

  10. #10
    Join Date
    Aug 2006
    Posts
    231
    Plugin Contributions
    0

    Default Re: Reward Point Mod beta now available

    Now all I have left is keeping my fingers crossed that you will be able to do the referral thing soon.

    Once you get that done, my boss would be VERY happy...

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v150 Adding a reward point module/add-on
    By dawneprochilo in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 10 Nov 2013, 05:16 PM
  2. Zen Cart v1.5.0 BETA release now available
    By DrByte in forum Zen Cart Release Announcements
    Replies: 11
    Last Post: 7 Oct 2011, 08:51 PM
  3. bug reported in reward point module
    By smart_pro in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 26 Mar 2009, 10:57 AM
  4. Error after installing reward point module
    By trisha33 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 15 Feb 2009, 11:27 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