atlohi
Forum Replies Created
-
Thanks! No problem with the new version.
Forum: Fixing WordPress
In reply to: Subscribers Not Receiving New Post NotificationsI am seeing this same issue in the first post I’ve done after upgrading to 3.0. The “send a message” feature is functioning, so I used that as a workaround.
Forum: Fixing WordPress
In reply to: Twitter Tools Plugin Multiple forms helpI’ve just (finally) gotten Twitter Tools to append the Facebook hashtag used by a Facebook app called Twitter Selective Status. The application pulls Twitter status updates into Facebook as long as they are appended by the #fb hashtag. The time it took me isn’t the fault of Twitter Tools; it was more my stunning lack of knowledge of php. My goal was to integrate the status updates on my web site, Twitter and my business Facebook page.
What I did was to change the format of the tweet on this line from this:
$this->tweet_format = $this->tweet_prefix.’: %s %s’;to this:
$this->tweet_format = $this->tweet_prefix.’: %s %s %s’;with the last %s place holder being there for the hashtag.
Then I set up a variable for the hashtag and placed it right before the tweet was written out for a new post to my site. In my version of Twitter Tools, this starts on line 467, after $url is assigned it’s value.
Here’s the code:$fb_hashtag = ” “.chr(35).”fb”;
$tweet->tw_text = sprintf(__($this->tweet_format, ‘twitter-tools’), $post->post_title, $url, $fb_hashtag);Since # is a comment character, I used the chr() to get it into the hashtag variable.
My website is https://www.weavinginbeauty.com. I hope this helps you!
Forum: Fixing WordPress
In reply to: Firefox crashes when I use ‘inset photo’ link on post.Another thanks for the people who found the solution to this. I just encountered the problem and the forum solution saved me a lot of time.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] No SLIDESHOW after upgrading to 1.1.0 :-(Be sure that you’ve gone into the Gallery Overview after the upgrade completes. As in the migration to 1.0.2, there is a database update that must be initiated. After I completed that, all was well.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] No SLIDESHOW after upgrading to 1.1.0 :-(I’m having the same issue. I tried most of the same things with no result.