missingtoof
Forum Replies Created
-
I’m looking for the same answer. I’ve been searching for the solution for several days for a client’s project. I’ve always found WordPress’ core upload and gallery creation process to be very limited and convoluted. Tumblr’s to be a lot more easy to use and looks a lot better. Simplicity rules.
…I don’t think such a plug-in exists for WordPress. But I’m still on the hunt. I hope that I’m wrong.
Forum: Plugins
In reply to: [Plugin: WP-Paginate] Will Paginate work with 2.9?I discovered I had some plugin conflicts or something. I have a lot of tweaks and it’s hard to manage!
But that said, after deactivating things and sorting things out, I still can’t get paginate to work. Is it K2 (https://getk2.com) compatible out of the box?
Forum: Plugins
In reply to: [Plugin: WP-Paginate] Will Paginate work with 2.9?I am having problems on 2.9.1. I’ve never used your WP-Paginate before but it looks exactly like what I’m looking for.
I am using K2 1.02 atop WordPress 2.9.1. Activating WP-Paginate makes my site seize up in the first sizebar after a widget titled “Popular Tags” (where I concatenated two plugins: Tag Dropdown Widget 1.5 and SEO Tag Cloud Widget 1.5.2). Perhaps it’s a plugin conflict and not a WordPress or K2 conflict, I’ll have to investigate. Deactivating WP-Paginate makes the page run smooth again.
I’ve deactivated WP-Paginate. But the page in question is sandboxed here: https://missingtoof.com/?theme=2010
Any insight is appreciated.
Changed it to a different K2 hook which works better on all pages. Anyone using K2 who wants the embed javascript to be called before the sidebars should use the hook ‘template_entry_foot’ instead of ‘template_primary_end’ which I erroneously said above.
So the alteration is:
Before:
add_action("wp_footer", array(&$this, "addFooterCode"));
After:
add_action("template_entry_foot", array(&$this, "addFooterCode"));
Hope that helps. Not sure if there is a hook at the bottom of the entries for default wordpress install (same with Themeatic, etc.).
Forum: Plugins
In reply to: too easy to delete snipletsI had the same problem once. Ideally an alert message would be good.
To answer my own question, I just edited audio-player.php. I only had to change one line to get the script to run at the K2 hook ‘template_primary_end’ (I’m using K2, and this will only work if you are using K2 also).
Before:
add_action("wp_footer", array(&$this, "addFooterCode"));
After:
add_action("template_primary_end", array(&$this, "addFooterCode"));
Hope that works for someone else having the same issue. I also hope this alteration isn’t stepping on the license terms, I don’t think it is. Perhaps earlier execution will become an option in Audio Player 2.2 or future releases.