Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 4 of 4

Thread: Changing recurring order price

  1. #1
    jdudley is offline Member
    Join Date
    Oct 2007
    Posts
    54

    Default Changing recurring order price

    I am using 7.0.2.5 SP1 and I need to change the price of all recurring orders to 9.95 is there a simple SQL query I can use to do this?


    Thanks

  2. #2
    Jao is offline Senior Member
    Join Date
    Oct 2008
    Posts
    1,132

    Default

    If what you mean is to bulk edit the price of all products which their IsRecurring field were set to yes/true, then this could be done by executing this query:

    Code:
    update ProductVariant set Price = 9.95 where IsRecurring = 1
    But if it something like overriding the order record, as a PCI compliant software, we do not recommend such action esp. to captured one.

  3. #3
    jdudley is offline Member
    Join Date
    Oct 2007
    Posts
    54

    Default

    Sorry should have specified this is for people who have already purchased the recurring product. I have traced some of the code and I think i would change it in the Shoppingcart table. I just want to make sure this would do the trick.

  4. #4
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    Yep. That's where the recurring shipments were stored from, editing the price of the item there should do the trick, but you should be careful in doing that. Please have a full backup of the DB first before doing any change.