Who is online?
In total there are 3 users online :: 0 Registered, 0 Hidden and 3 Guests None
Most users ever online was 246 on Tue 31 Jan - 2:47
Statistics
We have 150 registered usersThe newest registered user is Luxic
Our users have posted a total of 2050 messages in 200 subjects
Latest topics
» A small shareby Flora Today at 21:03
» Edit the 404 page on Forumotion
by LGforum Today at 15:29
» How to Change The Homepage?
by LGforum Today at 15:28
» Counter for my notices box
by Niko Today at 15:03
» 21. Show Recent Topics Preview In Accordion
by ReBoRN Yesterday at 19:08
LG Special: LG-QuickEdit v1.0
Page 1 of 2 • Share •
Page 1 of 2 • 1, 2 
LG Special: LG-QuickEdit v1.0
Welcome to another LG Special Feature. (the first of which was LGchat, which will continue to improve with newer versions).
(available for Phpbb3 or Invision, PunBB and Phpbb2 to come soon)
Today I welcome you to, LG-QuickEdit!. Another great feature for your boards which I will continue to improve and bring out newer, better versions.
If you hadn't guessed it already, LG-QuickEdit! is a feature which will allow for editing of your posts without changing the page. So without further ado, let me present you with some pictures.
So first off, you'll see here, just a regular PHPBB3 thread with some gobbledygook posts I made for testing.

But then, to make a Quick Edit on my post, I can now double click the post and here is what happens:

First of all it begins to load. It needs to do this, as it is loading the post contents ready to be edited. This doesn't take long i assure you.
Once it has finished loading, you'll see the LG-QuickEdit editing box. Which is just a small simple editor which looks like this:

It is simple in design and simple to use. You will be able to customize the look of the box, as long as you know a little about CSS.

And of course, the send button will send the message, and your post will be edited.
As with some of my other features the main script is hosted externally on my server, so the Javascript to add to your forum is very short.
Start a new Javascript file, and click 'In the topics' then copy and paste the correct code for your board type below.
For PHPBB3 users:
[noguest]
For Invision Users:
[noguest]
And For PunBB users:
[noguest]
*If this feature does not work on your Punbb board, it is likely down to editing of your viewtopic template. I'll provide as much help as I can, but no promises.
So there you have it. Grab your oppurtunity to get LG-QuickEdit version 1.0.
Last of all:
- There are a few bugs I know about, and will be fixed as a subversion soon.
- Phpbb2 will be out soon, sometime before the 10th.
(available for Phpbb3 or Invision, PunBB and Phpbb2 to come soon)
Today I welcome you to, LG-QuickEdit!. Another great feature for your boards which I will continue to improve and bring out newer, better versions.
If you hadn't guessed it already, LG-QuickEdit! is a feature which will allow for editing of your posts without changing the page. So without further ado, let me present you with some pictures.
So first off, you'll see here, just a regular PHPBB3 thread with some gobbledygook posts I made for testing.

But then, to make a Quick Edit on my post, I can now double click the post and here is what happens:

First of all it begins to load. It needs to do this, as it is loading the post contents ready to be edited. This doesn't take long i assure you.
Once it has finished loading, you'll see the LG-QuickEdit editing box. Which is just a small simple editor which looks like this:

It is simple in design and simple to use. You will be able to customize the look of the box, as long as you know a little about CSS.

