Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • mangoninja

    (@mangoninja)

    Hey spencer, im using social essentials and simple facebook connect as well. One major problem that i’m having is trying to get them to work together.

    If I enable the social essentials like button, the sfc comments and publishing functions don’t work.

    If I disable the like button, then the comments work, but still can’t publish.

    If I enable the sfc like button, I can’t align it to the right, plus it shows on top of every post on the homepage.

    It’s been incredibly frustrating. All i really want is the sfc comments function (because it really fits in well with my theme) and an alignment of ‘Like twitter google pinterest’ buttons on top of my posts with a float right.

    Seems simple enough but just cant figure it out. If i could do it all manually i would. Ive tried so many plugins to try and make it happen but still can’t find a solution.

    Thread Starter mangoninja

    (@mangoninja)

    Well… after many many hours of head scratching and keyboard smashing violence… I worked it out.

    There is a line within the plugin:

    case 'above_posts':
    if ($post->post_type == 'post' && !is_home()) $content = $html.$content;
    break;

    I added !is_category and !is_archive to the line. It now looks like this:

    case 'above_posts':
    if ($post->post_type == 'post' && !is_home() && !is_category() && !is_archive()) $content = $html.$content;
    break;

    To future googlers with similar problems in 2 years time…
    You’re fucking welcome.

    i hate to bring up old threads, but i am having similar troubles with wordpress 2.5

    i have no idea how to add a blank line to a post anymore, wordpress doesnt add the nbsp, even after i do an align and all that. how do people actually add a blank line after a paragraph? because it is not working for me. keeps reverting back to no blank line when i switch to html view.

Viewing 3 replies - 1 through 3 (of 3 total)