OrT
Forum Replies Created
-
Forum: Plugins
In reply to: [301 Redirects - Easy Redirect Manager] Tracking codes break redirects@alexandru that’s clear, thank you for the quick response!
Forum: Fixing WordPress
In reply to: Auto redirect to suggested pageAddendum: with a 301 plugin enabled, any variable in the url will break the redirect, and result in WP redirecting to the (wrong) blog post:
Forum: Plugins
In reply to: [qTranslate Plus] Does QTranslate Plus work with qTranslate Slug?Yeah, same problem here.
The plugin has changed and has no more qtrans_ instances.Forum: Themes and Templates
In reply to: sorting by custom field dateFixed – the date was set to yy/mm/d, it should have been yy/mm/dd for proper sorting (two digit day).
Forum: Themes and Templates
In reply to: CSS HELP please :)The menu issue: could something be influencing your menu order?
– custom functions in functions.php
– parameters in wp_nav_menu()
– some plugin?Hi Amy,
This should work:
<?php the_post_thumbnail('', 'title='.trim(strip_tags( $attachment->post_title ))); ?>
If not, this might be a workaround based on something similar I did in the past:
<?php $thumbnail_src = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ) ); ?> <img src="<?php echo $thumbnail_src; ?>" title="<?php the_title_attribute('echo=0'); ?>" />
Forum: Themes and Templates
In reply to: [Constructor] [Theme: Constructor] hide header in front pageHiding it means loading and making invisible, a better way to do this is going into your header.php file and add a little condition:
<?php
if ( is_home() == false ) {
// show header //
?>Forum: Themes and Templates
In reply to: Custom Query /page/* gives 404Solved, had some trial-and-error code there that shouldn’t have been.
Forum: Plugins
In reply to: WordPress Pagination With WP-PageNavi Not WorkingI’m guessing your custom query is incorrect, could you post your loop code to pastebin, please?
Forum: Themes and Templates
In reply to: Other queries on /page/* brokenI’m back to /page/2 giving a 404. Fun on the bun.
Thanks, David.Forum: Themes and Templates
In reply to: Custom Post Type PaginationAccording to the title of the thread, I believe it is.
For the next problem I should open a new one that’s relevant.Thanks very much for your assistance, David!
Mucht appreciated.Forum: Themes and Templates
In reply to: Custom Post Type PaginationDavid – my guess is the ‘Types’ plugin was causing the problems. Fiddled around with it, reactivated it, and suddenly the posts appeared.
Forum: Themes and Templates
In reply to: Custom Post Type PaginationUpdate: for reasons unknown, I’ve managed to get it working.
New problem: all other queries on /page/* are broken.
Even if I put their queries in a separate object and reset the variables:
$temp = clone $wp_query; $wp_query = null; ... <?php $wp_query = null; $wp_query = clone $temp; ?> <?php wp_reset_postdata(); ?> <?php wp_reset_query(); ?>
Forum: Themes and Templates
In reply to: Custom Post Type PaginationI’m using wp_paginate() actually, which is working fine on a number of other sites I’m running.
Forum: Themes and Templates
In reply to: Custom Post Type PaginationExtra: htaccess is fine, /%category%/%postname%/ is the permalink structure.