$5Contest - Copy a post to wordpress

Discussion in 'HTML & Website Design' started by sourabhkejriwal, Jun 8, 2013.

  1. #1
    Copy this post:
    webitechi.com/facebook-chat-smileys-cool-icons/
    (only one image and its corresponding text box with code will be enough).

    to a wordpress post !!(and tell me how to do it :p)

    The problem is inside the text box additional "/br" tags are inserted, when I am trying the same.

    More info:
    https://forums.digitalpoint.com/threads/need-help-with-facebook-chat-code-in-wordpress-post.2655671/

    PM me your answer or reply below...best and fastest one wins $5.
     
    Solved! View solution.
    sourabhkejriwal, Jun 8, 2013 IP
  2. aidanriley629

    aidanriley629 Banned

    Messages:
    429
    Likes Received:
    23
    Best Answers:
    3
    Trophy Points:
    175
    #2
    I know how to fix this but I don't have a WP account to show you.
     
    aidanriley629, Jun 8, 2013 IP
  3. aidanriley629

    aidanriley629 Banned

    Messages:
    429
    Likes Received:
    23
    Best Answers:
    3
    Trophy Points:
    175
    #3
    Ok you aren't replying but this is what you have to do:
    Go into your functions.php file, and add these two lines of code:
    remove_filter( 'the_content', 'wpautop' );
    add_filter( 'the_content', 'wpautop' , 12);
    Code (markup):
     
    aidanriley629, Jun 8, 2013 IP
  4. aidanriley629

    aidanriley629 Banned

    Messages:
    429
    Likes Received:
    23
    Best Answers:
    3
    Trophy Points:
    175
    #4
    This will get rid of all line breaks, so if you want them back, you have to add this to the shortcode functions:
    function bio_shortcode($atts, $content = null) {
      $content = wpautop(trim($content));
      return '<div class="bio">' . $content . '</div>';
    }
    add_shortcode('bio', 'bio_shortcode');
    Code (markup):
     
    aidanriley629, Jun 8, 2013 IP
  5. #5
    Install this plugin: http://wordpress.org/plugins/ps-disable-auto-formatting/

    problem solved.
     
    TechGrunth.Com, Jun 8, 2013 IP
  6. TechGrunth.Com

    TechGrunth.Com Banned

    Messages:
    101
    Likes Received:
    0
    Best Answers:
    1
    Trophy Points:
    65
    #6
    Thanks
     
    TechGrunth.Com, Jun 10, 2013 IP