qpaq
Forum Replies Created
-
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] open gallery images in new tabThat really worked, thank you Jory. The only problem left is to find a way to make the images distributed evenly.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] open gallery images in new tabThank you, Jory, for your quick response. I’ll find another way then. Maybe using pods template as you’ve suggested.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] open gallery images in new tabThanks Jory, tried this method with Gallery Custom Links plugin but didn’t resolve the issue. It would have been good if Pods have this feature integrated.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Commas and human readable arraysI am using magic tags in a shortcut form, not familiar much with PHP indeed.
Thanks, that’s good to know. But I assume, we can only use these options on PMS, not on Profile Builder plugin forms which give us more customization options.
How about if I install it on a multisite WP installation?
Forum: Fixing WordPress
In reply to: How to show only child category of a parent category in posts?yes, you are right. But I couldn’t figure it our from the loop page. I want to print under each post the child categories of the post. In my blog, a post may belong to several child categories of 4 parent categories. I want to show and order the children categories of these 4 parent categories as I wish.For example 2 underneath the title, 2 under the post. I thing get_category tag needs some additional parameters to work this out. Any help will be appreciated ??
Forum: Fixing WordPress
In reply to: How to show only child category of a parent category in posts?wp_list_cats might be the solution but I want the children categories to be displayed horizontally, underneath each post in the entry_meta area.
Currently the code is like this under each post.
<?php echo ;the_category(',');?>
This code lists every child category which the post is related without the control of ordering. I would like to control the ordering of the children categories actually. For instance I want the child category of A and D comes first, then the B and C.