Results 1 to 1 of 1

Thread: Using "ShareThis" with Vantage? Or want to fix the Facebook Share Listing Issues?

  1. #1
    Thread Starter
    luxor's Avatar
    Join Date
    Mar 2013
    Location
    United States
    Posts
    599
    Thanks
    8
    Thanked 141 Times in 74 Posts

    Using "ShareThis" with Vantage? Or want to fix the Facebook Share Listing Issues?

    I noticed the facebook share of listings made the description look horrible, since it pulls the custom fields and random images.

    I didn't like it so I used the following code - Place it in your child-theme's functions.php file.


    PHP Code:
    /* Open Graph Modification */
    function add_facebook_open_graph_tags() {
            if (is_single()) {
            global $post;
            if(get_the_post_thumbnail($post->ID, 'thumbnail')) {
                $thumbnail_id = get_post_thumbnail_id($post->ID);
                $thumbnail_object = get_post($thumbnail_id);
                $image = $thumbnail_object->guid;
            } else {
                $image = 'ENTERIMAGEURLHERE'; // Change this to the URL of the logo you want beside your links shown on Facebook
            }
        ?>
        
        <meta property="og:title" content="<?php the_title(); ?> - SITETITLEHERE" />
        <meta property="og:type" content="website" />
        <meta property="og:image" content="<?php echo $image?>" />
        <meta property="og:url" content="<?php the_permalink(); ?>" />
        <meta property="og:description" content="<?php echo $post->post_content?>" />
        <meta property="og:site_name" content="<?php echo get_bloginfo('name'); ?>" />
        <?php }
    }
    add_action('wp_head''add_facebook_open_graph_tags',99);



    The image you create should be 100x100!


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [TUTORIAL] Create a Sidebar and Widgets for Vantage "Create Listing", "Order Page" and More
    By luxor in forum Vantage General Discussion (Legacy)
    Replies: 15
    Last Post: January 8th, 2014, 02:47 PM
  2. Adding share with facebook/twitter on the "your ad is now live Page"
    By cyclebarter in forum ClassiPress General Discussion
    Replies: 1
    Last Post: March 7th, 2013, 01:13 AM
  3. how do I add "facebook page like" button to listing?
    By ben4444 in forum Report Vantage Bugs (Legacy)
    Replies: 2
    Last Post: October 31st, 2012, 08:48 PM
  4. Replies: 1
    Last Post: June 22nd, 2012, 10:52 AM
  5. Replies: 1
    Last Post: June 22nd, 2012, 10:52 AM