narkiej
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Remove title= attribute from the_post_thumbnailI tried locating the post thumbnail template but there was no mention fo title in there.
Forum: Fixing WordPress
In reply to: Remove title= attribute from the_post_thumbnailHas anybody got an answer to this, as I am too am stuck!
Forum: Fixing WordPress
In reply to: Logo CenteringSet a width for your h2 element, then also add the property: text-align:center;
Just tried it and it works!
eg
h2{position:width: 600px; text-align:center; absolute;top:-8px;center:0px;left:230px;.navigation_spacer img { border: 0;}}
Forum: Fixing WordPress
In reply to: Query posts namedoes nobody know this? Please help.
Forum: Fixing WordPress
In reply to: Page not found half way through paginationThanks for your help, i’ve got it working by chaning posts per page to 6 actually. and if i need to call any querys of more posts per page it works fine.
Forum: Fixing WordPress
In reply to: Page not found half way through paginationHello! Just tried your method and it works well. I have found out that what causes the problem is
&posts_per_page=6
WIth my previosu code the final 3 pages had errors.
When i add
&posts_per_page=6
to you code, pagination doesnt even display the page numbers that previously didnt work.EG with my previous code:
I get: Pagination: 1,2,3,4,5,6,7,8,9 (7,8,9 are error pages when you click)
With your code I get:1,2,3,4,5,6 (Which isnt all of my posts)
Forum: Plugins
In reply to: [Plugin: Portfolio Slidshow] page jumpFear nto for it is done now. thank you!
Forum: Plugins
In reply to: [Plugin: Portfolio Slidshow] page jumpHi there thank you for your response. I only used the link as an example of the movement I wanted to achieve.
$(this).parent().css("height", $oht + $pht + $ht + $qht - 30);';
SO it si this line of code, how would I go about applying .animate to it, I’m very new to javascript.Thanks very much!
Forum: Fixing WordPress
In reply to: Adding post meta to custom short tagFinally sorted by adding:
global $post;
Forum: Fixing WordPress
In reply to: Adding post meta to custom short tagTO make it easier, this is the bit that isn’t working:
echo '<h2><a href="'; echo the_permalink(); echo '">'; echo get_post_meta($post->ID, 'artist_name', $single = true); echo '</a></h2>';
Forum: Fixing WordPress
In reply to: Query posts pagination problemThere was a `//Reset Query
wp_reset_query();` which I have removed, it works now!Forum: Fixing WordPress
In reply to: Two installations of wordpress 1 database, same postsCould someone let me know if this is possible please? Any links -> I can’t find anything.
Forum: Fixing WordPress
In reply to: Unexpected 'Thank you I replaced the file with a fresh one and the problem seems to have gone. i think i was hacked.
Forum: Fixing WordPress
In reply to: Editing wp_list_pages to display meta tagsThank you for your reply. Using this function will i be able to display my meta keys along with the page titles etc?