1
Using: XOOPS 2.3.3; newbb 3.08
I'm in the process of customizing my site with all new templates. I cloned the default template set, set the new template set to display, and checked yes on "show changes in templates." I've had no problem changing other templates around the site, or in changing the newbb_index or newbb_viewforum templates... but I am entirely unable to change newbb_thread and newbb_item. None of the changes I make are displaying on the live site.
In scanning through the templates for flat and threaded display, I noticed these files are being imported in:
Quote:
<{foreach item=topic_post from=$topic_posts}>
<{if $viewmode_compact}>
<{include file="$newbb_template_path/newbb_item.html" topic_post=$topic_post}>
<{else}>
<{*include file="db:newbb_thread.html" topic_post=$topic_post mode=$mode*}>
<{include file="$newbb_template_path/newbb_thread.html" topic_post=$topic_post mode=$mode}>
<{/if}>
<{/foreach}>
My first thought was that these lines might be pulling from the default templates, so I experimented with replacing the calls to newbb_thread with the full URL to the templates I wanted it to read... which resulted in just a blank page. Apparently it didn't want to import the file that way.
Since I know absolutely nothing about PHP, my question is: are these commands pulling from the default template instead of my cloned one? And if so, how would I reroute them to the correct files?