REMOVE TEXT First topic message reminder
The forum of the forums :: Support forum :: Forum Design & Appearance Help :: Design & Appearance Problems Archives
Page 1 of 1 • Share •
REMOVE TEXT First topic message reminder
I would like to ask for assistance on how to remove the text First topic message reminder only
FROM

TO

**as you can see when I proceed to another page
the ribbon wrapper stayed in position but the album art moved downward
FROM

TO

**as you can see when I proceed to another page

- SITE:
- http://kyptikxclusive.cool.st/
Invision
Last edited by Chronoz on July 30th 2014, 1:27 pm; edited 1 time in total
Re: REMOVE TEXT First topic message reminder
Hello,
Go to your Admin Control Panel -> Messages and E-Mail -> Settings -> Always show the first post in the topics : -> Set it to No.
Take a look in screenshot http://prntscr.com/46t52w
Best Regards,
Black-Shadow
Go to your Admin Control Panel -> Messages and E-Mail -> Settings -> Always show the first post in the topics : -> Set it to No.
Take a look in screenshot http://prntscr.com/46t52w
Best Regards,
Black-Shadow
Re: REMOVE TEXT First topic message reminder
Black-Shadow wrote:Hello,
Go to your Admin Control Panel -> Messages and E-Mail -> Settings -> Always show the first post in the topics : -> Set it to No.
Take a look in screenshot http://prntscr.com/46t52w
Best Regards,
Black-Shadow
I wanted to Always show the first post in the topics what i dont want to is the TEXT First topic message reminder showing up in the first post because its messing the alignment of my first post when I move to the next page
Re: REMOVE TEXT First topic message reminder
Sorry, you mean you dont want showing the text "First topic message reminder :" but I dont know if that is possible.
Re: REMOVE TEXT First topic message reminder
Black-Shadow wrote:Sorry, you mean you dont want showing the text "First topic message reminder :" but I dont know if that is possible.
yes... Actually I saw a solved thread reagrding this one http://help.forumotion.com/t132671-first-topic-reminder
but then the user was using phpBB3 and I tried the codes in my invision but it didn't work.
Re: REMOVE TEXT First topic message reminder
This should work - http://help.forumotion.com/t132671-first-topic-reminder#891656
Did you activate JavaScript Management?
Did you activate JavaScript Management?

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.

Re: REMOVE TEXT First topic message reminder
@SLGray wrote:This should work - http://help.forumotion.com/t132671-first-topic-reminder#891656
Did you activate JavaScript Management?
I have tried that.. and it did not work... my Javascript management is enabled

Re: REMOVE TEXT First topic message reminder
Hi Chronoz,
That script was for phpbb3, try this script instead for Invision :
That script was for phpbb3, try this script instead for Invision :
- Code:
$(function() {
var p = $('.post .post-entry div')[0];
var reg = /<strong>First topic message reminder :<\/strong><br><br>/
if (reg.test(p.innerHTML)) p.innerHTML = p.innerHTML.replace(reg,'');
});
Re: REMOVE TEXT First topic message reminder
@Ange Tuteur wrote:Hi Chronoz,
That script was for phpbb3, try this script instead for Invision :
- Code:
$(function() {
var p = $('.post .post-entry div')[0];
var reg = /<strong>First topic message reminder :<\/strong><br><br>/
if (reg.test(p.innerHTML)) p.innerHTML = p.innerHTML.replace(reg,'');
});
it did'nt work..
still the same

Re: REMOVE TEXT First topic message reminder
Do you have other JavaScripts?

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.

Re: REMOVE TEXT First topic message reminder
@SLGray wrote:Do you have other JavaScripts?
yes I have 2 javascripts

1. Fancy Lightbox
2. Remove the "edit By" line
Re: REMOVE TEXT First topic message reminder
Try this:
Remove all JavaScripts you have. Then add just the one Ange posted and see if it works. If it does, then add the other two JavaScripts one by one to see if one is interfering with it.
Remove all JavaScripts you have. Then add just the one Ange posted and see if it works. If it does, then add the other two JavaScripts one by one to see if one is interfering with it.

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.

Re: REMOVE TEXT First topic message reminder
@SLGray wrote:Try this:
Remove all JavaScripts you have. Then add just the one Ange posted and see if it works. If it does, then add the other two JavaScripts one by one to see if one is interfering with it.
Tried it. still no good. the Code itself I think is not working.
ALL pages@SLGray wrote:Try all pages.
still no good
here's the screenshots on some of them


Last edited by Chronoz on July 28th 2014, 11:16 am; edited 3 times in total
Re: REMOVE TEXT First topic message reminder
Try all pages.

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.

Re: REMOVE TEXT First topic message reminder
Hi,
I forgot a semi-colon on one of the variables, sorry. ^^
I forgot a semi-colon on one of the variables, sorry. ^^
- Code:
$(function() {
var p = $('.post .post-entry div')[0];
var reg = /<strong>First topic message reminder :<\/strong><br><br>/;
if (reg.test(p.innerHTML)) p.innerHTML = p.innerHTML.replace(reg,'');
});
Re: REMOVE TEXT First topic message reminder
@Ange Tuteur wrote:Hi,
I forgot a semi-colon on one of the variables, sorry. ^^
- Code:
$(function() {
var p = $('.post .post-entry div')[0];
var reg = /<strong>First topic message reminder :<\/strong><br><br>/;
if (reg.test(p.innerHTML)) p.innerHTML = p.innerHTML.replace(reg,'');
});
still NO good...

appreciate the effort though.
Re: REMOVE TEXT First topic message reminder
Try this:
- Code:
$(function() {
var p = $('.post .post-entry div')[0];
var reg = /<strong>First topic message reminder :<\/strong><br /><br />/;
if (reg.test(p.innerHTML)) p.innerHTML = p.innerHTML.replace(reg,'');
});

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.

Re: REMOVE TEXT First topic message reminder
Please post a link to a topic that has this which guests can see.
Thanks.
Thanks.
Re: REMOVE TEXT First topic message reminder
@SLGray wrote:Try this:
- Code:
$(function() {
var p = $('.post .post-entry div')[0];
var reg = /<strong>First topic message reminder :<\/strong><br /><br />/;
if (reg.test(p.innerHTML)) p.innerHTML = p.innerHTML.replace(reg,'');
});
still no good
I created a ghost account so that you can enter the site
- FORUM SUPPORT GHOST ACCOUNT:
Re: REMOVE TEXT First topic message reminder
Ange should post-entry be postbody?

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.

Re: REMOVE TEXT First topic message reminder
Replace your script by :
- Code:
$(function(){
var p=$('.post .post-entry')[0];
var reg=/<strong>First topic message reminder :<\/strong><br><br>/;
if(reg.test(p.innerHTML))p.innerHTML=p.innerHTML.replace(reg,'');
});
Re: REMOVE TEXT First topic message reminder
@Ange Tuteur wrote:Replace your script by :
- Code:
$(function(){
var p=$('.post .post-entry')[0];
var reg=/<strong>First topic message reminder :<\/strong><br><br>/;
if(reg.test(p.innerHTML))p.innerHTML=p.innerHTML.replace(reg,'');
});
THANKS the code worked.. problem solved...
thank you very much guys for the support..
The forum of the forums :: Support forum :: Forum Design & Appearance Help :: Design & Appearance Problems Archives
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum