Mike Auteri
Forum Replies Created
-
Forum: Plugins
In reply to: [FB Photo Sync] Working with 1-Page ThemesMaybe try something like this:
<?php
global $wpdb;$query = $wpdb->prepare( “
SELECT option_name
FROM {$wpdb->options}
WHERE
option_name LIKE %s
“, ‘fbps_album_%’ );$albums = $wpdb->get_results( $query );
foreach( $albums as $album ) {
$id = str_replace(‘fbps_album_’, ”, $album->option_name);
echo do_shortcode(‘[fb_album id=” ‘ . esc_attr( $id ) . ‘ ” wp_photos=”true”]’);
}Forum: Plugins
In reply to: [FB Photo Sync] Does not sync Timeline Photos albumHi, you have a lot of photos in your timeline album. Since this plugin is still in beta, it appears that it just can’t handle that many photos yet. I will use your example as a way to help it scale for larger albums. Thanks.
Forum: Plugins
In reply to: [FB Photo Sync] Does not sync Timeline Photos albumIf you post the Facebook page you are trying to import , I can attempt to recreate the issue and push out a fix if I find one.
Forum: Plugins
In reply to: [FB Photo Sync] Some pictures shown as blank squareCurrently all IDs have to be for public pages, so if the ID you enter is not public, nothing will happen. This plugin only works with Facebook images that are public. I’m working on allowing private images to be accepted as well, but that requires a bit more work. I’ll also need to add in more error handling so you know that it has errored rather than having it do nothing.
Forum: Plugins
In reply to: [FB Photo Sync] Some pictures shown as blank squareresolving this.
Forum: Plugins
In reply to: [FB Photo Sync] Trying to use a Facebook Group pageHi, currently there is no support for groups. That may come when I add the feature that allows importing of personal albums. Since those are both private, it’s a bit more involved to get that data from Facebook.
Forum: Plugins
In reply to: [FB Photo Sync] Video SupportThere is no plan for video support in my roadmap since this is meant to be a photo plugin.
Forum: Plugins
In reply to: [FB Photo Sync] Album coverCurrently there is only one display, however, I plan on eventually adding more. That being said, if you know a WordPress developer that can help you, you can do just about anything utilizing the data saved by the plugin.
Forum: Plugins
In reply to: [FB Photo Sync] Some pictures shown as blank squareHi Kris.sie,
Thanks for checking out my plugin and I’m glad you find it simple to use.
At the moment, the plugin is referencing the image that is hosted on Facebook, so it sounds like there is something wrong with the URL to the image on Facebook, though it may only be temporary. You can try clicking “sync” on the album again in the admin to see if that fixes the issue.
Also, I’m just about to release the next version of the plugin (0.2), which has the option to import all images from an album into WordPress instead of referencing them on Facebook. This new feature might fix your issue if clicking sync doesn’t work. Hope that helps.
Take care,
MikeCool, thx. I’ll patch 1.6.2 then.
Awesome! Is the fix in 1.6.2 or going into 1.6.3? Thx.