Hi!
So I've followed through instructions for the quotes solution, and then lost the "quote" button that goes next to the "delete" and "edit" buttons at the top of each post.
I've narrowed this down to when I edit the text in the "main_posts.html" file - I can make all the other amendments without loosing the button, this is the change that makes it disappear! :(
In the original file I have:
main_posts.html:
function getQuotation() {
var bw=new checkBrowser();
if (bw.ns6 || bw.ie5 || bw.ie6 || bw.ns4 || bw.safari || bw.opr) {
document.writeln('<a href="javascript:paste_stri
nL(selection,1)" onMouseMove="pasteSel()">{$l_quoting}<'+'/a>');
}
}
and instructions seem to say change this for:
main_posts.html:
function getQuotation(User) {
var bw=new checkBrowser();
var displayQuote={$displayQuote
};
if (displayQuote && (bw.dom || bw.ns6 || bw.ie5 || bw.ie6 || bw.ns4 || bw.safari || bw.opr)) {
document.writeln('<a href="javascript:paste_strinL(selektion,1,\'\',\'\',\'\',\'' + User + '\')" onmousemove="pasteSel()">{$l_quoting}<'+'/a>');
}
}
Have I missed something somewhere?
Many thanks!