Is there a way to change the name of the word "prefix" as it appears here? Personally I think that 99.9% of my users will have no idea what this means. It should say something like "Choose thread type" or whatever else it is I want to appear there. While I can change the word "prefix" to appear once, I would think you should be able to set the title of that prefix to appear properly any time you have a prefix since it may be different in one forum than another.
Announcement
Collapse
No announcement yet.
Change name of prefix from "prefix" in new thread
Collapse
X
-
Do a search under Languages & Phrases -> Search in Phrases for the word Prefix. Edit the appropriate phrases as needed.Translations provided by Google.
Wayne Luke
The Rabid Badger - a vBulletin Cloud demonstration site.
vBulletin 5 API
-
Originally posted by Wayne Luke View PostDo a search under Languages & Phrases -> Search in Phrases for the word Prefix. Edit the appropriate phrases as needed.
For example:
Place: New York, New Jersey, Maine
Experience: Low, Medium, High
Right now you have
Prefix: (place options)
Experience: (experience options)
I guess this becomes a request. Thanks for the help though.
Comment
-
How is it going to change all occurrences? Don't use the Find and Replace. Use the Find, edit the specific phrases you want to change. It will not change any other phrases.Translations provided by Google.
Wayne Luke
The Rabid Badger - a vBulletin Cloud demonstration site.
vBulletin 5 API
Comment
-
I've created a new thread here. The word "prefix" appears. What if I have 2 different prefixes in two different threads? What VB seems to do is use one variable to say "extra fields attached to a thread." Then all the prefixes appear as they are supposed to in each forum. So for example, let's say I have the "Market" forum and the "Sports" forum. The prefix name in Market will be "I Seek to:" and the options will be "buy, sell, trade." In the Sports forum the prefix name will be "Sport Type" and the options will be "Football, Hockey, Baseball." But the prefix area for the dropdown will say "Prefix" instead of what the prefix is. If I change it to "Fill Out" then those words will be used in both forums instead of using the variable which is the name of the prefix. Does this make sense?
Comment
-
In your case it would require some sort of custom coding. Can probably do a conditional on the $forumid variable.
I came up with:
Code:<vb:if condition="$forumid == '4'"> <label for="prefixfield" class="full">I Seek To:</label> <vb:elseif condition="$forumid == '5'" /> <label for="prefixfield" class="full">Sports Type:</label> <vb:else /> <label for="prefixfield" class="full">{vb:rawphrase prefix}:</label> </vb:if>
Last edited by Wayne Luke; Fri 18 Nov '11, 3:02pm.Translations provided by Google.
Wayne Luke
The Rabid Badger - a vBulletin Cloud demonstration site.
vBulletin 5 API
Comment
Related Topics
Collapse
-
by zelI've a forum that use a lot of prefixes.
When I'm in a channel and I click on a prefix, vB5 searches that prefix on all the channels.
I think that it should filter the topics and not search...-
Channel: vBulletin 5 Suggestions
Wed 9 Oct '13, 6:31am -
Comment