Franky
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy] Event Day of week placeholder?See https://www.e-dynamics.be/wordpress/category/documentation/7-placeholders/7-2-events/ , you can use #_STARTDATE{XX} , with ‘xx’ being a pho recognized datetime format, see https://www.php.net/manual/en/datetimeimmutable.createfromformat.php
So in your case I guess #_STARTDATE{D} would work (or “l”)- This reply was modified 3 years, 8 months ago by Franky.
Forum: Plugins
In reply to: [Events Made Easy] CSV approved attendeesAlso, feel free to contact me via email if you can’t get it to work as expected (see my main site for support contact info: https://www.e-dynamics.be/wordpress/ )
Forum: Plugins
In reply to: [Events Made Easy] CSV approved attendeesMake sure nothing is blocking or no javascript error is in your console. Print and CSV buttons both use the same logic (while I really recommend to use the “CSV export” link per event), but maybe somehing in your browser blocks the CSV output from being shown/saved.
Forum: Plugins
In reply to: [Events Made Easy] CSV approved attendeesGo in the list of events and click on “CSV export” underneath the event of choice, or click on the “Approved bookings” link per event (or via the menu) and the you can show/hide columns of choice and click on the CSV button.
Forum: Plugins
In reply to: [Events Made Easy] Database insert failedGlad it works!
Forum: Plugins
In reply to: [Events Made Easy] Database insert failedIf you had EME 2.2.94, make sure to remove all data/settings from EME upon deactivation (these are settings in the EME options, tab “General”); then deactivate and reactive the plugin. This causes all to be removed from the options (and should then recreate the tables too), and this step is needed to “fake” a new EME install.
Forum: Plugins
In reply to: [Events Made Easy] Database insert failedWhich version did you try? Version 2.2.96 should work fine (there was a bug in 2.2.94 for new installations).
Forum: Plugins
In reply to: [Events Made Easy] edit templates in backendcorrect, I forgot to update the dompdf include path there (weird, but I think in my tests it worked because I still had the old dompdf version in place too).
The just released 2.2.96 version will fix it.Forum: Plugins
In reply to: [Events Made Easy] Plugin not displaying dataI just released a version that should work as expected for new installations.
Forum: Plugins
In reply to: [Events Made Easy] Error when booking last available placeThere was a typo in that fix, but I just released a version that should be ok.
The typo:
https://plugins.trac.wordpress.org/changeset/2771301/Forum: Plugins
In reply to: [Events Made Easy] Plugin not displaying dataArghh … you just pointed me to a new weird thing in wp. The $wpdb variable is not correctly initialized during plugin install/deinstall unless you include a specific php file. While I used to do this directly, I now used a function (in the latest version) to get the prefix (during install, uninstall and regular plugin function) and I did not take that into account correctly. I’ll correct and release a new version asap (after some testing).
Forum: Plugins
In reply to: [Events Made Easy] Plugin not displaying dataThe plugin never assumes any prefix. Even “wp_” is coming as info from wordpress. Is the plugin installed in multisite or so? How did you change your db prefix?
And is your wp-config.php correctly changed to use that prefix? See e.g. https://www.bettertechtips.com/wordpress/change-wordpress-table-prefix/Forum: Plugins
In reply to: [Events Made Easy] Plugin not displaying dataEME takes the prefix as configured by WP (the global variable $wpdb->prefix in fact), so if the tables are created with a “wrong” prefix it means something is wrong when you created/activated the plugin. Is it possible you have some plugin that changes the prefix but did not update your wp config accordingly?
Forum: Plugins
In reply to: [Events Made Easy] Error when booking last available placeThis fix should do it:
https://plugins.trac.wordpress.org/changeset/2771068/I’m currently not able to test, will try this evening.
Forum: Plugins
In reply to: [Events Made Easy] Plugin not displaying dataI’m guessing something is blocking the correct output. What is the error you’re seeing? And is there something in your browser console and/or php errorlog files?
And what is the version of php and wordpress?