XF 2.1 How to remove the page title from the "home" page

ScrapDog

Member
How can you remove the page title from the "home" page, but let the titles from the nodes as they are so you can see them.

sincerely,

ScrapDog
 
Find the whats_new_posts template, and remove this bit of code:


HTML:
               <xf:if is="$xf.visitor.user_id AND !$activityBarShown AND $thread.last_post_date < $xf.session.previousActivity">
                    <div class="structItem structItem--note">
                        <div class="structItem-cell">{{ phrase('threads_below_not_updated_since_your_last_visit') }}</div>
                    </div>
                    <xf:set var="$activityBarShown" value="{{ true }}" />
                </xf:if>
 
Find the whats_new_posts template, and remove this bit of code:


HTML:
               <xf:if is="$xf.visitor.user_id AND !$activityBarShown AND $thread.last_post_date < $xf.session.previousActivity">
                    <div class="structItem structItem--note">
                        <div class="structItem-cell">{{ phrase('threads_below_not_updated_since_your_last_visit') }}</div>
                    </div>
                    <xf:set var="$activityBarShown" value="{{ true }}" />
                </xf:if>
Thanks, it worked. One question, how do you find the right file or templete?
 
Find the whats_new_posts template, and remove this bit of code:


HTML:
               <xf:if is="$xf.visitor.user_id AND !$activityBarShown AND $thread.last_post_date < $xf.session.previousActivity">
                    <div class="structItem structItem--note">
                        <div class="structItem-cell">{{ phrase('threads_below_not_updated_since_your_last_visit') }}</div>
                    </div>
                    <xf:set var="$activityBarShown" value="{{ true }}" />
                </xf:if>
You should review the link to your donation paypal, the link does not work
 
Top Bottom