theArab
Forum Replies Created
-
Forum: Plugins
In reply to: [Skedmaker] No display when selecting future months (ver 0.98)Marking this as resolved. If you have any other issues, please open another support ticket.
Forum: Plugins
In reply to: [Skedmaker] No display when selecting future months (ver 0.98)Can you go to Default Settings, and check off the days of the week to just to activate them. See if this works.
Also, just to be sure, you applied the custom setting to the days you wanted from the “Apply Custom” page right?
Forum: Plugins
In reply to: [Skedmaker] Day of Week: MondayOpen the file _includes/sm-functions
find the function: SM_create_calendar()Find this code in the function:
case “Sun”: $blank = 0; break;
case “Mon”: $blank = 1; break;
case “Tue”: $blank = 2; break;
case “Wed”: $blank = 3; break;
case “Thu”: $blank = 4; break;
case “Fri”: $blank = 5; break;
case “Sat”: $blank = 6; break;Change to this:
case “Sun”: $blank = 6; break;
case “Mon”: $blank = 0; break;
case “Tue”: $blank = 1; break;
case “Wed”: $blank = 2; break;
case “Thu”: $blank = 3; break;
case “Fri”: $blank = 4; break;
case “Sat”: $blank = 5; break;We are forcing Monday to be the first day(0) and Sunday to be the last day (6).
You will also have to edit the html where the weekdays are coded.
Search for this:
//——- show weekdays on column headers
The code is right under there. Just change Sun to Mon ect.
I think this should work for you.Forum: Plugins
In reply to: [Skedmaker] I need one more feature for reservations… is that possible?It’s on the whiteboard for next updates.
??Forum: Plugins
In reply to: [Skedmaker] I need one more feature for reservations… is that possible?Thats great to hear glad it worked for you! Slowly but surely goes the pro version! ?? I’m actually trying to finalize a completely different plugin right now.
Forum: Plugins
In reply to: [Skedmaker] Not working?Do you have the default setting set up properly? Is the day checked off to be active?
Forum: Plugins
In reply to: [Skedmaker] I need one more feature for reservations… is that possible?By the way, I’m curious…. did those files I sent over work for you??
Forum: Plugins
In reply to: [Skedmaker] I need one more feature for reservations… is that possible?Sorry for the delay in response.
I hope to have it ready to go in the next couple months.
Not sure of the price.
It may be something that is compartmentalized and you can just get the components you want to use.Forum: Plugins
In reply to: [Skedmaker] Multiple schedules, calendarsSorry, with this WP version, you can only have one calendar.
You might be able to achieve what you want by setting up the different Rooms/Workers in the “Services” section.
Then require your client to select from the drop list.
With cancelling, only the admin can cancel from the admin panel.
And the client is only allowed to cancel from the page.
This allows for the system to keep track of who has cancelled and send the appropriate emails.
I hope this helps.Forum: Plugins
In reply to: [Skedmaker] I need one more feature for reservations… is that possible?Well right now, I’m still finalizing the Pro version. I plan to have it allow for payments.
Forum: Plugins
In reply to: [Skedmaker] I need one more feature for reservations… is that possible?I have come up with something that I think will work for you.
Under Options, I added a “Limit Services” check box.
When you check this, it will only allow for one service to be selected per time frame.
So you can name you bikes, services, etc. and then once a client has taken one, it will not be available to the next client in the same time frame.
You’ll need to repalce 4 files.
I have a zip folder for you to get them here:
https://www.skedmaker.com/for_amcbean.zip!!! NOTE: If you have made any modifications to the code in these files, be sure to back them up.
Once you replace the files and upload them. Login to WP admin. Click on Skedmaker and you should see it has added a new database colum. You can now go and select to limit services under Options.
I changed the field name from Select Services to Select Bike:
You can change this to what you want it’s in the file include/_form_confirm
Hope this helps. I tried in on my system and it workd. But please let me know if not. cheers!Forum: Plugins
In reply to: [Skedmaker] I need one more feature for reservations… is that possible?Thanks for your notes, I appreciate it.
All of the customizations you want can be done.
If you like, send me a message on the Contact page of my website and we can discuss more thoroughly a project scope and rates.Forum: Plugins
In reply to: [Skedmaker] I need one more feature for reservations… is that possible?It’s possible. But would definitely require some customization of the code. The form would need to have the fields added to select for the bike sizes. Then would have to figure the logic for finding if certain sizes were available at a given time. The database table will also need to be altered to store the selected sizes.
Forum: Plugins
In reply to: [Skedmaker] I need one more feature for reservations… is that possible?Hi there, I’m glad the plugin is working for you.
I’m sorry but it does not allow for this.
I’m not saying it can not be done.
But, it would have to be something customized into the plugin.Forum: Plugins
In reply to: [Skedmaker] Problem with setting up appointment scheduleThanks for posting back. Did changing to <?php fix the problem for you?