ezytiger
Forum Replies Created
-
For the stumblr theme:
Content Selector - #post-area Posts Selector - .post Navigation Selector - .stuumblr-pagination Next Page Selector - a.inactive
Forum: Plugins
In reply to: WordTube – baffled!!!!Doh! This is not obvious in the instructions on the Wordtube site. Great plugin though now it see how it works.
Forum: Plugins
In reply to: WP Menu Manager: issue with spaceing on 2 word headingsHave you tried text attributes? eg letter-spacing
Forum: Plugins
In reply to: WordPress 2.9.1 Image Media Help//edit out
Forum: Fixing WordPress
In reply to: [Plugin: WP-PageNavi] navi for posts of a certain categoryI had this same issue. I found the answer here – https://stylizedweb.com/2008/08/13/query_posts-pagination-problem/.
The code to fix is:
<?php if (have_posts()) : ?> <?php query_posts("category_name=somecat"); ?> <?php while (have_posts()) : the_post(); ?> replace with <?php if (have_posts()) : ?> <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("category_name=somecat&paged=$paged"); ?> <?php while (have_posts()) : the_post(); ?>
Forum: Plugins
In reply to: Page Category PlusFOUND! If anyone needs to download this plugin – you can from the following links:
and
Forum: Fixing WordPress
In reply to: How to pull tags from multiple post IDs outside the loopSolved. I was looking at the wrong section. Should have been looking at the ‘newsfooter’:
function arras_newsfooter($page_type) { global $post; $postfooter = ''; $postfooter .= '<span class="tags"><strong>' . __('Perfect for:', 'arras') . '</strong>' . get_the_tag_list(' ', ', ', ' ') . '</span>'; if ( arras_get_option($page_type . '_news_display') == 'quick' ) { $postfooter .= '<p class="quick-read-more"><strong><a href="' . get_permalink() . '">' . __('Read More', 'arras') . '</a></strong></p>'; } echo apply_filters('arras_newsfooter', $postfooter); }
Forum: Plugins
In reply to: Page Category PlusThought that might work myself. Page2cat has a shortcode [catlist=xx] that is supposed to pull a list of pages and posts in the category once pages are set-up, but it doesn’t work for me unfortunately.
I’ve also tried stacking WP_Query functions, but am struggling with this as it’s a bit beyond my ability with PHP currently.
I’m trying to display a WP_Query ‘cat=$id’ call that display both pages and posts, rather than only posts.
Any ideas? ??
Forum: Fixing WordPress
In reply to: I’m Weird… I Know… But…@ thisisedie
Can you re-check this post please and post up a zipped file of “Page Category Plus” if you still have the plugin somewhere to download. Would be hugely Grateful.
– Sorry to intrude on the thread ??
Forum: Plugins
In reply to: Page Category PlusMe too – if anyone has it in a WP install can they please zip it and post a link to download. Many thanks in advance ??
Forum: Fixing WordPress
In reply to: BEGINNER – RSS Feed and favicon troublesJust because you can’t see them it doesn’t necessarily mean they’re not there.
Try checking your feed URL is correct in both feedburner and WordPress. At the moment the page is displaying “no such feed” so it looks like you’ve got the rss pointing to the wrong url.
Forum: Fixing WordPress
In reply to: Content Overlapping IssueIt looks like an issue with the flash content. I would recommend making the video size smaller using the embedded Youtube code. Otherwise you can try adding:
<param name=wmode value="transparent">
to the flash code from youtube and it should make a difference if you are also using CSS:
overflow:hidden;
Forum: Fixing WordPress
In reply to: Method of adding tags to already published posts?Both edit and quick edit will update the tags on a post in the same manner. You can also add tags while authoring a post via the right hand sidebar.
Forum: Fixing WordPress
In reply to: HTTP Error!You might need to contact your hosting provider and make sure that their services include all the necessary requirements for hosting WordPress. See – https://www.ads-software.com/about/requirements/
Forum: Fixing WordPress
In reply to: How to configure the twitter / email link in headerYou need to add much more information to this issue – what theme are you using, what are the links, etc etc?