robertvu475
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress category & taxonomy loop with paginationI have got somewhere with this now but the pagination doesn’t work. It goes to a 404 page when clicking through to the other pages e.g. 2, 3, 4. What is it I am missing?
global $query_string; $myquery = wp_parse_args($query_string); $myquery = array( 'paged' => $paged, 'numberposts'=>-1, 'tax_query' => array( 'relation' => 'OR', array( 'taxonomy' => 'category', 'terms' => array('adventure'), 'field' => 'slug', ), array( 'taxonomy' => 'holiday-types', 'terms' => array('adventure'), 'field' => 'slug', ), ), ); query_posts($myquery); while ( have_posts() ) : the_post(); echo '<li>'; the_title(); echo '</li>'; endwhile; // Reset Query wp_pagenavi(); wp_reset_query();
Forum: Plugins
In reply to: [WP Real Estate] Active, Sold, etcThanks for the update will check back next week.
Brilliant plugin by the way!
Forum: Plugins
In reply to: [WP Real Estate] Active, Sold, etcHi I can see that you have made an update to the plugin, did you manage to include the active, sold options to it?
If not roughly when do you think it will be added?
Thanks
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] Cart not showing in custom postthanks
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] Cart not showing in custom postHi mrbrsolution
I got it to work, it was the shortcode that was written incorrectly. I used the ‘UI for WP Simple Paypal Shopping Cart’ to generate the code and it was incorrect.
Thanks for your help!
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] Cart not showing in custom postHi I was testing for the template that is why the file path is there.
If you refresh the page now it is gone. link
The shortcode underneath the image box doesnt execute.
Kind Regards