Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-sales domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the better-click-to-tweet domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-amazon domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-stats domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114 Updating Multiple Events with Early Discount | Event Espresso - Staging Server
Can I update all my events within a certain date range (going forward from today) to include the early bird discount? I saw in the DB that the events_details table has the 3 fields to be updated, but wasn’t sure if there were additional tables it is hitting so I didnt want to attempt without asking first. If you have an easy way for me to do this, I would appreciate it. Thanks.
The best I can advise currently is that it wont work by just simply updating those three fields. It is linked elsewhere to actually enforce the deduction.
It is possible to update it the fields in the database. You will need
to modify the wp_events_detail table though. Here is a screenshot of
the fields and format in PHPMyAdmin: http://www.screencast.com/t/rTdt3lgmm93
Here is some SQL code that will update the entire database with the
data in the screenshot. The data should be changed to reflect their
needs: UPDATE wp_events_detail SET early_disc = ’50’, early_disc_date = ‘2012-09-28’, early_disc_percentage = ‘Y’ WHERE early_disc_date = ”
If they only want to update certain events, they use this for each
event. Just change the id field to the event id: UPDATE
wp_events_detail SET early_disc = ’50’, early_disc_date =
‘2012-09-28’, early_disc_percentage = ‘Y’ WHERE id = ‘2’
Hope that makes some sense and can help out a bit
Viewing 4 reply threads
The support post ‘Updating Multiple Events with Early Discount’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.