meiskv
Forum Replies Created
-
Quick fix
include_once(ABSPATH . 'wp-includes/pluggable.php');add this line on your capabilities.phpQuick fix. Add this line on your capabilities.php
include_once(ABSPATH . 'wp-includes/pluggable.php');Hi,
How about having multiple multiple step forms?
- This reply was modified 8 years, 8 months ago by meiskv.
Forum: Plugins
In reply to: [Easy Appointments] More appointments on one time frameI was able to comment out the validation. The only thing that is left to be fixed is the front-end it still disabled.
Forum: Plugins
In reply to: [Easy Appointments] More appointments on one time frameI have try to inspect element and remove the “disable” on time-disable and make it time-value. But the system still pop-up that “slot is taken”.
Forum: Plugins
In reply to: [Easy Appointments] More appointments on one time framehi @crazyljuba,
I was wondering if what are the exact thing you change for all of this files to be able to do the multiple appointments in one time-frame.
My problem is I need to book multiple appointments in 1 time frame without dividing the time using the duration options.
Cheers!
sir hoffcamp i’ve just found a solution to the problem i use a javascript. btw thanks for the reply.
i think the ‘text-4ef29112d8a62’ is not dynamically changing even if you refresh the page but i think it will change if you add a new or renew the textbox in the dashboard. after creating the form the id that gave to the element will be permanent unless you re-create the element in the dashboard. am i right sir?
window.onload = function() { var name = fm_get_form_item('text-4ef29112d8a62'); var email = fm_get_form_item('text-4ef291141a19f'); name.value = "<?php echo $current_user->user_firstname;?> <?php echo $current_user->user_lastname;?>"; email.value = "<?php echo $current_user->user_email;?>"; }