dtsn
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: TweetMeme button DISAPPEARED!Hi All,
The TweetMeme plugin now uses the WordPress hook wp_footer() this *should* be in all themes at the bottom of your page. However if you have customised your theme you may have removed it, or your theme creator hasn’t included it. You can find more information on the wp_footer hook here: https://codex.www.ads-software.com/Plugin_API/Action_Reference/wp_footer
To add it to your theme open up the footer.php file of your theme and just before the closing </body> tag put in the following php
<?php wp_footer(); ?>
Forum: Plugins
In reply to: [Plugin: TweetMeme Button] Quit working!Hi,
Could you please provide a full support request to https://help.tweetmeme.com/forum? Could you also provide some more details, we would like to help you but need a lot more information like:
– The site that stopped working URL
– What do you mean by it’s stopped working
– The list of other plugins you have installedForum: Plugins
In reply to: Facebook Share vs. Tweetmeme – choosing display orderI believe the order has changed due to the new TweetMeme plugin being released. Both the plugins would use a hook onto the WordPress tag the_content(). When the hooks don’t have a priority set they default to 10, then it just comes down to the order they were added to the code. So because you have just updated your TweetMeme plugin, it is being called last which why it is appearing to the left of the content.
You might be able to solve this by deactivating and reactivating the facebook plugin.
Forum: Plugins
In reply to: Cannot use compact version of tweetmeme buttonHi,
I have tested the button i am able to display the compact button. Would it be possible for you to provide some more details? Like what version of wordpress you are using, a list of the other plugins you are using, the options which are set in the tweetmeme option page.
Daniel
Forum: Plugins
In reply to: [Plugin: Tweetmeme Button] Quick question@mchriston it will automatically take the link of the page if no url is defined. We prefer users to specify the url of the page because then it stops the possibility of their being two url’s for the same post, like paging etc.
Forum: Plugins
In reply to: Tweetmeme adds certain characters to the tweetHi Noura,
This should of been fixed, please let us know if you are still having problems.
Forum: Plugins
In reply to: [Plugin: Tweetmeme Button] Quick questionHi ps3blog,
We have now solved your problem with the strange characters appearing in the tweet. It was caused by the incorrectly encoding your charset. The RT is standard twitter terminology for retweet.
Forum: Themes and Templates
In reply to: Listing posts by category without going through ‘The Loop’Hi,
Let me tell you what i am trying to achieve, it might make more sense that way. I am trying to separate the posts on my blog into a sub category which only gets displayed in the sidebar. Specifically this subcategory will only display pictures and links, but with a description for the feed. I was using the Blogroll, but i then discovered you can’t subscribe to the blogroll as an RSS feed, so i am trying to think up alternatives.
I didn’t want to use the loop because i thought it would be a bit of an overhead to select all the posts only to show very little of them.
Any help or advice as to how i achieve this would be great.
Thanks
Daniel
Forum: Themes and Templates
In reply to: Trying to get an RSS link for the BlogrollOk, thanks. I’ll have to rethink this.
Forum: Themes and Templates
In reply to: customising wp_list_pagesThanks great thanks! ??
You wouldn’t happen to know how i could tell which page i am on so i could change the class accordingly?
Thanks
Daniel
Forum: Themes and Templates
In reply to: customising wp_list_pagesSorry i may be a bit stupid, but i just don’t see how this would work. This would just produce the same thing as wp_list_pages, how do i get the links and page titles from it?
e.g. i need to have
<li><a href="link"><span>page name</span></a></li>
Could i use echo $page[‘title’]?
Thanks
Daniel
Forum: Themes and Templates
In reply to: customising wp_list_pagesHi MichealH,
Thanks for replying, how do i get the link to the pages. I know that i could just use <?php echo $pages ?> to give me the list of pages, but how do i get the link to those pages.
Thanks
Daniel