Hi Asif, > > 1. I added a text editor so that admin users can easily edit the site > index page text. I am storing this in a database with all HTML > formatting information e.g. <ol> <li> etc etc. The problem is that > even when the text has proper HTML tags, they do not show up when the > text is displayed on the home page. The text display is okey e.g. > there are no markups , just that a lot of style information is lost. I > guess this might be due to CSS that ships with the site and may be I > have to add specific styles for elements such as ol, ul , h4 . > > That's probably correct: CE has its own default styes for things like lists and headings, so you'll have to account for those (you might try wrapping all user-generating markup in a class, and then using your stylesheet to clear all CE styles within that class).
> 2. When a user deletes his account, the entries in the acitivities > table are not deleted. > > Hmm... can you provide a test script reproducing this? The activity_tracker plugin has code to ensure that deleted users' activities are also deleted: http://github.com/bborn/communityengine/blob/master/plugins/activity_tracker/lib/activity_tracker.rb#L49 > 3. Is there any database script that could load various metro areas ? > or do I have to go through that process myself. > Nope, but you can easily write a migration to load metro areas (just look at 016_load_metro_areas.rb for inspiration). Thanks, Bruno Bornsztein Curbly, LLC --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CommunityEngine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/communityengine?hl=en -~----------~----~----~----~------~----~------~--~---
