peter
Forum Replies Created
-
Forum: Plugins
In reply to: [File Manager] File Manager Will Not LoadAs @kattouf pointed out above this issue is due to jQuery changes in WP5.6 and installing jQuery migrate with said settings solves the problem ~ at least temporarily.
It’s a conflict to do with jQuery and jQuery UI versions.
The plugin author should be aware that the plugin loads an old version of jQuery UI, i.e. v1.11.4 – 2015-03-11, even though the file name “plugins/wp-file-manager/lib/jquery/jquery-ui-1.12.0.js” suggests differently!
On the short term use the workaround @kattouf suggests.
Forum: Plugins
In reply to: [Optimize Database after Deleting Revisions] Create table odb_logsHi Rolf,
Wow! Impressive support!
Thank you so much!All the best,
Peter@riknil,
Global $event is not available – anymore – in the month view.
You’ll need to use ‘global $post’, ref the original /month/single-event.php.
Now you can use:global $post; $event_id = "{$post->ID}-{$day['date']}"; $thumbnail = get_the_post_thumbnail( $event_id, 'thumbnail' );
Cheers,
PeterSame issue here with 4.6.22 caused by a theme override of /the-events-calendar/src/views/month/single-event.php. Replacing usage of global $event by available data fixed the issue.
- This reply was modified 6 years, 3 months ago by peter.
Forum: Plugins
In reply to: [The Events Calendar] Bug in 4.6.22 when adding/editing events in WP backendSame here with 4.6.22.
Hi Jack,
I somehow missed your last reply.
Still wanted to thank you for getting back.
Cheers,
PeterThanks for your feedback, Jack.
Hi Jack,
Thanks for your reply.
Let me know if I can somehow help test or anything.
Kind regards,
PeterForum: Plugins
In reply to: [PressForward] PHP Fatal error in Application.php on line 154Hi Aram,
Your question for the PHP version is spot on!
The server was still runnning on PHP 5.3.29.
An upgrade to PHP 5.5.38 solved the issue as does PHP 7.0.
Thanks for your swift reply!
PeterI ran into the same issue with missing revisions metabox and revisions not being stored.
This is caused by/** * Do not store any revisions (except the one autosave per post). */ if (!defined('WP_POST_REVISIONS')) define('WP_POST_REVISIONS', 0);
on line 82 of geodirectory.php.
If you add
define('WP_POST_REVISIONS', 99);
to your wp-config.php revisisons work again.
(set ’99’ to the max number of revisions you want to keep).Hi Dhara,
My ticket was picked up by Moxa who sent me a fixer version 1.6 real quick. I tested that version and it proves to work right once again.
I’ll mark this topic as resolved.
Thank you and your theme for taking action this quick.Kind regards,
PeterHi Dhara,
Thanks for your reply. I’ve opened a ticket.
The site doesn’t need fixing, tho; it’s just that the plugin needs some adjustments to properly use prefix and base_prefix respectively.
Kind regards,
PeterForum: Plugins
In reply to: [MyParcel] Cannot confirm pick-up location in pop-up windowHello Ewout,
Thanks for your reaction.
It turns out that we have an issue with content filters in a bespoke plugin. This causes erroneous paragraph tags and, as it turns out, also messes up the MyParcel url, replacing ampersands by its html entity number which is not recognized by the API. It seems that the MyParcel plugin operates as expected as soon as i revert content filtering to default WP behavior.
Thanks for your support.
Kind regards,
PeterForum: Plugins
In reply to: [MyParcel] Error in javascript function pakjegemak()Hi Ewout,
Thanks for pointing me at default wpautop formatting. It made me look at the code base and I indeed found a bespoke function that tempers with the content filters in such a way, that it causes the erroneous paragraph tags. I need to find a way to solve that.
As it turns out, this also seems to cause the other issue i reported, although I don’t quite understand why yet.
Kind regards,
Peter