This is a Hitskin.com skin preview
Install the skin • Return to the skin page
+3
Poser
SLGray
Take Notes
7 posters
Remove Topic Prefixes
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
- Post n°1
Remove Topic Prefixes
Can I please have help removing Global Announcement, Announcement, and Pinned from Topics in a forum? I want them to look like a normal topic except with the special topic icon.
SLGray- Administrator
- Posts : 51561
Reputation : 3524
Language : English
Location : United States
- Post n°2
Re: Remove Topic Prefixes
AP > General > Messages & Emails > Configuration
What happens when you enter
in the boxes for the announcements and sticky?
What happens when you enter
|
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
- Post n°3
Re: Remove Topic Prefixes
It shows as &nsbp
Poser- Helper
- Posts : 413
Reputation : 43
Language : English, Filipino
Location : @ohmpawatt
- Post n°4
Re: Remove Topic Prefixes
Should it be
?
|
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
- Post n°5
Re: Remove Topic Prefixes
Bump.
Van-Helsing- Hyperactive
- Posts : 2431
Reputation : 116
Language : English, Greek
- Post n°6
Re: Remove Topic Prefixes
Hi,
What is your forum url?
What is your forum url?
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
- Post n°7
Re: Remove Topic Prefixes
It is irrelevant but here:
www.forumpromocean.forumotion.com
www.forumpromocean.forumotion.com
Rhino.Freak- Helper
- Posts : 1248
Reputation : 104
Language : English
Location : Mumbai, India
- Post n°8
Re: Remove Topic Prefixes
Tried this?Poser wrote:Should it be?
- Code:
Van-Helsing- Hyperactive
- Posts : 2431
Reputation : 116
Language : English, Greek
- Post n°9
Re: Remove Topic Prefixes
Hello,
I asked for your forum link to check the forum version to adapt the js, now create a new javascript and adjust it in subforums and paste the following code:
In the NEW_VALUE variable you can add your new text, then press submit.
I asked for your forum link to check the forum version to adapt the js, now create a new javascript and adjust it in subforums and paste the following code:
- Code:
$(document).ready(function(){
$('dd.dterm strong:contains("Global announcement:').each(function(){
$(this).replace("Global announcement:","NEW_VALUE");
$(document).ready(function(){
$('dd.dterm strong:contains("Announcement:').each(function(){
$(this).replace("Announcement:","NEW_VALUE");
$(document).ready(function(){
$('dd.dterm strong:contains("Sticky:').each(function(){
$(this).replace("Sticky:","NEW_VALUE");
In the NEW_VALUE variable you can add your new text, then press submit.
SLGray- Administrator
- Posts : 51561
Reputation : 3524
Language : English
Location : United States
- Post n°10
Re: Remove Topic Prefixes
He wants the words removed.Van-Helsing wrote:Hello,
I asked for your forum link to check the forum version to adapt the js, now create a new javascript and adjust it in subforums and paste the following code:
- Code:
$(document).ready(function(){
$('dd.dterm strong:contains("Global announcement:').each(function(){
$(this).replace("Global announcement:","NEW_VALUE");
$(document).ready(function(){
$('dd.dterm strong:contains("Announcement:').each(function(){
$(this).replace("Announcement:","NEW_VALUE");
$(document).ready(function(){
$('dd.dterm strong:contains("Sticky:').each(function(){
$(this).replace("Sticky:","NEW_VALUE");
In the NEW_VALUE variable you can add your new text, then press submit.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Van-Helsing- Hyperactive
- Posts : 2431
Reputation : 116
Language : English, Greek
- Post n°11
Re: Remove Topic Prefixes
Hello SLGray,
in this case he must leaving blank the place of the NEW_VALUE variable like this javascript:
in this case he must leaving blank the place of the NEW_VALUE variable like this javascript:
- Code:
$(document).ready(function(){
$('dd.dterm strong:contains("Global announcement:').each(function(){
$(this).replace("Global announcement:","");
$(document).ready(function(){
$('dd.dterm strong:contains("Announcement:').each(function(){
$(this).replace("Announcement:","");
$(document).ready(function(){
$('dd.dterm strong:contains("Sticky:').each(function(){
$(this).replace("Sticky:","");
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
- Post n°12
Re: Remove Topic Prefixes
Didnt work.
TheCrow- Manager
- Posts : 6916
Reputation : 795
Language : Greek, English
- Post n°13
Re: Remove Topic Prefixes
Aren't there missing someVan-Helsing wrote:Hello SLGray,
in this case he must leaving blank the place of the NEW_VALUE variable like this javascript:
- Code:
$(document).ready(function(){
$('dd.dterm strong:contains("Global announcement:').each(function(){
$(this).replace("Global announcement:","");
$(document).ready(function(){
$('dd.dterm strong:contains("Announcement:').each(function(){
$(this).replace("Announcement:","");
$(document).ready(function(){
$('dd.dterm strong:contains("Sticky:').each(function(){
$(this).replace("Sticky:","");
|
Forum of the Forums Forumotion Rules | Tips & Tricks | FAQ | Did you forget your password? |
*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
- Post n°14
Re: Remove Topic Prefixes
I was thinking the same thing lol
Van-Helsing- Hyperactive
- Posts : 2431
Reputation : 116
Language : English, Greek
- Post n°15
Re: Remove Topic Prefixes
Oh yes I forgot to close the branches and parenthesis. Sorry.
- Code:
$(document).ready(function(){
$('dd.dterm strong:contains("Global announcement:').each(function(){
$(this).replace("Global announcement:","");
})});
$(document).ready(function(){
$('dd.dterm strong:contains("Announcement:').each(function(){
$(this).replace("Announcement:","");
})});
$(document).ready(function(){
$('dd.dterm strong:contains("Sticky:').each(function(){
$(this).replace("Sticky:","");
})});
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
- Post n°16
Re: Remove Topic Prefixes
Still not working.
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
- Post n°17
Re: Remove Topic Prefixes
Bump.
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
- Post n°18
Re: Remove Topic Prefixes
Bump.
Nemo- Active Poster
- Posts : 1203
Reputation : 119
Language : Greek, English, French
- Post n°19
Re: Remove Topic Prefixes
Hello,
Is this still needed?
Is this still needed?