stompro
Forum Replies Created
-
Forum: Plugins
In reply to: [Widget Context] 0.8.1 shows all widgets on all pagesI’m seeing the same problem.
WP 3.5.1 with Plugin 0.8.1, I can no longer show widgets on only cetain pages.
Show only on front page doesn’t work, show only on entered page does not work.
I’m going to try reverting to an older version.
JoshForum: Plugins
In reply to: [Contact Form 7] After submitting form I only get a spinning circle.I upgraded WP from 3.4.2 to 3.5 also, but the problem comes up again when I re-enable the JS. I just tried it in Chrome, but didn’t have a problem, but I’m not sure if the Ajax submit was used since the page refreshed, and I had to scroll down to see the successes message.
Josh
Forum: Plugins
In reply to: [Contact Form 7] After submitting form I only get a spinning circle.When I add the Define that disable javascript the form works fine, no errors.
I’m not sure which log might contain any php errors. Let me know what else I can do to help track down what the problem is.
JoshForum: Plugins
In reply to: [Contact Form 7] After submitting form I only get a spinning circle.I’m seeing the same problem. Just updated from 3.3 to 3.3.2.
I’ll try the above fix.
page is at https://larl.org/digital-library-support/
Josh
Sorry for the code paste, I’ll not do that in the future.
I found the conflict that was causing my problem, the “Superb slideshow gallery” plugin conflicts with “Events Calendar” causing only one event to be shown.
I don’t know where the blame lies at this point, I’m going to try replacing the “Superb slideshow gallery” plugin with one of the similar plugins.
Josh
I’m seeing this same problem now. The issue seems to be with the javascript that displays the events.
Here is an example of the javascript being generated for events, only the 1st event is being displayed in the large calendar. Can anyone spot what is getting messed up. I notice that no title is getting set, all the settings are getting lumped into the first append.
[Code moderated as per the Forum Rules. Please use the pastebin]
Forum: Fixing WordPress
In reply to: RSS widget shows posts in reverse orderHello, I just ran into this same issue. RSS feeds displaying oldest items first. To fix it I changed the comparison operator for the function sort_items in wp-includes/class-simplepie.php.
It was
return $a->get_date('U') <= $b->get_date('U');
I changed it to
return $a->get_date('U') >= $b->get_date('U');
And now feeds display in the order I would like, Most recent date first.
Josh