Page 10 of 37 FirstFirst ... 8910111220 ... LastLast
Results 91 to 100 of 362
  1. #91
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    New version now available in the plugins' area Version: 25.d

    1.) Bug in the pagination code in admin-->customers_reward_points.php file - Fixed reset button to properly go back to all customers.
    Thanks to Ajeh
    2.) Updated the _doc folder to reflect these changes.
    3.) Updated the version number from 2.5c to 2.5d.
    Last edited by countrycharm; 5 Jul 2015 at 04:32 PM.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  2. #92
    Join Date
    May 2006
    Location
    Gardiner, Maine
    Posts
    2,296
    Plugin Contributions
    22

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    Small problem that I figured out but will drive folks crazy.

    If you click on the edit button, the entire list of customers display but when you get back to the page the actual customer is on, it's open and editable. If you click on the line/customer name that doesn't happen.

    In addition, the reward points page only shows the what's enabled in admin - changing the number of customers that are supposed to display does not work.

    Thanks for you work on this!!
    The full-time Zen Cart Guru. WizTech4ZC.com

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

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    Quote Originally Posted by delia View Post
    Small problem that I figured out but will drive folks crazy.

    If you click on the edit button, the entire list of customers display but when you get back to the page the actual customer is on, it's open and editable. If you click on the line/customer name that doesn't happen.

    In addition, the reward points page only shows the what's enabled in admin - changing the number of customers that are supposed to display does not work.

    Thanks for you work on this!!

    you click on the edit button, the entire list of customers display but when you get back to the page the actual customer is on, it's open and editable. If you click on the line/customer name that doesn't happen.
    Not quite understanding what you are pointing out here.

    In addition, the reward points page only shows the what's enabled in admin - changing the number of customers that are supposed to display does not work.
    Sure it does...

    If you are talking about showing how many customers to view at one time on the reward points page You can set by using Admin->Configuration->Maximum Values->Maximum Display of Customers on Customers Page.

    I tested it and it works....

    If something is wrong with it, would you mind sharing so everybody else knows what going on and how to fix it, or send it to me and I will add it to the next release...
    Last edited by countrycharm; 7 Jul 2015 at 02:32 AM.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  4. #94
    Join Date
    May 2006
    Location
    Gardiner, Maine
    Posts
    2,296
    Plugin Contributions
    22

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    There are two ways to click on a customer on the rewards page. You can click on the customer's name or any of the text on that line or you can click on the green edit button. If you are on page 2 or more, clicking on the line instead of the green button works fine. If you click on the edit button, the screen refreshes and you go back to page one. When you go back to the page where the customer is, then you see the boxes open for that customer. So if the action is supposed to be the same - change the edit button to match the other.
    button: customers_reward_points.php?id=80&action=edit
    link: ustomers_reward_points.php?page=1&id=80&action=edit

    in the configuration:
    Limit Maximum Customers on Listings
    Set the maximum number of records to appear on each page under Customer Reward Point admininstration page.

    Changing that does not change anything so what you say makes sense - about the maximum numbers. Which means it needs removing?
    The full-time Zen Cart Guru. WizTech4ZC.com

  5. #95
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    From what I can tell on line 325 the code in RED is missing:
    Code:
                      <?php echo '<a href="' . zen_href_link(FILENAME_ADMIN_CUSTOMER_REWARD_POINTS, zen_get_all_get_params(array('id', 'action')) . 'id=' . $customers->fields['customers_id'] . '&action=edit') . '">' . zen_image(DIR_WS_IMAGES . 'icon_edit.gif', ICON_EDIT) . '</a>'; ?>
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  6. #96
    Join Date
    May 2006
    Location
    Gardiner, Maine
    Posts
    2,296
    Plugin Contributions
    22

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    thank ajeh! I knew it was simple. Just didn't take time to look at the code.
    The full-time Zen Cart Guru. WizTech4ZC.com

  7. #97
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    No problem ... glad you caught that as I did not even notice the issue ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  8. #98
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    One other change is for the Update button on line 355:
    Code:
        $contents = array('form' => zen_draw_form('customer_reward_point_admin', FILENAME_ADMIN_CUSTOMER_REWARD_POINTS, zen_get_all_get_params(array('id', 'action')) . 'id='.$current_customer['customers_id'].'&action=update', 'post'));
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  9. #99
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    Another change would be around line 229:
    Code:
      echo '<td class="dataTableRow" width="3%" align="center" onmouseover="rowOverEffect(this);" onmouseout="rowOutEffect(this);" onclick="document.location.href=\''.zen_href_link(FILENAME_ADMIN_CUSTOMER_REWARD_POINTS, zen_get_all_get_params(array('customer_sort_index', 'action', 'id', 'page')) . 'customer_sort_index='.chr(65+$loop)).'\'">'.chr(65+$loop).'</td>';
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  10. #100
    Join Date
    Apr 2015
    Location
    Pennsylvania, USA
    Posts
    21
    Plugin Contributions
    0

    Default Re: Reward Points Full Suite v2.5 (for ZC v1.5x) Support Thread

    I am having an issue with installing the sql patch for this mod. I am getting errors that state:
    Cannot insert configuration_key "" because it already exists

    This is happening on all of the "INSERT INTO configuration" statements. As of now, nothing appears on the "Configuration > Reward Point Configuration" page except the heading. I am running ZC 1.5.4. Any help will be greatly appreciated.

 

 
Page 10 of 37 FirstFirst ... 8910111220 ... LastLast

Similar Threads

  1. First 1.0 Release of Reward Points module [Support Thread]
    By hem in forum All Other Contributions/Addons
    Replies: 38
    Last Post: 4 Apr 2013, 02:34 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