squill1959
Forum Replies Created
-
Thank you. I think it will be helpful.
Apologies, I was going through the settings again and discovered I had disabled the Content Settings > Invoke Access Denied Redirect in an earlier session and I had not re-enabled it.
It is not just you, I have received the same emails. I too am interested to know what to do now.
Forum: Plugins
In reply to: [Google Calendar Widget] Spinning wheel – no calendar data displayed@stacy.gibbs
In the developer console, APIs section, is the Calendar API in the list of enabled APIs? If not then search in the list below and turn it on.
My referers entry has a forward slash before the final asterisk.
*domain.com/* so try *mountainviewpta.org/*Forum: Plugins
In reply to: [Google Calendar Widget] Spinning wheel – no calendar data displayed@stacy.gibbs
Your web page gives an error when trying to access the calendar:
“Error downloading Calendar [email protected] : Access Not Configured. The API is not enabled for your project, or there is a per-IP or per-Referer restriction configured on your API key and the request does not match these restrictions. Please use the Google Developers Console to update your configuration.”
Note, press F12 in Firefox or Chrome (not sure about IE) and select the console tab to see error messages.
Have you created the project in the Developers console as per the FAQ instructions?
Forum: Plugins
In reply to: [Google Calendar Widget] Spinning wheel – no calendar data displayedI too have had the same problem, but following the suggestions above have solved it for my site.
To get it working I had to:
1) Get a browser api key
2) Edit the calendar ID in the widget to just be the code next to “Calendar ID:” in the google calendar address field. In my case this is just the email address of the calendar account [email protected]. Note: make sure that the address contains an @ sign and not a percent40 as percent40 doesn’t work.Adding https: to the apis line in ko-calendar.php was not necessary.
Forum: Plugins
In reply to: [Image Cleanup] Fatal error – Function name must be a stringBingo.
That has fixed it. Well done and thank you.
By the way, On the plugins page in WordPress, the Visit Author Homepage and Visit Plugin Site links in the Image Cleanup section are set to ‘None’.
<div class="active second plugin-version-author-uri">Version 1.9.1 | By <a href="http://none" title="Visit author homepage">Robbert Langezaal</a> | <a href="http://none" title="Visit plugin site">Visit plugin site</a></div>Simon.
Forum: Plugins
In reply to: [Image Cleanup] Fatal error – Function name must be a stringHi Robbert.
I am afraid it has not fixed it.
The only difference in the error message is that the error has moved to line 826 rather than 824.
If it helps, the information on the Invalid Attachment Meta list is as follows:
'
Index 0
File Ben-Web-300×239.jpg
File Exist No
Dimensions file not found [300 x 239]
Meta ID 2364 (full)
Path /home/xxxxxxxx/public_html/test/wp-content/uploads/2012/10
'Anything else I can do to help debug this?
Regards,
Simon.Forum: Plugins
In reply to: [Menu Item Visibility Control] is_child functionHi again.
The answer is I am wrong on two counts!
The is_child function doesn’t do what I expect and my logic syntax flawed.
Rather than ‘or’ it should be ‘||’.
In then end I used:
is_page(array(‘parent-page-name’,’peer-1-name’,’peer-2-name’))
which works, but is a bit unweildy as you have to manually add a new peer page to each menu item in a section.
What I am trying to achieve is to show the children of a menu item if either the parent page is visible or any of the children of that parent page are visible. An is_peer(me) function.