columboman
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Adding pagination to modified loopThanks alchmyth. It worked a treat.
Forum: Fixing WordPress
In reply to: Slow load and what is init?Not sure why but after trying everything installing the jQuery Image Lazy Load WP plugin fixed it.
The site is now loading instantly!
Forum: Fixing WordPress
In reply to: View pending postsDid anyone figure this one out?
Forum: Fixing WordPress
In reply to: Admin pages often time out behind proxyThanks you very much. The admin back end seems a lot more responsive now and nothings timed out as yet. Cheers again.
Forum: Fixing WordPress
In reply to: Admin pages often time out behind proxyCheers. Trying that now. If that does fix it what should I do? Contact the schools ISP?
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] WordPress 3.0 got it workingIts fine however if you do a network deactivate then just activate it for one sub site at a time. Worked for me.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] WordPress 3.0 got it workingYep, same here.
Using 1.5.3 and 3.0 beta 2.
Its fine and dandy on the “main” site but in any subsites if you click on gallery you get a database upgrade loop.
You click “start upgrade now” and are told the upgrade was successful. You hit continue then you just get the original upgrade database message again.
Forum: Fixing WordPress
In reply to: Permalink issue…Jeeze that was lucky. Its sorted.
In super admin I clicked edit on my primary site then in site options (WPcol_options) section there is a field that also defines permalinks.
/blog was simply deleted from there and its sorted.
Hope that helps someone else out…
Forum: Fixing WordPress
In reply to: Permalink issue…Cheers but WP is installed on the root, not in a sub folder.
So its not in a sub folder, I don’t have a category called “blog” so I’m wondering if its my theme?
Is it possible to define permalinks in the theme files?
Forum: Everything else WordPress
In reply to: robots.txt to just allow the homepage?bumpety bump.
Worked a treat, thanks a lot alchymyth!
C.
Forum: Themes and Templates
In reply to: Remove “Read More” link from bottom of just the first post?Cracked it with:
<div class="entry"> <?php if ($wp_query->current_post == 0) { the_content(); } else { the_excerpt();?> <span class="read_more"><a href="<?php the_permalink(); ?>">Read More...</a></span> <?php } ?> </div>
Cheers for the help esmi.
C.
Forum: Themes and Templates
In reply to: Remove “Read More” link from bottom of just the first post?Cheers for the reply…
Close but no cigar! That code knocks off the link under the full content post but changes the visual apperance of the links under the excerpts to exactly:
“>Read more…
(it also disables the link)