oxxyfx
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [ColorMag] Theme update issuesThank you, I can confirm that the header media block is now working as expected.
Forum: Themes and Templates
In reply to: [ColorMag] Theme update issuesHello, I tried. Removed all the header media, added back only one picture and that does not show up.
Forum: Themes and Templates
In reply to: [ColorMag] Theme update issuesThank you, that helped. However after the update ant trying to customize things, the header media dissapeared. Please check it out at https://hvrcf.org – it is missing the pictures compared to the picuters above. How can I get it back?
Forum: Themes and Templates
In reply to: [ColorMag] Theme update issuesThis is how it lopoks like before update
Forum: Themes and Templates
In reply to: [ColorMag] Theme update issuesThis is how it looks after update
Thanks a million! You rock! Our members will be happy so they can now book multiple flight slots again! Thanks again.
@centenarypark yes indeed, I opened a separate issue for my problem, but @codepeople seem to have closed that under the same umbrella. @codepeople can you please reopen the other thread I have opened on a very similar – but not the same issue titled: “Double booking same time slot”
- This reply was modified 3 years, 11 months ago by oxxyfx.
Hello,
this does not resolve my issue. Please check out the attached pictures, those clearly explain that the same time slot can be booked in many times. 2 versions back this was not possible, even with the multiple appointments allowed by the same requestor, the same time slot could not been booked twice – or multiple times as below.
Here are the pictures of my example for the above:
https://hvrcf.org/wp/wp-content/uploads/participants-database/aapt1.JPG
https://hvrcf.org/wp/wp-content/uploads/participants-database/aapt2.JPG
https://hvrcf.org/wp/wp-content/uploads/participants-database/aapt3.JPGas you can see in the last picture this allows the same 10-12 slot to be booked multiple times. Prior to the last 2 versions the first time the 10-12 slot got selected, it became greyed out, so you could not ad it again, but you could book another slot like 12-14.
- This reply was modified 3 years, 11 months ago by oxxyfx.
Here are the pictures of my example for the above:
https://hvrcf.org/wp/wp-content/uploads/participants-database/aapt1.JPG
https://hvrcf.org/wp/wp-content/uploads/participants-database/aapt2.JPG
https://hvrcf.org/wp/wp-content/uploads/participants-database/aapt3.JPGas you can see in the last picture this allows the same 10-20 slot to be booked multiple times. Prior to the last 2 versions, you could not book the same slot twice.
- This reply was modified 3 years, 11 months ago by oxxyfx.
@codepeople, I am using the free plugin version. I only have one line with capacity of 10. Also below I have set “Max number of appointments” to 2, so people can book 2 slots. The number seems to be correct, but if by mistake clicking the 10-12 slot twice, it will book the same slot twice. Previously it used to grey out, so you cannot book the same slot again like in the example below:
Appointments:
– 03/29/2021 10:00-12:00 (Reservation)
– 03/29/2021 10:00-12:00 (Reservation)@codepeople I apologize for breaking the bad new, but the issue is still there. I allowed “Max Number of appointments” = 2 and it seems it has no issues of allowing me to book the same slot twice again. Here is the response I received:
The following booking request has been received: Appointments: - 03/29/2021 10:00-12:00 (Reservation) - 03/29/2021 10:00-12:00 (Reservation) Email: zzzz@zzz.zzz Name: OxxyFX MAAC Number: zzzzz Guest Name(s): ADDITIONAL INFORMATION *********************************
@codepeople I apologize for breaking the bad new, but the issue is still there. I allowed “Max Number of appointments” = 2 and it seems it has no issues of allowing me to book the same slot twice again. Here is the response I received:
The following booking request has been received: Appointments: - 03/29/2021 10:00-12:00 (Reservation) - 03/29/2021 10:00-12:00 (Reservation) Email: zzzz@zzz.zzz Name: OxxyFX MAAC Number: zzzzz Guest Name(s): ADDITIONAL INFORMATION *********************************
I think I posted this in the wrong thread. Please remove.
I do not seem to be able to locate any easy way to exempt a page in WordPress from caching. Would you use a plugin like W3 Total Cache or is there an easier way?
Forum: Plugins
In reply to: [Participants Database] Separate edit record for admins and for membersI got this working, but I do not think it solves my problem. The filter is like this:
add_filter('pdb-record_edit_page', 'change_edit_page_link'); function change_edit_page_link( $url ) { $urlnew = "https://somewebsite.com/wp/update-member/?"; $url_array = explode("?", $url); $privateid = $url_array[1]; if ( current_user_can('administrator')){ $record_edit_page = $url; } else { $record_edit_page = $urlnew . $privateid; } return $record_edit_page; }
I can rewrite the edit_record_page now, and it works great, when the user is logged in and updates the record through the website. However the problem is that if the user requests a private link to edit his own record, he gets an
https://somewebsite.com/wp/edit-member/?pid=TV8BA
link. The user is not logged in and the above link does not get overwritten by the filter, because I guess it is a direct typed in – or pasted in link
Now the question is how do I overwrite that link into:
https://somewebsite.com/wp/update-member/?pid=TV8BA
- This reply was modified 4 years, 5 months ago by oxxyfx.