Integrate Facebook comments with native comments
Integrate Facebook comments with native comments
Integrate Facebook comments with native comments
As far as I know this is not possible the way you’re trying to get it to work. You can specify an image for Facebook to use in the <meta> tag, but that’s about it. One thing you can try is use JavaScript to invoke the Facebook feed dialog. It has a picture parameter: picture … Read more
Is there a good plugin to restrict content and allow users to connect with their Facebook or Google info? Basically you are going to create a membership site. In this condition either you will have to code a plugin or just install Membership Plugin (To hide content from non logged in users). You might not … Read more
Integrating Facebook calender to WordPress
First of all download the zip of facebook php sdk from Facebook PHP SDK from Github.com Extract the zip folder, you need only the ‘src’ folder for integrate your facebook application in your plugin. copy the ‘src’ folder and paste it in your plugin directory. In your plugin installer file, first start your session by … Read more
The Javascript is outside the loop, so php can never access get_the_title(), get_permalink() and get_the_post_thumbnail() from there. What I’d do is include those somewhere in the loop, for instance: <div class=”entry-content”> <h2 class=”post-title”><?php the_title(); ?></h2> <a class=”share-button” data-title=”<?php the_title(); ?>”></a> </div> Then with jQuery, you can grab them from the HTML generated by the loop. … Read more
Try this: In your functions.php put this function fb_excerpt($text, $excerpt) { if ($excerpt) return $excerpt; $raw_excerpt = $text; $text = strip_shortcodes( $text ); $text = apply_filters(‘the_content’, $text); $text = str_replace(‘]]>’, ‘]]>’, $text); $text = strip_tags($text); $excerpt_length = apply_filters(‘excerpt_length’, 55); $words = preg_split(“/[\n\r\t ]+/”, $text, $excerpt_length + 1, PREG_SPLIT_NO_EMPTY); if (count($words) > $excerpt_length) { array_pop($words); $text … Read more
How to integrate Facebook Share button without code?
Sharing post from archive page (loop) doesn’t work
I am having a very similar problem for which you can see detailed info and diagnosis here: http://www.themastfarminn.com/php-prob/ I sent in a support ticket to hosting company and here is what they replied: ||||||||||||||||||||||||||| We recently updated our Mod Security settings for all signature accounts. This will block any requests that do not include the … Read more