Page 210 of 248 FirstFirst ... 110160200208209210211212220 ... LastLast
Results 2,091 to 2,100 of 2475
  1. #2091
    Join Date
    Apr 2012
    Posts
    24
    Plugin Contributions
    0

    Default Re: Link in heading

    Quote Originally Posted by countrycharm View Post
    You need to create a folder within the extra_definitions/ folder named theme185 and put the files in there. Any time you install a module and you see a custom folder, a your_template folder change the name to whatever your theme folder is named. Same with the admin folder.
    Again thank you for taking the time to help me. It is very much appreciated

  2. #2092
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Link in heading

    Quote Originally Posted by memorydave View Post
    Again thank you for taking the time to help me. It is very much appreciated
    Your very welcome. I assume that fixed it for you. You didn't mention if it did. If it did just say so, so the next time someone else has this same problem they will know what to do.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  3. #2093
    Join Date
    Jul 2012
    Posts
    2
    Plugin Contributions
    0

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

    hi how do i get my reward points to not round up if anything i need to round down to the nearest pound.
    we are giving 0.02p for every point earned, £1 = 1 point.

  4. #2094
    Join Date
    Dec 2008
    Location
    San Fran
    Posts
    382
    Plugin Contributions
    0

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

    I think my question may have been overlooked.

    I'd like to know if there's a way to exclude group discount customers from using their reward points, or disabling reward points for these customers completely. I would appreciate any help with this if possible.

  5. #2095
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

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

    Quote Originally Posted by cli12 View Post
    hi how do i get my reward points to not round up if anything i need to round down to the nearest pound.
    we are giving 0.02p for every point earned, £1 = 1 point.
    Go to admin/configurations/Reward Points config/ Reward Point Rounding and change the value from 0.0 to 0.75 and click update.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  6. #2096
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

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

    Quote Originally Posted by swamyg1 View Post
    I think my question may have been overlooked.

    I'd like to know if there's a way to exclude group discount customers from using their reward points, or disabling reward points for these customers completely. I would appreciate any help with this if possible.
    If you would look back one page you will see that I did indeed answer your question..
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  7. #2097
    Join Date
    Dec 2007
    Posts
    12
    Plugin Contributions
    0

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

    to get the points to show up as just a number instead of $400.00 , i used the following code edit in super_orders.php

    change:
    Code:
    <?php 
    	for ($i = 0, $n = sizeof($order->totals); $i < $n; $i++) {
    	  echo ' <tr>' . "\n" .
    ' <td align="right" class="'. str_replace('_', '-', $order->totals[$i]['class']) . '-Text">' . $order->totals[$i]['title'] . '</td>' . "\n" .
    ' <td align="right" class="'. str_replace('_', '-', $order->totals[$i]['class']) . '-Amount">' . $order->totals[$i]['text'] . '</td>' . "\n" .
    ' </tr>' . "\n";
    	}
    to:
    Code:
    <?php 
    	for ($i = 0, $n = sizeof($order->totals); $i < $n; $i++) {
    		if ($order->totals[$i]['class'] == 'ot_reward_points_display') {
            	$display_title = $order->totals[$i]['title'];
    		$display_text = substr(ltrim($order->totals[$i]['text'],"$"),0,-3);
          }
          else {
                    $display_title = $order->totals[$i]['title'];
    		$display_text = $order->totals[$i]['text'];
          }		
    		
    echo ' <tr>' . "\n" .
    ' <td align="right" class="'. str_replace('_', '-', $order->totals[$i]['class']) . '-Text">' . $display_title . '</td>' . "\n" .
    ' <td align="right" class="'. str_replace('_', '-', $order->totals[$i]['class']) . '-Amount">' . $display_text . '</td>' . "\n" .
    ' </tr>' . "\n";
    	}
    One issue I still have though: when I 'Edit Order Totals' and change the Reward Points Earned, it changes in Super Orders but the actual amount awarded in RPM doesn't change. Any ideas?

  8. #2098
    Join Date
    Dec 2007
    Posts
    12
    Plugin Contributions
    0

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

    I also have Super Orders and Edit Orders installed, and wanted the Reward Points to transfer from Pending to Earned when the order is paid (Complete). I don't use batch updating, so my workaround is just when the order is updated in Super Orders, check the status and run the appropriate Reward Points function.

    In super_order.php, under case 'update_order': , after this:
    Code:
    // OK, we have our Customer Notified Status Number, now update the Order Status History Table       
              update_status($oID, $status, $customer_notified, $comments);
    // Is the Customer Notified Status Number a 1, then send the customer and E-Mail with the status update.          
              if ($customer_notified == '1') {
                email_latest_status($oID);
              }
    I added this:
    Code:
    if(($check_status->fields['orders_status'] < 5 && $status == 5)){
              //if previous status was Pending, Shipped, or Returned AND new status is Complete/Paid
              TransferCustomerPointsFromPending($oID);
              $messageStack->add_session('Pending points transferred for Order ' . $oID , 'success');
    }
    if(($check_status->fields['orders_status'] == 5 && $status < 5)){
    	  //if previous status was Complete Paid AND new status is Pending, Shipped, or Returned
    	  //take back the points if somehow they un-pay 
    	  TransferCustomerPointsToPending($oID);
    	  $messageStack->add_session('Earned points transferred back to Pending for Order ' . $oID , 'success');
    }

  9. #2099
    Join Date
    Dec 2007
    Posts
    12
    Plugin Contributions
    0

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

    Does anyone have a report already written to show Points Redeemed per customer over time? (Just looking for a way to track how much $ we're "giving away".)

    Thanks all in advance!

  10. #2100
    Join Date
    Jan 2012
    Posts
    89
    Plugin Contributions
    0

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

    Could someone try to answer the question below please, I already posted it few weeks ago with no response.



    I would appreciate if someone could clarify this feature:

    Delete Old Reward Transactions Period
    Set the age (in days) to keep the reward point transactions. Outstanding reward points pending after this period will be lost. Set to 0 to keep all transactions.

    Is this mean that any points that are earned will not be deleted no matter what? I setup this module using Sunrise Period of 1 so pending points become earned the next day but I like these earned points to be deleted after 30 days but looks like the system doesn't delete earned points?

 

 

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

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