yerlix
Forum Replies Created
-
Hi @sunny454
I’ve got it working by changing my file that I import in Google Calendar.
I already had an event with a recurrence on the first t=Tuesday and exported it to ics format. Next I opened it with a text editor and copy pasted everything and deleted all but one event. After altering that event according to my wishes, I uploaded it again to Gcal and that worked like a charm!Many thanks for trying to help out!
Hi @sunny454
Thanks for your feedback. The reason for me to sync from Google Calendar is so that other people can edit the calendar without having to login into the website.
I do maintain the website, but the person who plans everything doesn’t know the least bit about websites let alone WordPress.
So if that person can make changes in the Google calendar and that syncs to our website is the easiest flow for us.Now I’ve created the recurring event for every Tuesday except the first and a separate event for every Friday except the third of each moth.
In Google Calendar it looks OK (https://goo.gl/Uc3tSn)Now we want that the recurring event is shown on every occurrence. I’ve read in another thread (https://www.ads-software.com/support/topic/display-recurring-event-every-day/) that this is deliberately done?
But when clicking to the event detail, I can only see that the event is recurring, but not the specific days.I’ve created the event in Google Calendar using the import function by creating a text file (included below). Maybe something is wrong in the file. That’s also a possibility.
The text file:
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//ABC//DEF//EN
METHOD:PUBLISH
BEGIN:VEVENT
SUMMARY:Training
UID:2017-2018-TU
SEQUENCE:0
STATUS:CONFIRMED
TRANSP:TRANSPARENT
RRULE:FREQ=MONTHLY;BYSETPOS=2,3,4,5;BYDAY=TU;INTERVAL=1;UNTIL=20180630T220000Z
DTSTART:20171212T200000
DTEND: 20171212T213000
DTSTAMP:20171208T083400
END:VEVENT
END:VCALENDARForum: Plugins
In reply to: [Meta Box] no "add media" button in my custom post typescan you please provide the code that you are using? Or haven’t you changed anything to the plugin?
Because the plugin won’t work for custom post types until you declare the metabox for the specific post type.
If you want to use it on a specific post type, u can use the code provided by the author. Here is a link where you can find a template to do that: https://github.com/rilwis/meta-box/blob/master/demo/all-custom-post-types.php
You need to change the code on line 15 to your own post type from:
$post_types = get_post_types();
to:
$post_types = "my_custom_post_type";
Hope this is helpful
I was using my own plugins which worked all fine. Then I got the error and I tried to deactivate all the plugins and activate Rotating Tweets.
But that gave the error as well. Next I tried to use another plugin which gave the same result. I’ve tried that one without any other plugins running but same thing.
On my new site however, everything works without a problem. Even the previous error I noted (about the admin_menu hook) didn’t show.
I couldn’t figure out where the error came from because I haven’t opened a file outside the wp-content folder.
When I make a new site, it works.
No error or something else.I’m using verison 3.9.
With the administrator role (the first user you make when you install a fresh wp-site)
I’m using version 3.9 with the twentyfourteen theme just for testing purposes.
Forum: Plugins
In reply to: [Meta Box] Image upload not workingI did a clean install and it worked again
I suppose that they meant that you have to change it in the generated tag itself. Changing this in de source code will be much more troublesome i think.
Forum: Hacks
In reply to: custom message on quick editThanks for your input.
My bulk edit does work now, only the quick edit doesn’t. Currently I’m trying to reload the page with javascript, but this gives me an ugly interface for a couple seconds.
Is there a way to call the error box with javascript?
Forum: Fixing WordPress
In reply to: Remove parts from quick editI found a solution that works for me
I use javascript to remove the elements:$('span:contains("Slug")').each(function (i) { $(this).parent().remove(); }); $('span:contains("Wachtwoord")').each(function (i) { $(this).parent().parent().remove(); }); $('span:contains("Date")').each(function (i) { $(this).parent().remove(); }); $('span:contains("Datum")').each(function (i) { $(this).parent().remove(); }); $('.inline-edit-date').each(function (i) { $(this).remove(); });
My site is in dutch so I must make extra functions to remove the labels. The input fields were in english