Hey there Scott,
Glad to hear that you like our plugin 🙂
Minimum allowed time base setting is 10 minutes. The reasoning for that is setting to lower then that may create additional load in your server.
If you still want to do this there is a filter in the plugin that we could use to change that, to do this please try adding the following code to the bottom of your theme functions.php:
function allow_5_min( $min_time ) {
return 4;
}
add_filter( 'app_safe_min_time', 'allow_5_min' );
This should allow you to set 5 minutes base time for your services.
Hope this helps 🙂
Cheers,
Bojan
Bojan,
Just added this piece of code to the bottom of my functions.php and it made the website crash. I went into c-panel and removed the piece of code to get it back up and running again. Forgive me as I’m not very knowledgable when it comes to php, but could there be something wrong with the piece of code you gave me?
Thanks,
Scott
Hey Scott,
I tested the code on my sandbox site before I posted it here so the problem should be elsewhere,
I’m assuming it’s just a syntax error because you most likely placed it outside of php tag.
So if your functions.php have this at the bottom “?>” please make sure to place the code above that line (this is a closing php tag, you have to place php code inside php tags in order for it to work).
If it doesn’t help please let me know which theme you’re using so I can try to test that as well 🙂
Cheers,
Bojan
Bojan,
It worked perfectly! It turns out that I’m just a Noob when it comes to code.
Thanks a lot for your help!
Scott