Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Re: [plugin] [ORPHAN] rss_admin_quikpik
I just upgraded to Txp 4.06, and now I don’t see the quickpick menu at all. Disabling the plugin restores Textpattern’s default menus. Oh, how I miss the quickpik.
brainPhat
Offline
Re: [plugin] [ORPHAN] rss_admin_quikpik
Problems with 4.0.6 are reproducible.
Quote from the 4.0.6 announcement discussion:
rss_admin_quikpik by Rob Sable (version 0.6) for a changed admin menu interface is not running.
Worse: Being active rss_admin_quikpik hides the standard admin menu.
A dumb try to change the code to:
if (@txpinterface == 'admin') {
add_privs('rss_quikpik_buffer', '1');
ob_start("rss_quikpik_buffer");
}
did not help.
I had to disable the plug-in to get the standard admin back to work.
Get all online mentions of Textpattern via OPML subscription: TXP Info Sources: Textpattern RSS feeds as dynamic OPML
Offline
Re: [plugin] [ORPHAN] rss_admin_quikpik
Has anyone found a solution to the rss_admin_quikpik problem with Textpattern 4.0.6 ? After upgrading, the menu no longer appears.
I’m not getting any javascript errors. The plugin hides the standard menu (as it’s supposed to do), but doesn’t show it’s alternative.
It seems that 4.0.6 includes an id on the body tag. Perhaps the plugin can’t find where to place the menu?
Offline
Re: [plugin] [ORPHAN] rss_admin_quikpik
Digging deeper, the plugin does in fact replace <body>
which it can’t find with an id applied to it. Here’s a fix that seems to work.
Edit the plugin’s code. Find the following line:
$ret = str_replace("<body>", "<body>".rss_doQp(), $ret);
And replace it with:
$ret = str_replace("<table id=\"pagetop", rss_doQp()."<table id=\"pagetop", $ret);
Instead of adding the menu after the body tag, we’ll add it before the table tag that follows.
Last edited by mwillse (2008-02-12 19:43:15)
Offline
Re: [plugin] [ORPHAN] rss_admin_quikpik
mwillse wrote:
Digging deeper, the plugin does in fact replace
<body>
which it can’t find with an id applied to it. Here’s a fix that seems to work.
Thanks! That works like a charm, and leads me to some other ideas I’ve had for the ol’ quikpik.
brainPhat
Offline