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

Hybrid View

  1. #1
    Join Date
    Apr 2006
    Posts
    413
    Plugin Contributions
    0

    Default Re: Reward Points Module- Live Release now available.

    Quote Originally Posted by hem View Post
    As there is no account to attach the Reward Points to, does it make any difference?

    One of the reasons I didn't install COWOA is because of this. The customer cannot use those points so they shouldn't appear as they will likely expect to be able to use them in the future.

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

    Default Re: Reward Points Module- Live Release now available.

    Quote Originally Posted by jetx View Post
    One of the reasons I didn't install COWOA is because of this. The customer cannot use those points so they shouldn't appear as they will likely expect to be able to use them in the future.
    Would a better idea be to display something like "If you had an account you would have earned X reward points on this purchase". That would encourage more people to create an account with you.
    Andrew

    Andrew Moore
    Omnicia Agile Development
    www.omnicia.com

  3. #3
    Join Date
    Sep 2008
    Posts
    108
    Plugin Contributions
    0

    Default Re: Reward Points Module- Live Release now available.

    Quote Originally Posted by hem View Post
    Would a better idea be to display something like "If you had an account you would have earned X reward points on this purchase". That would encourage more people to create an account with you.
    Yeah, that seems to be the only option.

    But I'm afraid it would have a negative impact, as there's that whole "hahaaaa!" feeling to it. "Look what you didn't get!!" is a bad thing in checkout where the customers need to feel good about their purchase, no?

    Most of my customers are COWOA atm, and although I'd stress this in the login section where the customers choose an account or COWOA, it gets more complicated than it should have been.

  4. #4
    Join Date
    Nov 2009
    Posts
    9
    Plugin Contributions
    0

    Default Re: Reward Points Module- Live Release now available.

    thank you hem
    does this update fix pronlem with paypal??

  5. #5

    Default Re: Reward Points Module- Live Release now available.

    Hi

    Is there a way to display the amount of points on the product page in this format;

    Worth "x amount" Reward Points

    at the moment it is displayed

    "x amount" Reward Points

    Thanks

  6. #6

    Default Re: Reward Points Module- Live Release now available.

    Quote Originally Posted by DarrenQ View Post
    Hi

    Is there a way to display the amount of points on the product page in this format;

    Worth "x amount" Reward Points

    at the moment it is displayed

    "x amount" Reward Points

    Thanks
    So far i have tried changin the tpl_products_reward_points.php code to this;

    Code:
    echo PRODUCT_REWARD_POINT_TAG.' '.$reward_points' 'PRODUCT_REWARD_POINT_TAG_1.;
    and added 'PRODUCT_REWARD_POINT_TAG_ into the reward_points.php in the extra definitions directory.

    But this doesn't seem to work. I just blanks my page. If i remove the last 'PRODUCT_REWARD_POINT_TAG_1.; from the line in tpl it works again. What am i missing?

  7. #7

    Default Re: Reward Points Module- Live Release now available.

    Hi i was wondering if anybody had an answer to this problem.

    I am trying to change the message for reward points shown in the product page. at the moment it says "33 reward points"
    However i would like it to display as "Worth 33 Reward Points"

    How can i move the Number of points?

    So far i have tried changing the tpl_products_reward_points.php code to this;

    Code:
    echo PRODUCT_REWARD_POINT_TAG.' '.$reward_points' 'PRODUCT_REWARD_POINT_TAG_1.;
    and added 'PRODUCT_REWARD_POINT_TAG_1.; into the reward_points.php in the extra definitions directory.

    But this doesn't seem to work. I just blanks my page. If i remove the last 'PRODUCT_REWARD_POINT_TAG_1.; from the line in tpl it works again. What am i missing?

  8. #8
    Join Date
    Sep 2008
    Posts
    108
    Plugin Contributions
    0

    Default Re: Reward Points Module- Live Release now available.

    Quote Originally Posted by hem View Post
    Would a better idea be to display something like "If you had an account you would have earned X reward points on this purchase". That would encourage more people to create an account with you.
    How about removing the reference to the bonus points from order total alltogether, would that work..? The customer would see the points in the sidebar box when logged in... And then maybe just have general info on reward points on main page or on page 4 or something.

  9. #9

    Default Re: Reward Points Module- Live Release now available.

    If anyone is wanting to display a different message for COWOA custmers, here's how I did it...as for having a negative impact, I haven't noticed.
    In fact, I have had customers sign up for a full account and ask if they can have their points from their COWOA order, which I'm always glad to do!
    The good thing about this mod is the points do get stored against the COWOA order so you can see how many points to transfer across to the full account.

    Add the following defines to file includes/languages/english/modules/order_total/ot_reward_points_display.php
    Code:
    define('MODULE_ORDER_TOTAL_REWARD_POINTS_DISPLAY_COWOA_TITLE', 'With a full account, you could have earned');
    define('MODULE_ORDER_TOTAL_REWARD_POINTS_DISPLAY_COWOA_TAG', 'points!');
    define('FONT_RED','<font color="red">');
    define('UNFONT','</font>');
    Add the code below shown in red to function process() in file includes/modules/order_total/ot_reward_points_display.php
    Code:
        function process() 
    	{
    		global $order;
    
    		$reward_points=GetRewardPoints($order->products);
    		
    		$GlobalRewardPointRatio=GetGlobalRewardPointRatio();
    		$AdjustValue=GetRewardPointAdvancedCalculateValue();
    		$reward_points+=$AdjustValue*$GlobalRewardPointRatio;
    		
    		if(isset($_SESSION['redeem_value']))
    		{
    			/*
    			$redeem_ratio=GetRedeemRatio($_SESSION['customer_id']);
    			$reward_points=$reward_points/$redeem_ratio;
    			$reward_points=$reward_points-$_SESSION['redeem_value'];
    			$reward_points=$reward_points*$redeem_ratio;
    			*/
    			$reward_points=$reward_points-($GlobalRewardPointRatio*$_SESSION['redeem_value']);
    		}
    
    		if($reward_points<0)
    		 $reward_points=0;
    		
    		$reward_points=zen_round($reward_points,0);
    		$_SESSION['REWARD_POINTS_EARNED']=$reward_points;
    		
    		if ($_SESSION['COWOA']) {
    		 $this->output[] = array('title' => FONT_RED . MODULE_ORDER_TOTAL_REWARD_POINTS_DISPLAY_COWOA_TITLE . '&nbsp;' . $reward_points . '&nbsp;' . MODULE_ORDER_TOTAL_REWARD_POINTS_DISPLAY_COWOA_TAG . UNFONT,
                                   'text' => '',
                                   'value' => 0);
    		} else {
    		 $this->output[] = array('title' => $this->title . ':',
                                   'text' => $reward_points,
                                   'value' => 0);
    		}
        }

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

    Default Re: Reward Points Module- Live Release now available.

    Quote Originally Posted by damiantaylor View Post
    If anyone is wanting to display a different message for COWOA custmers, here's how I did it...as for having a negative impact, I haven't noticed.
    In fact, I have had customers sign up for a full account and ask if they can have their points from their COWOA order, which I'm always glad to do!
    The good thing about this mod is the points do get stored against the COWOA order so you can see how many points to transfer across to the full account.
    Nice one Damian- Do you mind if I include that in the mod as a supplemental addon?
    Andrew

    Andrew Moore
    Omnicia Agile Development
    www.omnicia.com

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v139h Reward Points module display order totals including reward points
    By irsarahbean in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 23 Jun 2013, 01:19 AM
  2. Reward points module : 0 points earned
    By jonnyboy22 in forum Addon Payment Modules
    Replies: 5
    Last Post: 5 Jun 2012, 09:52 AM
  3. Reward Points module- points not calculated correctly
    By cpoet in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 9 Sep 2010, 05:02 PM
  4. Reward Points Module - Hide message when 0 points offered
    By expresso in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 11 Dec 2008, 06:58 PM
  5. Experimental Reward Points Module
    By precursor999 in forum Addon Payment Modules
    Replies: 7
    Last Post: 2 Apr 2007, 09:32 AM

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