• REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

Display showcase in a certain node/forum.

fatih

Member
SC Premium
Hi,

I would like to add showcase node list in a certain node/forum in forum list.

In node_category_level_1 template...

Code:
<xen:if is="{$category.node_id} == 40">
    <xen:include template="nflj_showcase_node_list" />
</xen:if>

40 is a category id but thats not working into/above or below category :/

Is there any function to do this? I don't want display showcase below or above node list. I only would like to add them into ceratain x node/category in forum list.

Thanks.
 
The Showcase Data required for the nflj_showcase_node_list template is exposed to the Forum Controller and then a TM checks for that Data, passes that Data to the template and adds it to Forum home (either above or below) the Forum list.

What you are wanting to do can not be done the way you are trying (via a template edit). What you want to do would require extensive PHP coding (you'd need to extend the process that creates the Node List).
 
Back
Top