• 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.

Fixed Thread Prefix setting not saving

Status
Not open for further replies.

C.Birch

Member
AMS Premium
SC Premium
UBS Premium
Hi,

when i try to add a prefix setting for the auto forum threads, they no longer save the setting with the latest update.

Below is a video of what happens.

 
Ah, nice catch ;) This is fixed....

if you want to manually fix it:

edit ADMIN template: nflj_showcase_category_edit (Admin Templates require debug mode ON and are located here: Admin CP >> Development >> Admin Templates

find:

HTML:
                <div id="PrefixContainer">
                    <xen:selectunit name="thread_prefix_id" value="{$category.prefix_id}" label="{xen:phrase nflj_showcase_add_prefix_to_thread}:"
                        inputclass="TitlePrefix"
                        data-container="#PrefixContainer"
                        data-textbox="#ctrl_title_template"
                        data-nodecontrol="#ctrl_node_id"
                        data-prefixurl="{xen:adminlink forums/prefixes}">
                        <xen:option value="0" label="({xen:phrase no_prefix})" data-css="" />
                        <xen:options source="{$prefixes}" />
                        <xen:explain>{xen:phrase nflj_showcase_add_prefix_to_thread_explain}</xen:explain>
                    </xen:selectunit>
                </div>

replace with this:

HTML:
                <div id="PrefixContainer">
                    <xen:selectunit name="thread_prefix_id" value="{$category.thread_prefix_id}" label="{xen:phrase nflj_showcase_add_prefix_to_thread}:"
                        inputclass="TitlePrefix"
                        data-container="#PrefixContainer"
                        data-textbox="#ctrl_title_template"
                        data-nodecontrol="#ctrl_node_id"
                        data-prefixurl="{xen:adminlink forums/prefixes}">
                        <xen:option value="0" label="({xen:phrase no_prefix})" data-css="" />
                        <xen:options source="{$threadPrefixes}" />
                        <xen:explain>{xen:phrase nflj_showcase_add_prefix_to_thread_explain}</xen:explain>
                    </xen:selectunit>
                </div>
 
Status
Not open for further replies.
Back
Top