Nel7
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Catalogue] settings>reading settings>blog pages show at most 1Is there any further progress with this pagination problem? Maeve, do you still need my login details?
Forum: Plugins
In reply to: [WP Catalogue] settings>reading settings>blog pages show at most 1Which PHP files have been updated? I have done a lot of customisation and don’t want to do it again.
Thanks.Forum: Plugins
In reply to: [WP Catalogue] settings>reading settings>blog pages show at most 1Not sure what’s going on here Maeve, but I gave you access to my site 12 days ago!
Forum: Plugins
In reply to: [WP Catalogue] Catalogue order only works on Product Detail pagesI added the following code from single-wpcproduct.php to the wpc-catalogue.php after this code:
\\$return_string .= ‘<div class=”wp-catalogue-breadcrumb”> All Products >> ‘.$tname.’ ‘ . $pname . ‘</div>’;\\
New code:
\\global $post;
$terms1 = get_the_terms($post->id, ‘wpccategories’);if($terms1 !=null || $term1 !=null){
foreach( $terms1 as $term1 ){
$slug = $term1->slug;
$term_id = $term1->term_id;
};
}
global $wpdb;$args = array(
‘orderby’ => ‘term_order’,
‘order’ => ‘ASC’,
‘hide_empty’ => true,
);
$terms = get_terms(‘wpccategories’,$args);
$count = count($terms);\\
Hope that helps.Forum: Plugins
In reply to: [WP Catalogue] settings>reading settings>blog pages show at most 1I am having the same problem, plus when I change the number of posts, then the pagination doesn’t work on the All Products category. How is your investigation on all this going, Maeve?
Forum: Plugins
In reply to: [WP Catalogue] pagination problem on products listI am using version 1.5 and the pagination on the All Products category is not working. Any clues? Thanks.
Forum: Plugins
In reply to: [WP Catalogue] Rename WP Catalogue on Theme BreadcrumbsHi again,
I found a solution!Forum: Plugins
In reply to: [WP Catalogue] Display Soley Product Name / Adjust Product DetailsHi, I want to do the same thing, but don’t understand php. Does anyone have a solution?
Thanks, Nel7