Problems with QuickEdit

Post Reply
mandrake88
Newbie
Newbie
Posts: 2
Joined: Wed 9. Jan 2013, 19:19
phpbb.com: mandrake88

Problems with QuickEdit

Post by mandrake88 »

Hi!

I'm having problems for make the quickedit work on absolution theme 1.1.1 (https://www.phpbb.com/customise/db/style/absolution/)
The problem is that the theme have a diferent postrow structure, so this instruction can't be done:
Find

Code: Select all

<div class="postbody">
In-line Find

Code: Select all

class="postbody"
In-line Add after

Code: Select all

 id="post{postrow.POST_ID}"
I added this extra div for solve the problem:

Code: Select all

<!-- BEGIN postrow -->
<div id="post{postrow.POST_ID}"> 
//postrow code
</div>
<!-- END postrow -->
but the result is not that good as u can see

http://i.minus.com/i71tTGS1y2dRj.png

Any idea of how can i workaround this?
User avatar
Marc
Administrator
Administrator
Posts: 620
Joined: Tue 2. Sep 2008, 22:48
phpbb.com: Marc
Location: Munich
Contact:

Re: Problems with QuickEdit

Post by Marc »

Your solution also doesn't make any sense to be honest. You actually don't need that edit in Absolution. However, you'll need to change this line in quickedit_header.html:

Code: Select all

var quickedit_div = '#post\%d div.content';
To this:

Code: Select all

var quickedit_div = '#p\%d div.content';
Image
mandrake88
Newbie
Newbie
Posts: 2
Joined: Wed 9. Jan 2013, 19:19
phpbb.com: mandrake88

Re: Problems with QuickEdit

Post by mandrake88 »

It's not working, when i click in the quickedit button nothing happens, i tried switching to prosilver and the quickedit works fine, so the mod is installed correctly, the problem is in the style edits. Maybe that edit work for the old version of absolution, the 1.1 version is a whole new style, is completely different
Post Reply