TOMTH
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Moving WordPress from one domain to anotherFollowed this guide: http://www.dollarshower.com/move-wordpress-blog-to-another-host-server/ and it worked.
Forum: Fixing WordPress
In reply to: Users can not comment postsYouOn, you’re a genius 🙂
<?php /*comments_template( '', true ); */ ?>is what it looked like, no clue how that happened. I got rid of the /* */ and now it works fine.[Comments moderated]
Well I don’t want to hide the page, just the Google maps application. If not is it possible to create an alternative page using WPtouch pro?
Forum: Fixing WordPress
In reply to: Mobile – odd menuProbably, a unified browser would be much easier for programming.
Forum: Fixing WordPress
In reply to: Mobile – odd menuHmm weird then. I am using a blackberry OS5 I think it is. Well as long as Android/iPhone work I’m not bothered. Thanks for testing and your help.
Forum: Fixing WordPress
In reply to: Mobile – odd menuI have only made a few edits to the css, nothing structural.
Forum: Fixing WordPress
In reply to: Mobile – odd menu@voodoo, why do they become visible when I view my site using a mobile device?
Forum: Fixing WordPress
In reply to: Mobile – odd menuIn the HEADER.PHP file you will the following rule.
<h3 class="assistive-text"><?php _e( 'Main menu', 'twentyeleven' ); ?></h3> <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?> <div class="skip-link"><a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to primary content', 'twentyeleven' ); ?>"><?php _e( 'Skip to primary content', 'twentyeleven' ); ?></a></div> <div class="skip-link"><a class="assistive-text" href="#secondary" title="<?php esc_attr_e( 'Skip to secondary content', 'twentyeleven' ); ?>"><?php _e( 'Skip to secondary content', 'twentyeleven' ); ?></a></div> <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>Forum: Fixing WordPress
In reply to: Mobile – odd menuPardon me, and thank you for the help. Would you know whether it’s harmful to delete those files though?
Forum: Fixing WordPress
In reply to: Mobile – odd menuOkay I have found what it’s from. There were two divs ‘Skip link’ and one h3 for assistive text. Is it okay to delete those files?
Forum: Hacks
In reply to: Custom Index Query – Sorting issueSolved it with a workaround, but would be better if I could get it automated. Created an extra two categories, which will be manually controlled to only have 1 post in it. Each time a new post is created, the category needs to be edited.
Forum: Hacks
In reply to: Custom Index Query – Sorting issueYes 🙂 Aww crud 😛
Forum: Hacks
In reply to: Custom Index Query – Sorting issueThat doesn’t change anything. Instead of sorting ALL the posts by date, it will first show result from query 1, result from query 2, result from query 3. Being 1 post from cat 6, 1 post from cat 4, and the rest. This is fine, except I can’t get it all to be sorted by date.
I’m not sure if this is clearer?
Forum: Hacks
In reply to: Custom Index Query – Sorting issueSo this is what it does now.
Loop through cat 6, get newest post and post it.
Loop through cat 4, get newest post and post it.
Post all other posts (newest first).First post is always category 6 and second post always category 4, even though a post in category 1 is newer than one in cat 4 or 6.
Forum: Hacks
In reply to: Custom Index Query – Sorting issueThe trouble is I think I have 3 queries. And arrays aren’t my forte.