phazei
Forum Replies Created
-
ARG.
I tried to uninstall, but it gave some PHP error. It must have done a partial upgrade or something. I deleted the directory and reinstalled, fixed.Forum: Plugins
In reply to: custom prefix to base using generate_rewrite_rules not workingBUMP, anyone out there?
Why aren’t the new redirect rules working?
Forum: Plugins
In reply to: Grid / List View on PostBump, I’ve seen this done, any ideas?
Well, I believe I got WP Super Cache to work for the widget at least.
It’s very important that “Late init” is enabled in the Super Cache advanced options or the adrotate plugin won’t be loaded yet so the function will die
In adrotate-widget.php I changed around line 46 to this:
if($instance['type'] == "group") { echo "<!--mfunc echo adrotate_group({$instance['id']}) -->"; echo adrotate_group($instance['id']); echo "<!--/mfunc-->"; }
My ads are rotating, and the cache is working. The same could be done for the section above and below it for the ‘single’ and ‘block’ areas.
I still haven’t gotten the [adrotate id=x] type tags to work yet, but I’m not using those anywhere yet.
To prevent conflicts in the global namespace it’s more standard to select a common prefix for everything you’re doing.
Picking something like “dynamic-cached-content” is completely generic. Yeah, making it long makes it less likely to conflict, but it also makes it more confusing and every time something is added there is nothing connecting anything.
“super_cache_dynamic” would be much more sensical.
I had a similar issue to the OP. I fixed it:
Took a while but I figured it out.
It seems WP3.0 needs ID’s on at least all select elements.
So I needed to mod the file
\wp-content\plugins\the-events-calendar\views\events-meta-box.php
and starting around line 238 I needed to change all the selects to have id’s that matched the name, eg:<select tabindex=”<?php $this->tabIndex(); ?>” name=’EventStartMonth’>
becomes
<select id=”EventStartMonth” tabindex=”<?php $this->tabIndex(); ?>” name=’EventStartMonth’>
And that seemed to fix it ??
We have an events category that’s a normal category, not necessarily scheduled events. We didn’t want the calendar taking over the category.
I found that if I opened the-events-calendar.class.php and change line 8 from:
const CATEGORYNAME = 'Events';
to
const CATEGORYNAME = 'Calendar';
It seems to work just fine.
Forum: Themes and Templates
In reply to: Pictures errorErr, btw, I’m using WP3
Forum: Themes and Templates
In reply to: Pictures errorUmm, where is this accepted sites list?
I can’t find it.
Thanks.Forum: Plugins
In reply to: [Plugin: NextGEN-ImageFlow] onClick Option Does Not WorkActually, the issue is the quotes around:
onClick: ‘function() {}’it should be
onClick: function() {}
Forum: Plugins
In reply to: [Plugin: NextGEN-ImageFlow] onClick Option Does Not Worksame issue here