SteveL23
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] removing product description from product-categoryHi Lorro ??
many thanks for your reply! I’ll try and update the Theme (and of course take a backup!)
However, i’m not seeing the product-category page displaying the way I would like to in your link ?? Even if I do update it, i’m unsure as to how I would go about getting the product page to display without the descriptions! If i’m unable to update, is there any way that I can edit a file to not display the description on the products page?
Any more help would be appreciated!
Thanks again!
Forum: Themes and Templates
In reply to: Transparent page background/contentThanks folks solved it by placing in my Custom CSS
.canvas {
background-color: #transparent;
}Thanks for the help and pointers ??
Forum: Themes and Templates
In reply to: Transparent page background/contentHi there,
I can’t see that in custom CSS?! A bit puzzled, could you point to where I can edit this? I only have style.css
Thanks, and sorry for being such a newb!
Forum: Themes and Templates
In reply to: Transparent page background/contentHi Esmi,
I’ve tried in Firebug this is what i’m getting:
Inline:
.canvas {
background-color: rgb(255, 255, 255);
}
.canvas {
width: 960px;
margin: 0px auto;
clear: both;
padding: 0px 20px;
background: none repeat scroll 0% 0% transparent;
}I’ve triedadding in the transparency wherever I can, but it’s still showing up as white. No idea how to change it inline ??
Forum: Plugins
In reply to: [WP-PageNavi] Stopped showing older posts when clicking on next pageAccording to Scribu,
“Say you have something like this:
query_posts(‘cat=8’);
or like this:
query_posts( array( ‘cat’ => 8 ) );
You just need to pass along the ‘paged’ query var from the main query:
query_posts( array( ‘cat’ => 8, ‘paged’ => get_query_var(‘paged’) ) );
If that doesn’t work, you can also try passing the ‘page’ query var:
query_posts( array( ‘cat’ => 8, ‘paged’ => get_query_var(‘page’) ) );I actually have this:
<?php $paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1; $wp_query = new WP_Query (array( 'paged' => $paged, 'posts_per_page' => 3, 'order' => 'DESC', 'cat' => '-1077, -1076', 'post__not_in' => get_option( 'sticky_posts' ) )); if ($wp_query->have_posts()) : while($wp_query->have_posts()) : $wp_query->the_post();?>
I’m really unsure as to where to put Scribu’s code? Any suggestions? I’m not a PHP coder i’m afraid, so it’s a bit intimidating!