lilqhgal
Forum Replies Created
-
Forum: Plugins
In reply to: [ICS Calendar] Google Calendar URL EmptyGot cURL added and turned allow_url_fopen on and everything works!!
Forum: Plugins
In reply to: [ICS Calendar] Google Calendar URL EmptyCan you go to the ICS Calendar page in your admin and grab the System Report? I would recommend that you email it to me (email address is on that page) rather than posting it here.
So here’s something interesting, it just shows a “critical error” message, and does not offer an email address to send.
I have root access to the server, how do I check for `cURL?
Forum: Plugins
In reply to: [ICS Calendar] Google Calendar URL Empty@jdembowski Thank you! And sorry for being persistent about the response, I didn’t know how long it would be in queue.
Forum: Plugins
In reply to: [ICS Calendar] Google Calendar URL EmptySorry I posted a response and it’s being held for moderation?
Forum: Plugins
In reply to: [ICS Calendar] Google Calendar URL EmptyThanks for the quick response and help. To answer:
Plugin is active. I haven’t checked for conflicts but don’t see anything major? No cache plugins. The page displays a calendar that is empty, and the debug (when true) shows that the calendar returns empty, yet clicking the link next to it to validate it says it’s good.
Shortcode:
[ics_calendar url="https://calendar.google.com/calendar/ical/i4tbmdasopork96gm87c3001l8%40group.calendar.google.com/public/basic.ics" view="month" reload="true" debug="true"]
Here’s the debug:
ICS CALENDAR DEBUGGER Array ( [args] => Array ( [arrayonly] => [attach] => [color] => [columnlabels] => [compact] => [count] => 0 [currentweek] => [curlopts] => Array ( [0] => ) [customoptions] => Array ( [0] => ) [debug] => 1 [description] => [eventdesc] => [extendmultiday] => [feedlabel] => [fixredundantuids] => [format] => [formatmonthyear] => F Y [guid] => [hidealldayindicator] => [hiderecurrence] => [hidetimes] => [legendinline] => [legendposition] => [legendstyle] => [limitdays] => 365 [limitdayscustom] => [linebreakfix] => [linktitles] => [location] => [maskinfo] => [method] => [monthnav] => [nolink] => [nomobile] => [nomonthheaders] => [organizer] => [pastdays] => 0 [reload] => 1 [showendtimes] => [skip] => 0 [skiprecurrence] => [startdate] => 0 [tablebg] => [title] => [toggle] => [tz] => [url] => https://calendar.google.com/calendar/ical/i4tbmdasopork96gm87c3001l8%40group.calendar.google.com/public/basic.ics [view] => month [weeknumbers] => ) [Included date range] => 20220101 to 20221231 [https://calendar.google.com/calendar/ical/i4tbmdasopork96gm87c3001l8%40group.calendar.google.com/public/basic.ics] => Array ( [ICS Feed] => DOWNLOAD // VALIDATE [Errors] => Array ( [0] => URL contents empty (https://calendar.google.com/calendar/ical/i4tbmdasopork96gm87c3001l8%40group.calendar.google.com/public/basic.ics) ) ) [Peak memory usage] => 54.56 MB [Plugin Data] => Array ( [events] => Array ( [2022] => Array ( [01] => [02] => [03] => [04] => [05] => [06] => [07] => [08] => [09] => [10] => [11] => [12] => ) ) [urls] => https://calendar.google.com/calendar/ical/i4tbmdasopork96gm87c3001l8%40group.calendar.google.com/public/basic.ics [tz] => [guid] => rffed9714-6f3b-4a75-b04d-e182427969c5 [title] => [description] => [colors] => [tablebg] => [feed_titles] => Array ( ) [earliest] => 202201 [latest] => 202212 ) )
Ok, thank you. Can you check on my other two requests here in the forum? Thanks!
Yes I did try that setting and it still strips out the code I need to have in there.
It seems that the issue with the donations progress bar is gone as it appears to be working. I did try it again with 2 donations from one account and it worked, but now I’ve moved to using the donor’s own email address.
Can I email that info to you? The site is currently in development.
Thank you! I was hoping for an easier admin-based interface to add these. So you’re saying if I want to add any number of pre-existing donations (that were taken manually prior to using this plugin) that I have to do so from the front end for each person?
I did try that, and when using my own email address (so as not to bother those who have already donated), the donations progress bar did not add up correctly. I entered two $85 donations and the bar only showed as 1 donation, even though both were approved.
Forum: Plugins
In reply to: [Yoast SEO] How long does it take to update Facebook?So as I suspected something was wrong somewhere…
I visited: https://developers.facebook.com/tools/debug/og/object/ and refreshed the FB information. Now getting this error:
Object at URL 'https://mywebsite.com/' of type 'website' is invalid because the given value '1234567890' for property 'fb:admins' could not be parsed as type 'fbid'.
(Note: website url and value # changed.)
I combined the concept on this other WP forum post on Relevanssi and this tutorial on search checkboxes and had great results. It was working like a charm. But then I tried getting Dave’s WordPress Live Search plugin to play nice and it only works when when the hidden input type is set to:
<input type="hidden" name="post_type" value="my-cpt" />
whereas my code to get the above to work together is:
<input type="hidden" name="post_type[]" value="my-cpt" />
Yes, that FAQ is great, but I’m a bit of a PHP noob, especially when it comes to this search stuff.
Sorry, I changed my post halfway thru my thought process! ??
Thanks Alex,
Yes adding the hidden input with my CPT to the form field works to filter the CPT. I actually had it working great using checkboxes based on a few tutorials (like this one) I found online, but I ran into an error. I am also using Dave’s Live Search plugin to return search suggestions using ajax. Since I used a dynamically produced array for the input name, the ajax wasn’t grabbing it, because the array wasn’t filled until the search form was fired. (Hope that makes sense.)
My code is:
<input type="hidden" name="post_type[]" value="my-cpt" />
And I need it to be:
<input type="hidden" name="post_type" value="my-cpt" />
for the ajax to work. Hmm…