And of course, the send button will send the message, and your post will be edited.
| Important Things to Know - The Quick Reply MUST be turned on. If you dislike it being at the bottom of topics, then it can be hidden with CSS. - When you send the message, it sends like any other edit, and you'll see the 'Posted Succesfully' page. This feature does NOT remove that page. - You can NOT Quick-Edit the first post of a topic, due to the fact it needs a topic title. - Since people aren't realising this, i'll try to make it clearer, to use the QuickEdit, the user must DOUBLE CLICK the post they want to edit. Not clic the edit button |
As with some of my other features the main script is hosted externally on my server, so the Javascript to add to your forum is very short.
Start a new Javascript file, and click 'In the topics' then copy and paste the correct code for your board type below.
For PHPBB3 users:
[noguest]
- Code:
var LGeditCopyrights="LG-QuickEdit for Forumotion Boards. © Copyright by LGforum. © Copyright by AvacWeb. All Rights Reserved.";
var LGEditStyle='<style>#LGQuickEdit {background-color: #CCC;border: 1px solid #666;padding-bottom: 20px;width: 60%;}#LGQuickEdit textarea {height:150px;width: 99%;}.LGeditBtn {display: block; float:left; background-color: #CCC;margin: 0px; padding:0px 4px; height: 20px;border-right: 1px solid #000;color: #000;cursor: pointer;}.LGeditBtn:hover {color: #fff;background-color: #999;}</style>';
var LGEditJS='<script src="http://www.avacweb.net/FM/Public/LG edit/LG Edit phpbb3.js"></script>';
$('head').prepend(LGEditStyle+LGEditJS);
For Invision Users:
[noguest]
- Code:
var LGeditCopyrights="LG-QuickEdit for Forumotion Boards. © Copyright by LGforum. © Copyright by AvacWeb. All Rights Reserved.";
var LGEditStyle='<style>#LGQuickEdit {background-color: #CCC;border: 1px solid #666;padding-bottom: 20px;width: 60%;}#LGQuickEdit textarea {height:150px;width: 99%;}.LGeditBtn {display: block; float:left; background-color: #CCC;margin: 0px; padding:0px 4px; height: 20px;border-right: 1px solid #000;color: #000;cursor: pointer;}.LGeditBtn:hover {color: #fff;background-color: #999;}</style>';
var LGEditJS='<script src="http://www.avacweb.net/FM/Public/LG edit/LG Edit invision.js"></script>';
$('head').append(LGEditStyle+LGEditJS);
And For PunBB users:
[noguest]
- Code:
var LGeditCopyrights="LG-QuickEdit for Forumotion Boards. © Copyright by LGforum. © Copyright by AvacWeb. All Rights Reserved.";
var LGEditJS='<script src="http://www.avacweb.net/FM/Public/LG edit/LG Edit punbb.js"></script>';
var LGEditStyle='<style>#LGQuickEdit {background-color: #CCC;border: 1px solid #666;padding-bottom: 20px;width: 60%;}#LGQuickEdit textarea {height:150px;width: 99%;}.LGeditBtn {display: block; float:left; background-color: #CCC;margin: 0px; padding:0px 4px; height: 20px;border-right: 1px solid #000;color: #000;cursor: pointer;}.LGeditBtn:hover {color: #fff;background-color: #999;}</style>';
$('head').prepend(LGEditStyle+LGEditJS);
*If this feature does not work on your Punbb board, it is likely down to editing of your viewtopic template. I'll provide as much help as I can, but no promises.
So there you have it. Grab your oppurtunity to get LG-QuickEdit version 1.0.
Last of all:
- There are a few bugs I know about, and will be fixed as a subversion soon.
- Phpbb2 will be out soon, sometime before the 10th.
Last edited by LGforum on Sat 7 Jan - 14:24; edited 7 times in total

LGforum- Forum Version: Phpbb3
Posts: 729
Join date: 2011-10-05
Location: UK

Re: LG Special: LG-QuickEdit v1.0
hahaha...clever you 
you are giving LG-QuickReply© for free, good
you are giving LG-QuickReply© for free, good
ion-cube
Status: Testing
Posts: 121
Join date: 2011-10-19
Age: 23
Location: Pakistan
Re: LG Special: LG-QuickEdit v1.0
No no, i don't plan on giving away LG-QuickReply.
This is different.
This is different.

LGforum- Forum Version: Phpbb3
Posts: 729
Join date: 2011-10-05
Location: UK

Re: LG Special: LG-QuickEdit v1.0
LGforum wrote:No no, i don't plan on giving away LG-QuickReply.
This is different.
Thanks for the tutorial.

