asherah
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Website not working with firefox 22.0 on windows 7I’ve checked my website on a validation site and it’s come up with about 35 errors and 22 warnings. I think because we wrote the original blog posts in blogspot and then copied to wordpress perhaps this caused the errors? I’m still not sure why it won’t work on my HP computer but is fine on my Dell laptop and on my PA’s macbook.
Forum: Fixing WordPress
In reply to: Website not working with firefox 22.0 on windows 7We are still having the same problem but only on one computer which is running windows 7. We have a laptop running windows 7 on which the website works fine on all browsers. The computer running windows 7 is an HP touchsmart (22 inch) and the website works on Safari and Internet Explorer but not Chrome or Firefox. On Chrome or Firefox the website appears perfectly but none of the links are clickable, it’s as if it’s frozen.
Does anyone have any ideas as to what the problem might be? I would really appreciate your help as I am desperate and disabled and this is the only computer I have access to. Heeeeeeeeeeelp me!
Forum: Fixing WordPress
In reply to: Website not working with firefox 22.0 on windows 7Thanks, we tried that but still can’t click on anything or log in.
Forum: Themes and Templates
In reply to: How do i remove pagination from blog section of Workz theme?Thanks for the reply, they seem difficult to get hold of unless you have bought a paid theme. Tweeted them but no reply as yet.
Is it possible for me to send you the theme files to have a look at?
Forum: Themes and Templates
In reply to: How do i remove pagination from blog section of Workz theme?[ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]
Hi,
Thanks for the reply but neither of those appear on any of the theme files.
But there is a pagination.php which looks like this:
<?php /** * @package WordPress * @subpackage workz Theme */ //pagination function function pagination($pages = '', $range = 4) { $showitems = ($range * 2)+1; global $paged; if(empty($paged)) $paged = 1; if($pages == '') { global $wp_query; $pages = $wp_query->max_num_pages; if(!$pages) { $pages = 1; } } if(1 != $pages) { echo "<div class=\"pagination clearfix\">"; if($paged > 2 && $paged > $range+1 && $showitems < $pages) echo "<a href='".get_pagenum_link(1)."'>« First</a>"; if($paged > 1 && $showitems < $pages) echo "<a href='".get_pagenum_link($paged - 1)."'>‹ Previous</a>"; for ($i=1; $i <= $pages; $i++) { if (1 != $pages &&( !($i >= $paged+$range+1 || $i <= $paged-$range-1) || $pages <= $showitems )) { echo ($paged == $i)? "<span class=\"current\">".$i."</span>":"<a href='".get_pagenum_link($i)."'>".$i."</a>"; } } if ($paged < $pages && $showitems < $pages) echo "<a>Next ›</a>"; if ($paged < $pages-1 && $paged+$range-1 < $pages && $showitems < $pages) echo "<a href='".get_pagenum_link($pages)."'>Last »</a>"; echo "</div>\n"; } } ?>