jfreake
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] 14.0.1 Fatal ErrorSame here. Thanks!
Forum: Plugins
In reply to: [JSON API] thumbnails not included for attachment fixBefore making changes to the plugin code, check to see if you have jetpack>photon enabled. It rewrites the thumbnail urls to include the wp.com cdn in such a way that that makes the fileexists check fail.
I disabled photon and the thumbnail urls reappeared in the JSON feed.I just ran into this problem for the first time after having backup wordpress installed on many sites. To get around the error, I needed to deactivate Jetpack (v2.3.2), activate BUWP and then re-activate jetpack.
A note to the author:
Instead of having the plugin throw an error and stay in a broken state (with no access to the admin panel), can you change the functionality to instead show an alert followed by deactivating the BUWP plugin and returning to the plugins listing.Thanks.
Otherwise, fantastic plugin…great work.Jason
Forum: Plugins
In reply to: [Content Scheduler] email notification sending every hour!In the meantime, until the plugin gets updated, you can tweak the notifications to get generated daily instead of hourly by changing the 4 hourly references in content-scheduler.php
from this:
wp_schedule_event( time(), ‘hourly’, ‘content_scheduler_notify_’.$current_blog_id );
AND
wp_schedule_event( time(), ‘hourly’, ‘content_scheduler_notify’ );to this:
wp_schedule_event( time(), ‘daily’, ‘content_scheduler_notify_’.$current_blog_id );
AND
wp_schedule_event( time(), ‘daily’, ‘content_scheduler_notify’ );After making the code change, go to the plugin options page and re-save your options.
This worked for me.
JForum: Plugins
In reply to: [Content Scheduler] [Plugin: Content Scheduler] Development dropped?Thanks for the update Paul.
I look forward to the update.Is there an official way to request a feature.
I would like to see sorting/filtering on the expiry date column in the post admin screen.Also…what is your company URL ??
Thanks,
JI just updated the plugin and the ajax call is now working (it was possibly working before) but the stars are still a problem over https.
The issue is as a result of me setting up my site on http and later switching to https. It seems that the stars are setup to include the server URL at the time of installation.
As a work around, after switching to HTTPS mode, I remove the stars and re-add my own versions. This re-writes the link to the stars as an https address.Can I suggest a relative path for the stars?
Thanks,
JasonForum: Plugins
In reply to: [Content Scheduler] [Plugin: Content Scheduler] Development dropped?If he has dropped development, maybe he can hand over the project to someone else to maintain? Paul…care to comment? (by the way…great plugin ??
Forum: Plugins
In reply to: [Content Scheduler] email notification sending every hour!Same here. Not every hour but more frequently than we would like. (many times per day.)
Expiration frequency (in minutes): = 5000
Notify before expiration: = 14
Plugin version: 0.9.8A look at the cron information shows:
Once Hourly: content_scheduler_notify, every 60 mins
CS User Configured: content_scheduler, every 3 daysForum: Plugins
In reply to: [Anyfeed Slideshow] Picasa Feed is no longer loadingNo prob Soleil…glad I could help. Thanks to you for writing the plugin in the first place ??
Forum: Plugins
In reply to: [Anyfeed Slideshow] [Plugin: Anyfeed Slideshow] Picasa feed stopped workingare both of the plugins on https://ondetours.com working correctly right now?
Forum: Plugins
In reply to: [Anyfeed Slideshow] [Plugin: Anyfeed Slideshow] Picasa feed stopped workingI think you could.
You most likely just need to add a bit of jquery that adds the ref/lightbox property to each of the images in the anyfeed div.
What is the url to your site?Forum: Plugins
In reply to: [Anyfeed Slideshow] [Plugin: Anyfeed Slideshow] Picasa feed stopped workingGreat News! ??
Glad I could help.Forum: Plugins
In reply to: [Anyfeed Slideshow] [Plugin: Anyfeed Slideshow] Picasa feed stopped workingI think you need to set your anyfeed preferences to “Content” instead of “Thumbnail”
When I go to your site and manually re-trigger the anyfeed jquery init but change thumbnail to content, it looks good.
Forum: Plugins
In reply to: [Anyfeed Slideshow] [Plugin: Anyfeed Slideshow] Picasa feed stopped workingI think I found the problem.
This new error happened to me when I upgraded the Workpress framework to version 3.2.1Here is the background (semi-accurate)
From what I can tell, WP 3.2 updated jQuery to version 1.6.1 (I must have been running a pre 3.2 install before the upgrade)
There are some changes with the way jQuery handles quotes and escape characters in version 1.6+Here is the fix: Escape the colons!
Go to the installed plugins section of WP.
Click edit next to Anyfeed Slideshow.
On the right, choose the file “anyfeed-slideshow/anyfeed.php”.
In this file, find the line: nodeName=media:
Change it to: nodeName=media\\:
Also find the line: nodeName=content:encoded
Change it to: nodeName=content\\:encodedThis should work and as with my previous fix, realize that if the author updates the plugin without either of these fixes, you will have to make the changes manually again.
Cheers,
JForum: Plugins
In reply to: [Anyfeed Slideshow] Picasa Feed is no longer loadingRight on! haha
Just remember that if the plugin gets updated by the author without this new change being rolled in and you upgrade it, you will have to manually make this change again.Cheers,
J