Nukeface
Forum Replies Created
-
Forum: Your WordPress
In reply to: Custom coded theme – feedback appreciatedHey Chris,
Thanks for the quick reply! I’ve told the designer about the large images and he’s going to look into it.
The SEO was done by the company I do the work experience, but if I’m correct the SEO was already in place before the new theme replaced the ugly one they were using at the time.
By the way, do you know of any sticky post position customisation plugins around? I’ve hacked a way through query_posts and calling the home page posts one at a time to allow for customly placed stickies, but it’s an ugly wee piece of code (though I couldn’t find a better option around).
Anyway, thanks for the feedback! ??
NukefaceForum: Plugins
In reply to: [WP Page Numbers] [Plugin: WP Page Numbers] Remove wp_pagenumbers on topcall this
if(function_exists('wp_page_numbers')) { wp_page_numbers(); }
after you finish the_loop ??for example:
<?php get_header(); create_home(); function create_home(){ if (have_posts()) : while (have_posts()) : the_post(); //do your thing endwhile; endif; if(function_exists('wp_page_numbers')) { wp_page_numbers(); } } //close function get_sidebar(); get_footer(); ?>
Make sure you have activated the plugin, and that you have configured it to your liking.
Forum: Fixing WordPress
In reply to: Create gallery use existing media library to add itemsSorry that plugin really doesn’t work. Tried it, it even disables the Lightbox 2 plugin I had running, or creates a conflict I don’t know. Pictures look fancy though so will remember it for a future project to give it another shot with that one.
Did you manage to fix this issue? I’m having a similar problem where i get 404 pages if i adjust the amount of posts on the page (default 10 posts works correctly)…
Forum: Plugins
In reply to: [WP-PageNavi] [Plugin: WP-PageNavi] Request page number as integerPffff you’re right, my bad, completely forgot that and tried to manipulate the pagination plugin… Good thing I can say it’s friday afternoon! ?? Thx scribu
Nevermind, hacked a way around, created custom divs using display class out of nextgen css for displaying large image across the rest of the page.
Hmmm well the little image thingy using letters looks like bum. Oh well…
Forgot to mention that it should be possible to display in-line with text as well…