Don’t Allow Non-Logged in Members to See Memberlist
Question: How can I keep Guests (non-logged in users) from seeing the member list in the forum?
Answer: You’ll need to make a slight change in your forum code to switch out a line in the logged_out code to reside in the logged_in code:
From the
{if logged_out}
{lang:welcome}
{include:top_bar_spacer}
<a href="{path:login}">{lang:login}</a>
{include:top_bar_spacer}
<a href="{path:register}">{lang:register}</a>
{include:top_bar_spacer}
<a href="{path:memberlist}">{lang:memberlist}</a>
{/if}
Remove the last line in this part of the template, and move it to the next grouping.
NOTE: This article is for EE 1.6.8 only.
Tags: eeforum - member list
EE1.6 Only HowTo Forum
Tell-a-Friend
Simple Search Finding Content
Question: I’ve added some custom fields for my site, but when I search on words that should be searched, I get no matches. Why is that?
Answer: The default Simple Search form defaults to only searching titles, unless you specify differently.
Add the following code snippet to your Simple Search Form:
search_in="everywhere"
HowTo Note to Self
Tell-a-Friend
HowTo Turn off Honoring DST Settings on Entries
Question: How can I turn off DST settings being applied to my entries?
Answer: From the EE 2.01PB control panel, choose Admin > Localization Settings and set the value of Honor the Daylight Saving Time setting associated with each channel entry? to No.
Tags: ee2 - dst
EE2.0 Only HowTo
Tell-a-Friend
HowTo Get Rid of my Publish Page Layout
Question: How can I get rid of the formatting I have set for EE2.x?
Answer: You’ll need to manually truncate the exp_layout_publish table.
Use the following snippet in either EE or using PHPMyAdmin:
TRUNCATE `exp_layout_publish`
Tell-a-Friend
Where can I find Snippets in the EE2 Control Panel?
Question: Where can I find Snippets in the EE2 Control Panel?
Answer: Snippets can be found at:
# CP Home # Design # Template Manager # Snippets
Tags: ee2 - snippets
EE2.0 Only HowTo
Tell-a-Friend
HowTo Set Accessories to not be used
Question: How can I get accessories to not be active if I have errors when accessing the Accessories page?
Answer: You can delete rows from the exp_accessories table. This query will remove all the rows in the table, but not delete any files on the server.
delete from exp_accessories
HowTo Note to Self
Tell-a-Friend
HowTo Replace Underscores with Dashes in url_title
Question: How can I change the url_title to use dashes (-) instead of underscores (_)
Answer: You can perform the following sql query to do this.
UPDATE `exp_weblog_titles` SET `url_title` = REPLACE(`url_title`, '_', '-');
For EE2.x:
UPDATE `exp_channel_titles` SET `url_title` = REPLACE(`url_title`, '_', '-');
NOTE: As with any direct sql manipulation, make sure you’ve backed up the table before attempting this.
HowTo Note to SelfTell-a-Friend
Link to Docs on security in PHP templates
Question: Where can I find out more information about security risks with PHP in templates?
Answer: You can find more info from the following page in the EE 1.x docs: EEDocs: PHP in Templates
Array
Tags: eedocsNote to Self
Tell-a-Friend
HowTo Set the Time Out Limit in EE2.x
Question: Is there a way of setting the time interval for the EE backend when using Sessions or Cookies and Sessions?
Answer: You can change this via Time Interval for Lockout in your Security and Session Preferences
CP Home -> Administration -> Security and Session Preferences
Tags: time out - control panel - ee2EE2.0 Only HowTo
Tell-a-Friend
Creating a New Entry in EE 1.6.8
Just a quick video.
Tags: video - howtoEE1.6 Only HowTo Videos
Tell-a-Friend


