hansb_
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Maintenance Mode] Redirect after CountDown finishedAs this is no question. it is resolved …
Forum: Plugins
In reply to: [Really Simple Events] Visibility for EditorsA fast but non-upgrade fix:
change first line in function “hc_rse_build_admin_menu” in plugin file “really-simple-events.php” from
$user_capability = ‘manage_options’;
to
$user_capability = ‘hc_rse_manage_options’;Add this function to your themes file “functions.php”
/*
* change really simple event plugin
* to make events visible to editors
*/
function custom_hc_rse_add_caps() {
$role = get_role( ‘administrator’ );
$role->add_cap( ‘hc_rse_manage_options’ );
$role = get_role( ‘editor’ );
$role->add_cap( ‘hc_rse_manage_options’ );
}
add_action( ‘admin_init’, ‘custom_hc_rse_add_caps’);Forum: Plugins
In reply to: [Really Simple Events] Visibility for EditorsIs there no solution for this question?
Thanks for feedback, r
Hello Marcus,
I do not want endless tickets and I do not have reservation only by phone.
I want to trigger the totally booked state of an event easily.
hans
Hello aglonwl,
the plugin checks if(!empty), so it does not differ between “” an 0.
But in case you have a lot of different tickets and more than one possibility to reserve tickets (website form, email, phone …) it would be the easiest way to trigger the totally booked state of the event by setting total spaces to sero. Otherwise you have to set the available spaces on all tickets to sero, and this is not possible at the moment. See https://www.ads-software.com/support/topic/bug-cant-set-available-spaces-to-sero
For me a checkbox “totally booked” would be the best solution.
hans
Hello aglonwl,
for me this is a bug. Because:
In case ticket reservation is not only possible on the website but also by phone for example, there is the need to set available tickets to sero.Disabling reservation in this case is also no option for me, because I want to trigger the “totally booked” state of the event.
It is also not possible to delete all tickets, the plugin will create at least one default ticket in any case. This is also a strange behaviour for me.
hans
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] SPAM even with Capchathis is happening to forms on three different sites that I am using this plugin on. Any ideas?
Can you post links to the sites?