agig112
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook] [Plugin: Facebook] social publisher : remove html tagsYes, I figured this out too, you have to paste special characters directly in the title and the beginning of the post. From here (Column “Display”).
Forum: Plugins
In reply to: [Facebook] [Plugin: Facebook] social publisher : remove html tagsYeah, sure. 🙂
I fixed the “html in the excerpt and the post” issue (solution here), but couldn’t fix the “convert hyphens to
#&8211;in the post title” thing.And, is there a way to be able to mention pages at “Facebook Status in my Timeline” message?
And also, to be able to set the privacy of the post? This could be solved, if we could set the privacy after posting, as it is possible with personal accounts.
Forum: Plugins
In reply to: [Facebook] [Plugin: Facebook] social publisher : remove html tagsOh, great, thanks!
Forum: Plugins
In reply to: [Facebook] [Plugin: Facebook] social publisher : remove html tagsActually, I solved the problem, you have to add
strip_tags()to the'caption'and'description'rows in fb-social-publisher.php.So from this:
'caption' => apply_filters( 'the_excerpt', get_the_excerpt() ), 'description' => fb_strip_and_format_desc( $post ),you’ll get this at 6 occurrences:
'caption' => strip_tags( apply_filters( 'the_excerpt', get_the_excerpt() ) ), 'description' => strip_tags( fb_strip_and_format_desc( $post ) ),Don’t forget the ‘)’-s before the commas. 🙂
I still couldn’t fix that hyphens are not to be converted to
#&8211;in the published post.Forum: Plugins
In reply to: [Facebook] [Plugin: Facebook] social publisher : remove html tagsSame question here, because this looks awful. :p
Forum: Plugins
In reply to: [Sidebar Login] [Plugin: Sidebar Login] This plugin doesn't work at all.I have jquery 1.7.1 (at least, that’s what my page’s sourcecode says) and I can’t login with the plugin, only from the wp-login.php site.
Forum: Fixing WordPress
In reply to: Smilies not on a horizontal row, messing up entries.@sugarbones: I have the same problem since today. I’ve just installed “Flash Video Player” plugin, and I had to add a php_function line in the site-s header. But I didn’t realize, that I already had that function (wp_head). That’s why it was doubled, because the function was doubled.