Chaser324
Forum Replies Created
-
Forum: Plugins
In reply to: [Google Calendar Widget] 403 Forbidden on Cal URL – Deprecated API?@gremie, if you’re dead set on using that private URL, you’re going to need to rewrite the plugin to fetch and parse that XML rather than going through any Google API. Any calendar that is set to private is going to be treated as private by Google’s API.
Forum: Plugins
In reply to: [Google Calendar Widget] 403 Forbidden on Cal URL – Deprecated API?I ended up doing a partial rewrite using jQuery to fetch data through the Google Calendar REST API, which as far as I can tell is basically your only option. I cut some functionality in the process just for the sake of getting it done quickly, but it was stuff that I personally wasn’t using.
Take a look here to see my changes. No promises – the updates worked for me but I stopped well short of making this public release worthy.
Forum: Plugins
In reply to: [Featured Posts Grid] Can Featured Posts Grid link to single page?This should be possible by setting the proper parameters. Something like this, I think should work:
<?php if (function_exists('fpg_show')) { $args = array( 'post_type' => 'page', 'page_id' => '1,2,3,4' ); echo fpg_show($args); }?>Forum: Plugins
In reply to: [Featured Posts Grid] [Plugin: Featured Posts Grid] fpg.css.php not fpg.cssThis is very dependent on server setup, so it’s difficult for me to know exactly why the static file can’t be created.
Forum: Plugins
In reply to: [Featured Posts Grid] [Plugin: Featured Posts Grid] w3c validator : errorsThese are fairly trivial errors, but they are something that I’ll make note of and correct if/when I do a future update…however, I think at this point I would probably just start from scratch and make a new FPG2 plugin.
Forum: Plugins
In reply to: [Featured Posts Grid] Shortcodes not workingTo insert the FPG into a .php template, you should not use the shortcode. Use the full PHP code:
<?php if (function_exists('fpg_show')) { echo fpg_show(NULL); } ?>Forum: Plugins
In reply to: [Featured Posts Grid] can't get this shown on indexYou likely pasted it within already present PHP code (i.e. between “<?” and “?>” that were already in your index.php file).
Forum: Plugins
In reply to: [Featured Posts Grid] Customizing the codeI’ve considered adding this feature, but up to this point I have not.
This is actually caused by a CSS issue that I’m aware of that occurs with some themes. I’ve helped some people properly resolve this issue before, but I have yet to implement a fix in the plugin to prevent it.
Forum: Plugins
In reply to: [Featured Posts Grid] No images / thumbnails are presentedAre you setting a featured image in the posts?
I’m not sure that there is any easy way around this. Unfortunately, I wrote the FPG to really only work well with fixed width websites. Modifying it to work on a fluid layout could take some time.
Forum: Plugins
In reply to: [Featured Posts Grid] FPG hanging sometimesDo you happen to know if the fpg.css file is being properly cached or is it generating it on every page load from fpg.css.php?
My apologies that you had to sort through this on your own. Did you try contacting me via e-mail?
I’m actually not 100% sure how your solution fixed the issue, but I’ll try to possibly integrate it or a similar fix into a future release.
If you’re using the
catparameter, you have to use the category ID, not the slug.If you want to filter on the slug, use the
category_nameparameter.Forum: Plugins
In reply to: [Featured Posts Grid] [Plugin: Featured Posts Grid] Content won't displayI can’t recall what the solution was…but I think we did get this fixed, so I’m going to go ahead and mark this as resolved.