gbeebe
Forum Replies Created
-
Forum: Plugins
In reply to: [custom tables] impossible to add fieldsYou can fix this within the PHP code in the file:
/custom-tables/pages/setup_table.php : line 485from:
document.forms[0].insertBefore(newFieldContainer,nFloor);to:
document.getElementsByName('wctform')[0].insertBefore(newFieldContainer,nFloor);This will target the form specifically (as faina09 mentioned above) and adds the extra fields.
Forum: Plugins
In reply to: [Event Organiser] in 'Events Agenda', list multiple days from an eventThanks for the suggestion. I managed to construct an add to google calendar link with just the event’s title and the start/end datetimes, but it sure would be nice to be able to include the description and location, when applicable.
My workaround seems to work for now, but I would definitely enjoy some sort of function to construct it for me.
Forum: Plugins
In reply to: [Event Organiser] in 'Events Agenda', list multiple days from an eventHi Stephen, quick question —
What would be your suggestion to creating an ‘add to Google Calendar’ link from outside of the loop? All I see is a function to obtain one when within the loop, but for this add-on I was not using the loop. Any suggestions, or a possibility of another function which takes an event’s ID?
Thanks!
Forum: Plugins
In reply to: [Event Organiser] in 'Events Agenda', list multiple days from an eventFantastic idea – I should have thought of writing my own from the beginning.
Gotcha, thanks for the information!