Uobet
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy] multiple events filling out the booking form just onceThe jquery solution is not for me due to missing know-how.
On the other hand I could imagine, that also other eme-users could be interested in such a feature.
I’ll try to formulate a feature request.
Thank you
S
Forum: Plugins
In reply to: [Volunteer Sign Up Sheets] conflict with other plugins due to jqueryI confirm that with the new version of PTA Volunteer Sign Up Sheets the conflict with Events Made Easy has disappeard.
Thank you very much for your quick and professional help!
S
Forum: Plugins
In reply to: [Events Made Easy] not able to open new eventsThe plugin-author of PTA Volunteer Sign Up Sheet solved the problem.
The problem was not caused by a “wrong programming” but by the following situation, which was very quickly solved by the plugin-author.I add his detailed explanation here:
I have quickly found the conflict with Events Made Easy. We are both using the same Datepick jQuery script for entering dates on the admin side, and registering it with the same name, but the versions are different. Mine must be getting registered before theirs, causing theirs to not work properly due to differences in the versions. That is a third party, open source script, that neither of us wrote ourselves, but that makes it easier to enter dates in the proper format by allowing users to select the dates from a calendar.I did a quick test on my local machine of renaming mine from the standard jquery-datepick, to pta-datepick, and the conflict went away.
This is not a case of either of us doing something “wrong”, it’s just a conflict of two different versions of the same script registered with the same name.
I will update my plugin later today.
Forum: Plugins
In reply to: [Volunteer Sign Up Sheets] conflict with other plugins due to jqueryFirst of all sorry for wrongly accusing your plugin. I am going to clear that in the eme-support-forum.
Thank you very much for solving the problem.
Forum: Plugins
In reply to: [Events Made Easy] multiple events filling out the booking form just onceJust one more questions to this special case.
In my special case I have various user-defined fields referring to the booking person (parents, child, special questions about the child’s health…).
Unfortunately these custom_made files can’t be included in the header template and can only be added to the list_entry template (https://www.e-dynamics.be/wordpress/?p=481).
But if I put them to the latter, the booking person would have to fill in these details repeatedly (as many times as the weeks he/she wants to book). This doesn’t make sense.Therefore the present solution with the checkbox-field seems better to me, also with the above mentioned disadvantages (calendar and csv-File). Or do you see a better solution?
Do you think that one of the future versionse of eme will include the possibility to add custom fields also to the header?
Best Regards
S
Forum: Plugins
In reply to: [Events Made Easy] not able to open new eventsHi Franky,
thank you very much for your hint.
You were right, I identified the plugin in question, it’s the plugin PTA Volunteer Signup Sheet.
I am going to contact the plugin author.Thank you, problem solved.
S
Forum: Plugins
In reply to: [Events Made Easy] not able to open new eventsI would like to add the following information:
Also existing events – although shown correctly in the homepage – can’t be edited (event dates are not shown: empty, in yellow, it is not possible to add a date, the title can’t be edited…)Forum: Plugins
In reply to: [Events Made Easy] multiple events filling out the booking form just oncesorry, I had not seen this part of the manual.
Great, as usual, you’ve already thought over every possible case ??
Thank you very much for this great plugin and sorry again.
S
Sorry Franky,
as much as I’ve understood I can just wait for the next versione of eme and the eme_rsvp.php will be changed correspondingly.
But I have not understood what else I have to do then for formatting the contents of the field?
Do I keep the previous filter as it is?thank you
Best Regards
S
It would be great, if you could find a solution.
Take your time, it’s not an urgent matter.
Thank you very much in the meanwhile.
S
I tried
return str_replace(‘||’,”,
“,$answer);and
return str_replace(‘||’,”
“,$answer);and
return str_replace(‘||’,’,
‘,$answer);but the Output is
A
, B
…Do you have a clue why it takes the
as string, if all the other html-tags are correctly interpreted?sorry, but it doesn’t work.
i did obviously not place the php-command \n in the html-mail.
with:
return str_replace ‘||’,”, “,$answer);
the output in the mail through placing
…
TextBeforeField #_FIELD{XX}TextAfterField
…
in the template
is:
TextBeforeField A, B, C TextAfterFieldwith
return str_replace ‘||’,”,\n”,$answer);
I would expect
A,
B,
C
but the Output is still
A, B, CS
ups, honestly speaking yes, I am trying to place it in a html-mail,
But I do not understand what you mean?At present I placed something like
…TextBeforeField #_FIELD{XX} TextAfterField…
in the e-mail.Do I have to change that?
S
I tried:
with
…
return str_replace(‘||’,”,\n”,$answer);the ouput is:
stringA, stringB, stringC, …and not – as one would expect:
stringA,
stringB,
stringC,
…S
sorry, I meant \n of course
I tried:
…
return str_replace(‘||’,’,’.”\n”,$answer);but it’s not working?