Flora
Status: If you like gardening, please join my site. Ty. :)
Forum Version: Phpbb3
Posts: 151
Join date: 2011-11-18
Location: USA

Re: LG Special: LG-QuickEdit v1.0
i want this in phpbb2!!!
please....
please....

pidot101
Status: . . .
Posts: 58
Join date: 2011-12-09
Age: 16
Re: LG Special: LG-QuickEdit v1.0
It will eventually be available for all versions. After I finish LGchat version 4.
Phpbb2 will probably be last though
Phpbb2 will probably be last though

LGforum- Forum Version: Phpbb3
Posts: 729
Join date: 2011-10-05
Location: UK

Re: LG Special: LG-QuickEdit v1.0
This is Cool!
Verrell123
Status: Falala
Forum Version: PunBB
Posts: 3
Join date: 2011-12-26
Location: Undefined
Re: LG Special: LG-QuickEdit v1.0
Verrell123 wrote:This is Cool!![]()
I really ought to slow down & read more before posting, sorry. I for some reason thought this topic was about LG chat 2... I just finished installing v4 and was so excited that I just typed instead of reading the first post. Sorry.

Flora
Status: If you like gardening, please join my site. Ty. :)
Forum Version: Phpbb3
Posts: 151
Join date: 2011-11-18
Location: USA

Re: LG Special: LG-QuickEdit v1.0
LG-QuickEdit© is now available for Invision version.
Next will be Punbb very soon. The phpbb2 will be last.
Please read the first post in this topic for details of how to get LG-QuickEdit©
Next will be Punbb very soon. The phpbb2 will be last.
Please read the first post in this topic for details of how to get LG-QuickEdit©

LGforum- Forum Version: Phpbb3
Posts: 729
Join date: 2011-10-05
Location: UK

Re: LG Special: LG-QuickEdit v1.0
LGforum wrote:LG-QuickEdit© is now available for Invision version.
Next will be Punbb very soon. The phpbb2 will be last.
Please read the first post in this topic for details of how to get LG-QuickEdit©
uhm, , thanks. . i can't wait for it to be on phpbb2. .
btw, i really liked the new look. . .

pidot101
Status: . . .
Posts: 58
Join date: 2011-12-09
Age: 16
Re: LG Special: LG-QuickEdit v1.0
I hope to have both the punBB version and the phpbb2 version done by the 10th.
I'll be pasting the stuff you'll need here in the topic rather than by PM too.
Like LGchat, the core scripts will be hosted off site by me.
I'll be pasting the stuff you'll need here in the topic rather than by PM too.
Like LGchat, the core scripts will be hosted off site by me.

LGforum- Forum Version: Phpbb3
Posts: 729
Join date: 2011-10-05
Location: UK

Re: LG Special: LG-QuickEdit v1.0
LGforum wrote:I hope to have both the punBB version and the phpbb2 version done by the 10th.
I'll be pasting the stuff you'll need here in the topic rather than by PM too.
Like LGchat, the core scripts will be hosted off site by me.
so that means it'll be free?! You rock dude. .

pidot101
Status: . . .
Posts: 58
Join date: 2011-12-09
Age: 16
Re: LG Special: LG-QuickEdit v1.0
LG-QuickEdit will always be free 
[noguest]It does contain copyrights and a link to AV which you can pay to have removed.[/noguest]
[noguest]It does contain copyrights and a link to AV which you can pay to have removed.[/noguest]
Last edited by LGforum on Fri 6 Jan - 8:52; edited 2 times in total

LGforum- Forum Version: Phpbb3
Posts: 729
Join date: 2011-10-05
Location: UK

Re: LG Special: LG-QuickEdit v1.0
naah, if i would be asked i'd rather keep it. . . as a sign of gratitude to you . . . 

pidot101
Status: . . .
Posts: 58
Join date: 2011-12-09
Age: 16
Page 1 of 2 • 1, 2 
Page 1 of 2
Permissions in this forum:
You cannot reply to topics in this forum