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 3 of 3

Thread: Adding new configs

  1. #1
    sam.bengtson is offline Member
    Join Date
    Jan 2011
    Posts
    64

    Default Adding new configs

    Ok guys I got a slight problem. Originally we were not going to implement a wishlist on our site. Now we have changed our mind but somebody deleted the ShowWishButton app config. Great. Can anybody walk me through the steps in order to add this back into the back office? Thanks

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

    Default

    Sure. Simply run the query below against you DB.
    Code:
    INSERT [dbo].AppConfig(SuperOnly,Name,GroupName,Description,ConfigValue) values(1,'ShowWishButtons','SITEDISPLAY','If false, the add to wish list buttons will not appear on the Product pages','true');
    Or, if you do not have access to your sql server, use the following values:

    Name: ShowWishButtons
    Description: If False, the add to wish list buttons will not appear on the product pages
    configvalue: true
    Groupname: SITEDISPLAY

  3. #3
    sam.bengtson is offline Member
    Join Date
    Jan 2011
    Posts
    64

    Default Thanks for the reply

    Great Thanks!