merlinox
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Pagination with custom post type listingI’m trying without success all solution, also @rafaelxy solution.
Pagination links don’t appear.Sorry but custom_query_posts must add in function or is good in template page too?
Thanks
Forum: Plugins
In reply to: [WP Recipes] [Plugin: WP Recipes] Language .poHow can I translate plugin?
Forum: Plugins
In reply to: Plugin sugestion: concurrent loginI’ll stay tuned ??
Forum: Plugins
In reply to: Plugin sugestion: concurrent loginUnfortunaly I’ve the same need. Carlla did you resolve?
Forum: Requests and Feedback
In reply to: get_the_category_taxps: the better thing maybe replace original get_the_category function, with this. $taxonomy param is optional, and would not have entered the regression errors.
I found solution. I had a trouble with category (taxonomy) name. It works good. On $args you may simply insert “taxonomy” arg with the name of categories you want to loop.
Unfortunaly I’ve the same trouble. I’ve some categories defined in a Custom Post Type and I need to create a select input from them.
I can’t find solution, by now.
Forum: Plugins
In reply to: [Postie] Postie: category filterSORRY for these thread. I had filterPostie.php deactivated: I didn’t know it is a plugin standalone. Now it works. ‘post_category’ must be an int array with category_ids.
Forum: Plugins
In reply to: [Postie] Postie: category filterI tried also:
- $cat = {‘RugbyCS Test’};
$post[‘post_category’] = $cat; - $cat = ‘RugbyCS Test’;
$post[‘post_category’] = $cat; - $cat = {304};
$post[‘post_category’] = $cat; - $cat = 304;
$post[‘post_category’] = $cat;
With no good results.
Forum: Fixing WordPress
In reply to: Dynamically filtering loop where page name equals categoryAnd how can I do if I’d like to loop posts with a LIKE filter on Title or on Description? Thanks
Forum: Fixing WordPress
In reply to: If condition on product category with Wp-Ecommerce[fix] In icl_utility.php I replace:
$new_prefix = sprintf($prefix, get_option('siteurl').'/products-page/'.$this->get_category_nicename($category['id'], TRUE))$;
with
$new_prefix = sprintf($prefix, wpsc_category_url($category['id'], TRUE));
so I can mantain the permalink (with subcategories structure).Forum: Fixing WordPress
In reply to: If condition on product category with Wp-Ecommerce@sulaeman: hei man, thank you very much to address me to that template. I’m studying it and many of my troubles become features.
On little note: function libraries inside wp template are not very good. Can’t move them on plugin folder or plugin template folder?Thanks.Thanks.Thanks.
Forum: Fixing WordPress
In reply to: If condition on product category with Wp-Ecommerce@sulaeman: it’s one of best thing I see for wp e-commerce, now I’ll try to check script I need. Now I can’t change theme, ’cause a graphic team is still working in it. I need only script for subcategories and query for list all products of a categories and its subcategories.
Thanks.
Forum: Fixing WordPress
In reply to: If condition on product category with Wp-EcommerceI’ve to little questions for you, my saviors. I’ve wp ecommerce with gold cart.
- how may I print all subcategories of a selected category?
- how may I print all products of a selected category and all its subcategories
Thank you very much!
Forum: Fixing WordPress
In reply to: If condition on product category with Wp-EcommerceI need to use that plugin but I’m really afraid. Documentation is really lacking and support forum hasn’t directly partecipation of plugin programmer.
I’m trying to translate base products_page.php loop, but it’s not so easy. Moreover I check a bug that we can’t add custom template for plugin ??
(version 3.7.5.3)
- $cat = {‘RugbyCS Test’};