SUGGETION: Focus on design and UI of the nopcommerce.com website and nopcommerce itself

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
9 年 前
eadameg wrote:
It is a great theme; clean, elegant and eassy to customize. Does it have new settings from administration?

Thanks, Eduardo! You can find a list of lot of all the new settings in the upgrade.sql file:
--update DefaultClean theme settings. You should remove this code if you're going to use the old theme
IF EXISTS (SELECT 1 FROM [Setting] WHERE [name] = N'storeinformationsettings.defaultstoretheme' and [Value] = N'DefaultClean')
BEGIN
  UPDATE [Setting]
  SET [Value] = N'290'
  WHERE [Name] = 'mediasettings.productthumbpicturesize'
  
  UPDATE [Setting]
  SET [Value] = N'290'
  WHERE [Name] = 'mediasettings.associatedproductpicturesize'
  
  UPDATE [Setting]
  SET [Value] = N'550'
  WHERE [Name] = 'mediasettings.productdetailspicturesize'
  
  UPDATE [Setting]
  SET [Value] = N'200'
  WHERE [Name] = 'mediasettings.categorythumbpicturesize'
    
  UPDATE [Setting]
  SET [Value] = N'200'
  WHERE [Name] = 'mediasettings.manufacturerthumbpicturesize'
    
  UPDATE [Setting]
  SET [Value] = N'4'
  WHERE [Name] = 'catalogsettings.numberofbestsellersonhomepage'
    
  UPDATE [Setting]
  SET [Value] = N'true'
  WHERE [Name] = 'newssettings.shownewsonmainpage'
  
  UPDATE [Setting]
  SET [Value] = N'120'
  WHERE [Name] = 'mediasettings.avatarpicturesize'
  
  UPDATE [Setting]
  SET [Value] = N'4'
  WHERE [Name] = 'shoppingcartsettings.crosssellsnumber'
  
  UPDATE [Setting]
  SET [Value] = N'6, 3, 9, 18'
  WHERE [Name] = 'catalogsettings.searchpagepagesizeoptions'
  
  UPDATE [Setting]
  SET [Value] = N'6, 3, 9'
  WHERE [Name] = 'catalogsettings.defaultcategorypagesizeoptions'
  
  UPDATE [Setting]
  SET [Value] = N'6, 3, 9'
  WHERE [Name] = 'catalogsettings.defaultmanufacturerpagesizeoptions'
  
  UPDATE [Setting]
  SET [Value] = N'6, 3, 9, 18'
  WHERE [Name] = 'catalogsettings.productsbytagpagesizeoptions'
  
  UPDATE [Setting]
  SET [Value] = N'6, 3, 9'
  WHERE [Name] = 'vendorsettings.defaultvendorpagesizeoptions'
END
GO
9 年 前
Thank you. I explained myself bad. I want to ask if there are new setting options such as for colors, fonts, uploading, logo, ...
9 年 前
eadameg wrote:
Thank you. I explained myself bad. I want to ask if there are new setting options such as for colors, fonts, uploading, logo, ...

There are no settings related to the new theme. But you can find a list of all other settings in the \upgradescripts\3.50-the next version\upgrade.sql file. Just search by "IF NOT EXISTS (SELECT 1 FROM [Setting] WHERE [name]"
9 年 前
Thank you
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.