Page 30 of 169 FirstFirst ... 2028293031324080130 ... LastLast
Results 291 to 300 of 1681
  1. #291
    Join Date
    Mar 2005
    Posts
    24
    Plugin Contributions
    0

    Default Re: Dynamic Price Updater

    I have a problem...I have set up price on my store with 3 decimal places, decimal point "," thousands point "." because some of the products we offer have prices in this way.

    Price on product info page when using dynamic price updater appears like this "1.960,00 €" instead of "196,00 €" but on shopping info page appears in correct way "196,00 €"

    Product base price on attributes for Ø 5 mm. is 0,0140 € plus one time charge 45,00 €
    for Ø 6 mm. is 0,0162 plus one time charge 45,00 €
    Minimum quantity required for purchase this product is 14.000 units. so 0,0140€ x 14.000= 196,00 €

  2. #292
    Join Date
    Jul 2005
    Location
    Wales, UK
    Posts
    382
    Plugin Contributions
    1

    Default Re: Dynamic Price Updater

    Hi

    For this you might want to try web28's slightly upgraded version of my script if you haven't already

    I really must get round to conversing properly with web28 to integrate the changes into the main Updater... As always time is the issue! (my campaign for a 32 hour day and 9 day week isn't going as well as I'd hoped)

    If that doesn't work let me know as I know what the issue is and should be able to fix it with a couple of lines

    Dan

  3. #293
    Join Date
    Mar 2009
    Posts
    26
    Plugin Contributions
    0

    Default Re: Dynamic Price Updater

    I installed the DynamicPriceUpdater_multilangual files, and it appeared to be working. I am quite inexperienced with Zen-Cart so I might have done something wrong. I am using Zen Cart v1.3.8a/v1.3.8.

    What happens is that I get a blank page when I click the "add this to my cart" on the product page. The product is added to the Shopping Cart, but to get there I have to click the link in the side box

  4. #294
    Join Date
    Mar 2009
    Posts
    26
    Plugin Contributions
    0

    Default Re: Dynamic Price Updater

    Quote Originally Posted by Clever Trevor View Post
    I installed the DynamicPriceUpdater_multilangual files, and it appeared to be working. I am quite inexperienced with Zen-Cart so I might have done something wrong. I am using Zen Cart v1.3.8a/v1.3.8.

    What happens is that I get a blank page when I click the "add this to my cart" on the product page. The product is added to the Shopping Cart, but to get there I have to click the link in the side box
    Ok, I figured out how to get the Debug Error Logging working. Here is the php error I get, hope someone can help me out:

    PHP Warning: Cannot modify header information - headers already sent by (output started at /home/username/public_html/cart/includes/languages/english/extra_definitions/rl.vat_info.php:29) in /home/username/public_html/cart/includes/functions/functions_general.php on line 44

  5. #295
    Join Date
    Jul 2005
    Location
    Wales, UK
    Posts
    382
    Plugin Contributions
    1

    Default Re: Dynamic Price Updater

    Hi

    Unfortunately that looks like an error in another module; one with which I'm not familiar... I am, however, familiar with the error: PHP is telling you that some output (which may be as little as a single space) is being sent to the browser before the headers of script are finished (for instance setting a cookie)

    If you are conversant with PHP you could check out the offending file to see if there are any spaces after the trailing ?> (or, preferrably, you could remove the ?> altogether)

    If this doesn't work or you're not able to find the issue you could try opening your root index.php file and add ob_start() at the very beginning and ob_flush() at the very end... That's *not* a permanent solution as all it's doing is papering over the cracks really

    If you have no luck let us know and maybe we can help get to the bottom of your issue

    Dan

  6. #296
    Join Date
    Mar 2009
    Posts
    26
    Plugin Contributions
    0

    Default Re: Dynamic Price Updater

    Quote Originally Posted by Chrome View Post
    Hi

    Unfortunately that looks like an error in another module; one with which I'm not familiar... I am, however, familiar with the error: PHP is telling you that some output (which may be as little as a single space) is being sent to the browser before the headers of script are finished (for instance setting a cookie)

    If you are conversant with PHP you could check out the offending file to see if there are any spaces after the trailing ?> (or, preferrably, you could remove the ?> altogether)

    If this doesn't work or you're not able to find the issue you could try opening your root index.php file and add ob_start() at the very beginning and ob_flush() at the very end... That's *not* a permanent solution as all it's doing is papering over the cracks really

    If you have no luck let us know and maybe we can help get to the bottom of your issue

    Dan
    Thanks. I solved the problem, it was caused by a blank line in the rl.vat_info.php file.

  7. #297
    Join Date
    Sep 2008
    Location
    Sweden
    Posts
    94
    Plugin Contributions
    4

    Default Re: Dynamic Price Updater

    I need to know if this is on my shop only or a wrong in the module.

    If I bought 100 of an item and use discount -$2 from origin price 100.
    then I bought 1 with some change to attribute and it get still the discount price.
    $98

  8. #298
    Join Date
    Sep 2008
    Location
    Sweden
    Posts
    94
    Plugin Contributions
    4

    Default Re: Dynamic Price Updater

    Fixed. missunderstod the setup for the product price

  9. #299
    Join Date
    Apr 2009
    Posts
    84
    Plugin Contributions
    0

    Default Re: Dynamic Price Updater

    I broke it. Well actually it says you broke it Chrome.

    Well, I know what I did, and it's somewhat of a "which feature matters more" moment, unless you can help me fix it.

    The product I've been testing out some stuff on is at: http://www.wholesale4realtors.com/ca...roducts_id=186

    The price updater app was working perfectly until I made a mod to the product option name, extending it to 255 characters to be able to add a mouse-over tooltip and link on some options. I'm fairly sure this change in the option name is giving the updater code the hicup it has now.

    Let me know if you can tell if that is the issue and/or can think of a way to work around it, because you're app is great and I'd rather not choose between the two.
    Brian - Connecticut, US --- Using Zen 1.3.9g - Modified Classic Template
    Currently developing: http://www.printdealz.com
    Other Zen Pages: http://www.wholesale4realtors.com 1.3.8a

  10. #300
    Join Date
    Apr 2009
    Posts
    84
    Plugin Contributions
    0

    Default Re: Dynamic Price Updater

    Fixed with the update for the most part (Thought I already had it). Now I have to figure out why the last option with the radio button isn't adding the $1, but I'm closer than I was...

    Once again, great app, and thanks Web28 for assisting on the updates.

    Quote Originally Posted by web28 View Post
    New multilangual Version

    web28
    Quote Originally Posted by Chrome View Post
    Hi

    For this you might want to try web28's slightly upgraded version of my script if you haven't already

    I really must get round to conversing properly with web28 to integrate the changes into the main Updater... As always time is the issue! (my campaign for a 32 hour day and 9 day week isn't going as well as I'd hoped)

    If that doesn't work let me know as I know what the issue is and should be able to fix it with a couple of lines

    Dan
    Brian - Connecticut, US --- Using Zen 1.3.9g - Modified Classic Template
    Currently developing: http://www.printdealz.com
    Other Zen Pages: http://www.wholesale4realtors.com 1.3.8a

 

 

Similar Threads

  1. v151 Help with dynamic price updater
    By anderson6230 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 23 Jul 2014, 08:52 AM
  2. v139h Dynamic Price Updater 3.0 Help!
    By Newbie 2011 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 12 Mar 2014, 06:46 AM
  3. Dynamic Price Updater Error
    By Inxie in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 26 Oct 2012, 06:19 PM
  4. Alternative to Dynamic Price Updater?
    By thebigkick in forum General Questions
    Replies: 0
    Last Post: 9 Jul 2012, 11:41 PM
  5. Dynamic Price Updater with href
    By maxell6230 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 1 Mar 2012, 12:34 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