mayb101
Forum Replies Created
-
Forum: Hacks
In reply to: Help creating functions & shortcodesThanks for replying. That may help. I’ll see what I can do with it.
But for the second instance, it’s the whole DIV itself that needs to be wrapped in an IF statement of some kind e.g.
if smurl is not null
display <div>…</div>
else
don’t display anythingNo problem donating something if I can get this to work.
Have you considered reworking the plugin so that users are aware to only use this on 100% public calendars? Is there a way to detect a calendar is 100% public before displaying? Perhaps you could rename the whole plugin and try again with a code that doesn’t pingback or refuses to display a non-public calendar. I have had a few of my custom iframes cause in Google’s hypersensitive filters. In the past my only options were to totally buy a new domain. With a bazillion users, Google never really seems to me to be concerned about a few tens of thousand people inconvenienced by their policies.
My code doesn’t have that. How is this generated?
What is one doesn’t enable/use the widget? Is there any way to disable this particular aspect of the code?
$ua = strtolower($_SERVER[‘HTTP_USER_AGENT’]);
if(stripos($ua,’android’) !== false) { // && stripos($ua,’mobile’) !== false) {// remove connect button //
exit();
}Forum: Plugins
In reply to: [Simple Facebook Connect] [Plugin: Simple Facebook Connect]Feature RequestsCool! 😀
Just offering ideas 😛
I got this to work without adding anything else because the plugin I guess already calls the scripts:
In my childtheme functions.php
function fbdomcom() { return '<fb:comments href="http://newurbangirl.me/" num_posts="25" width="474"></fb:comments>'; } add_shortcode('fdcm','fdomcom'); function comthisFB($atts) { extract(shortcode_atts(array( "href" => 'http://' ), $atts)); return '<fb:comments href="'.$href.'" num_posts="25" width="474"></fb:comments>'; } add_shortcode("fbcom", "comthisFB"); if (!is_admin()) add_filter('widget_text', 'do_shortcode', 11);Which adds the facebook comment box to any content in a page or post. So this isn’t competing with what you have set up already. I don’t know how to make plugins or I’d help.
Forum: Plugins
In reply to: [Simple Facebook Connect] [Plugin: Simple Facebook Connect]Feature RequestsFound another: Check out http://www.likester.com/LikeNetwork.aspx#
They have a “SUGGEST TO FRIENDS” feature. That is really cool. It would be awesome to have something like that where one can invite friends to their APP via WordPress.Forum: Plugins
In reply to: [Simple Facebook Connect] [Plugin: Simple Facebook Connect]Feature RequestsIt would also be cool to create a widget/shortcode to “send” and to “share” the top level domain. Maybe 2 buttons under the facebook connect widget.
In addition, I’d like to request a compatible shortcode for this code:
http://developers.facebook.com/docs/reference/plugins/comments/
which is the “Facebook Comments” code. It would be cool to be able to embed those kinds of comments in widgets, pages and posts for various subcontent or as a shoutbox, guestbook, etc. There are many possibilities.Lastly, I’d like to request shortcodes for LIKE, SEND and COMMENTS that can be used WITHIN a post, page or widget on any content. Suppose I post an audio file and a picture. A person can LIKE a post. But it would also be cool if they could individually LIKE the audio or picture separately or alternatively. Using a shortcode makes sense but I don’t know how to do it and the times I’ve tried it didn’t work.
Something like this:
[SFC_LIKE url=(direct URL to object, image, audio, video, etc)]
[SFC_SEND url=(direct URL to object, image, audio, video, etc)]
[SFC_SHARE url=(direct URL to object, image, audio, video, etc)]
[SFC_COMMENT url=(direct URL to object, image, audio, video, etc)]
Similar would be cool for STC also — 😛Forum: Plugins
In reply to: [Simple Facebook Connect] Facebook Fan Box widget (SFC) not displayingThanks. It appears that the issue was with Facebook this morning.
Forum: Plugins
In reply to: [Simple Facebook Connect] Facebook Fan Box widget (SFC) not displayingAdditional Information:
It appears to work OK on single pages
http://newurbangirl.me/sticky-post.html
It just isn’t working on the home page
http://newurbangirl.me/Thanks!
Forum: Plugins
In reply to: [Simple Facebook Connect] Manual PositioningOkay thank you! 😀
Forum: Plugins
In reply to: [Simple Facebook Connect] Manual PositioningReally? Bummer. I like TweetMeMe because it syndicates to TweetMeme. Okay so if I disable the add-on, with your plugin be compatible with a different TweetMeme plugin?
Thanks for all your feedback!
Forum: Plugins
In reply to: [Simple Facebook Connect] Manual PositioningThanks — that wasn’t the one I had problems with. Sorry. That one has a class.
<iframe scrolling="no" frameborder="0" class="<strong>twitter-share-button</strong> twitter-count-none"I tweetmeme doesn’t have one.
<iframe scrolling="no" width="50" height="61" frameborder="0" src="http://api.tweetmeme.com/button.js?url=http%3A//newurbangirl.me/test-post.html&style=normal&source=NewUrbanGirl617&o=http%3A//newurbangirl.me/wp-login.php%3Floggedout%3Dtrue&b=1"></iframe>I could poke around the files but I didn’t want to end up having to alter it again when there is an official upgrade if I could prevent it.
Thanks for your help. I’ll send you a coffee soon.
Forum: Plugins
In reply to: [Simple Facebook Connect] Manual PositioningI’ve tried quite a bit to move these buttons around. I’m wondering if there is iframing involved or some css in the scripts being called that overrides the default theme. I put yet another few hours into it even trying other themes and the virgin Twenty Ten, nothing.