eppand
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook Comments Notifier] Login to PostCan you provide more details on the site in question or a Aachen shoot of the Facebook message?
Forum: Plugins
In reply to: [Facebook Comments Notifier] SEOJaabie, the short of it is no. The plugin doesn’t do anything to directly impact search performance signals. The major factor is that the Facebook comments content is in an iframe, thus the comments aren’t directly on your site. The idea in using Facebook comments would be to drive up use interaction while reducing spam.
Forum: Plugins
In reply to: [Facebook Comments Notifier] How do I moderate comments?Just published v1.4 of this plugin to include the Facebook User ID field to the plugin’s settings page.
Update the plugin and you should be able to add your User ID from there. The page also includes a guide for how to locate your Facebook User ID.
Forum: Plugins
In reply to: [Facebook Comments Notifier] How do I moderate comments?Daithy,
The comments are not moderated from the WordPress dashboard. Comment moderation is done via Facebook. Information regarding Facebook comment moderation can be found here: https://developers.facebook.com/docs/reference/plugins/comments/
The comment count is not populated like the standard WordPress comments. At this time the plugin does not support comment count. However, we may consider that in a future release.
Thanks!
Forum: Plugins
In reply to: [Facebook Comments Notifier] How to set absolute position for fb plugin ?In your theme, the most common WP method reference to display the comments is comments_template(). Changing the location in the code will change where WP outputs the comments area.
Forum: Plugins
In reply to: [Facebook Comments Notifier] How to set absolute position for fb plugin ?jokako,
The plugin swaps at the location of the WP Comments. So moving the location of your WP Comments method in your theme will change where the Plugin places the Facebook Comments iframe.We have testing our plugin in IE 8 and IE 9
I am pretty certain that Facebook doesn’t support IE7 with their social plugins. Many companies began to follow Google’s lead in only supporting the latest version release of IE.
What version of IE are you using? When I view your blog in IE 9 the facebook comments box is there. Are your WP comments being controlled by your theme in a specific manor?
I too have found it unable to update venue info on v 2.0.3 using WP 3.3.1.
I too am seeing the issue, only on the blog posts loop page, not on individual posts, pages, or the homepage.
Jake I ran into a similar issue with the list widget not displaying the dates for multiday events. The fix I employed was to edit the events-list-load-widget-display.php file that you can override within your theme.
Code Removed (lines 45 – 53):
echo tribe_get_start_date( $post->ID ); if( tribe_is_multiday( $post->ID ) || !$event->AllDay ) { echo ' - ' . tribe_get_end_date($post->ID); } if($event->AllDay) { echo ' <small>('.__('All Day','tribe-events-calendar').')</small>'; }Code added in its place:
$st_date = date("F j, Y", strtotime($event->StartDate)); echo $st_date; $en_date = date("F j, Y", strtotime($event->EndDate)); if ( $st_date !== $en_date ) { echo ' - ' . $en_date; }This was on an install of 2.0.2 of the plugin and WP 3.3.