Page 238 of 248 FirstFirst ... 138188228236237238239240 ... LastLast
Results 2,371 to 2,380 of 2475
  1. #2371
    Join Date
    Oct 2008
    Posts
    591
    Plugin Contributions
    0

    Default Re: RewardPoints class not found

    If i try install for 1.3.9h have problem ? It's work well ?

  2. #2372
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: RewardPoints class not found

    Quote Originally Posted by southshorepizza View Post
    The following file is located there. ...
    I would double check all the paths in both "configure.php" files... If these are off in any way, Zen Cart will report errors loading files during the auto_load sequence...

    If you are using a web based "file manager" to upload files, I would trying to upload using FTP software on your computer (and making sure it sends php and other text files as type TEXT). Doing so ensures line endings are converted (apple, windows, and unix use different line endings)... Probably not the problem, but just something one can also check...
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

  3. #2373
    Join Date
    Oct 2008
    Posts
    591
    Plugin Contributions
    0

    Default Re: RewardPoints class not found

    Quote Originally Posted by dmagic View Post
    If i try install for 1.3.9h have problem ? It's work well ?
    please ...

  4. #2374
    Join Date
    Oct 2008
    Posts
    591
    Plugin Contributions
    0

    Default Re: RewardPoints class not found

    where the code for reward points ? in the tpl_product_info_display.php ver 1.3.9 ? need merge with my tpl_product_info_display.php

  5. #2375
    Join Date
    Aug 2012
    Posts
    17
    Plugin Contributions
    0

    Default Re: RewardPoints class not found

    I've been using this for about 2 years now and it works great!

    Is there any way to have it configured so that if a product is on sale, the customer can't redeem their points on that product? How about if the customer has 5 products in their cart and one of them is on sale and the other 4 aren't, can the redeem be calculated on the 4 that aren't on sale and ignore the one that's on sale?

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

    Default Re: RewardPoints class not found

    No the reward points system will not do what you are asking. It will require rewriting the code. You will have to hire someone to get those extra features.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

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

    Default Re: RewardPoints class not found

    It was never added or updated in zen cart 1.3.9. Look at the tpl_product_info_display.php in zen_1.5.0 and copy this block of code and put it where you want it to show.

    PHP Code:
      <!--bof Product Reward Points block -->
    <h2 id="productRewardPoints" class="productRewardPoints">
    <?php
    /**
     * display the product reward points
     */
       
    include($template->get_template_dir('/tpl_product_reward_points.php',DIR_WS_TEMPLATE$current_page_base,'templates'). '/tpl_product_reward_points.php');
       
    ?>
    </h2>
    <!--eof Product Reward Points block -->
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  8. #2378
    Join Date
    Apr 2010
    Posts
    7
    Plugin Contributions
    0

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

    do you know why it does not work with 1.5.1 in the admin editing orders show 0.00 points but in invoices it show them can any one help-??

  9. #2379
    Join Date
    Jul 2013
    Location
    California
    Posts
    4
    Plugin Contributions
    0

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

    Hello, just wanted to report what i think is a bug.

    The Issue:
    When a sale is active the reward points show properly on product details pages, but incorrectly at checkout and are added with pre sale values.
    The Solution: In catalog/includes/functions/extra_functions/reward_points_functions.php -> function GetProductRewardPoints
    when checking to see if a sale price is active it also stipulates the condition && !$attributes.

    I believe this to be error - the result is that products with attributes do not get rewards points for special pricing. The fix for me is just to remove that condition. now the condition is this...
    PHP Code:
    $special_price=zen_get_products_special_price($products_id);
                
                if(
    REWARD_POINTS_SPECIAL_ADJUST=='1' && $special_price )
                 
    $reward_price=$special_price
    Hopefully this helps someone. I've also made a small hack to make the maximum points per purchase an ultimate maximum if anyone is interested in that, ie customers cannot receive more than 'n' number of points before spending more.

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

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

    Quote Originally Posted by bryan22 View Post
    Hello, just wanted to report what i think is a bug.

    The Issue:
    When a sale is active the reward points show properly on product details pages, but incorrectly at checkout and are added with pre sale values.
    The Solution: In catalog/includes/functions/extra_functions/reward_points_functions.php -> function GetProductRewardPoints
    when checking to see if a sale price is active it also stipulates the condition && !$attributes.

    I believe this to be error - the result is that products with attributes do not get rewards points for special pricing. The fix for me is just to remove that condition. now the condition is this...
    PHP Code:
    $special_price=zen_get_products_special_price($products_id);
                
                if(
    REWARD_POINTS_SPECIAL_ADJUST=='1' && $special_price )
                 
    $reward_price=$special_price
    Hopefully this helps someone. I've also made a small hack to make the maximum points per purchase an ultimate maximum if anyone is interested in that, ie customers cannot receive more than 'n' number of points before spending more.
    You are the first person to ever report a bug in Sales/Specials. I have checked my test site and I don't have the problem you are experiencing neither has anybody else.

    Go back and make sure all the reward points files uploaded correctly. It is something in your installation not in the module.

    Also the hack you are offering makes no sense. Reward points was created to reward customers when they purchase products from your site. Why would you penalize the customer from earning more points just because they don't spend them when you want them to. There is a feature in admin/modules/order total/Reward Points you can set to Automatic. It will select all Reward Points earned by the customer and enter them at checkout. So the hack you have come up with is of no use.
    Last edited by countrycharm; 14 Feb 2014 at 05:19 AM.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

 

 

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