This is the H2
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.
Don't show the MembersSimple 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 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.x control panel, choose Admin > Localization Settings and set the value of Honor the Daylight Saving Time setting associated with each channel entry? to No.
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`
