Whats wrong with the new editor.
2 posters
Page 1 of 1
Whats wrong with the new editor.
When you make a new topic or a normal reply (not quick) It looks like this. My forum is everyonesblog.net and its phpbb3. I've been having this issue for a while now. If you need my javascript or CSS codes i can give them to you.
Last edited by luiz1877 on December 31st 2013, 12:26 am; edited 1 time in total
Re: Whats wrong with the new editor.
What did you edit or add right before this happened?
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: Whats wrong with the new editor.
I cant exactly remember. I added a bunch of things at once in my last update that it could be many many things. And as i said it was a little while ago. I first tried to get help @ daily support but they couldn't help me.
Re: Whats wrong with the new editor.
So when did this first start?
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: Whats wrong with the new editor.
So it started about two months ago and just now you are asking for help?
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: Whats wrong with the new editor.
Yeah, i've been busy and thought it would be simple. I was changing a whole lot on my website and i wasnt posting much. If you staff have a special thing to see what a forum looks like in time you'll see that it doesnt look anything like the version from two months ago. Sorry for asking so late...
Re: Whats wrong with the new editor.
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: Whats wrong with the new editor.
It says only to add those codes if your using phpbb2 or punbb....I'm not exactly sure it will work.
Re: Whats wrong with the new editor.
If you have JavaScripts, turn off JavaScript Management and see if the issue disappears.
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: Whats wrong with the new editor.
Please use the edit button instead of double posting.
Lets see which ones are causing the issue. Remove all of them and then add them back one by one.
Lets see which ones are causing the issue. Remove all of them and then add them back one by one.
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: Whats wrong with the new editor.
Sorry about the double post, i didnt notice i did that.
14:51:51: Found it!!!
Ok so i used to have this old avacweb auto save feature. So when you helped me earlier i deleted it and added the new one. But the issue was that i needed to mark it only in the sub-forums not all pages. So now it works! Thank you !!
Only issue is i dont know if auto save works now.
14:51:51: Found it!!!
Ok so i used to have this old avacweb auto save feature. So when you helped me earlier i deleted it and added the new one. But the issue was that i needed to mark it only in the sub-forums not all pages. So now it works! Thank you !!
Only issue is i dont know if auto save works now.
Last edited by luiz1877 on December 30th 2013, 11:55 pm; edited 2 times in total
Re: Whats wrong with the new editor.
Post the JavaScript here in the code tags.
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.
Heres the code that blocks the new editor.
- Code:
function save_message() {
('Copyright © AvacWeb. All Rights Reserved. Use and modification of this script is not allowed without this entire copyright notice in the original, copied, or modified script. No distribution without consent.');
my_setcookie('saved_msg', escape(document.post.message.value), false);
var note = document.createElement('div');
note.id = 'saved_note';
note.innerHTML = 'Your message has been saved automatically.';
document.body.appendChild(note);
setTimeout(function() { document.body.removeChild(document.getElementById('saved_note')); }, 3000);
}
$(function() {
if(document.post && document.post.message && document.post.id !== 'quick_reply') {
var saved_msg = my_getcookie('saved_msg');
if(saved_msg && confirm('Do you want to restore your previous message?')) document.post.message.value += unescape(saved_msg);
delete_cookie('saved_msg');
setInterval(save_message, 30000);
$(document.post.post).click(function() { delete_cookie('saved_msg'); });
}
});
Re: Whats wrong with the new editor.
So this code that you just added caused the issue that occurred two months ago?
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: Whats wrong with the new editor.
I wrote this above:
Luiz1877 wrote:
.....Ok so i used to have this old avacweb auto save feature. So when you helped me earlier i deleted it and added the new one.(old one might have not have had all the javascript copied) ....
Re: Whats wrong with the new editor.
Did you remove the old one before adding the new code?
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: Whats wrong with the new editor.
No. I added the new code then i noticed i still had the old one so i deleted it.
Re: Whats wrong with the new editor.
So the issue has been fixed?
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: Whats wrong with the new editor.
Well, if i marked it only to appear in the sub forums should it still auto save?
Re: Whats wrong with the new editor.
I believe it should be checked for only in topics.
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: Whats wrong with the new editor.
You're welcome.
Topic Solved & Locked
Topic Solved & Locked
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.
Similar topics
» The Editor Tools Are Missing From The Full Message Editor!
» Whats this?
» Whats the difference in the different Versions?
» Whats the difference? /rss vs /feed
» How do I know whats my theme version?
» Whats this?
» Whats the difference in the different Versions?
» Whats the difference? /rss vs /feed
» How do I know whats my theme version?
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum