[email protected]
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [Cat + Tag Filter] HELP URGENT – Error in parameters wrong urlthis because the orginal was generating urls with numbers characters like like:
instead
Forum: Plugins
In reply to: [Cat + Tag Filter] HELP URGENT – Error in parameters wrong urlWhen a category and a tag is selected it works, but when i choose any tag + any categ i have to do the following tweak:
if( $cat == -1) { $url = $_POST["home_url"] . $tag; } else { $url = $_POST["home_url"] . $cat . $tag; } if( ($cat == -1) and ($tag == -1) ) { $url = "http://www.guiagcr.com.br/estabelecimentos/"; } elseif( ($cat != -1) and ($tag == -1) ) { $url = "http://www.guiagcr.com.br/estabelecimentos/"; }Forum: Plugins
In reply to: [WP-Cycle] WP-Cycle random Imagei mean, a random sequence of images and a unlimited number of slides!
Forum: Fixing WordPress
In reply to: Pagiantion with random results pageThis code worked!
‘<?php
global $query_string;
query_posts( $query_string . ‘&orderby=rand&posts_per_page=10’ );if( have_posts() ) : while ( have_posts() ) : the_post();
?>’solves. it was a conflict inbetween this script and paginator plugin.
Viewing 5 replies - 1 through 5 (of 5 total)