baga
Forum Replies Created
-
thanks!
Forum: Plugins
In reply to: Looking for a search pluginI have the same problem and I’ve been waiting for a solution since last November…
Forum: Fixing WordPress
In reply to: Searching posts with different tagsHello GraphixWorks,
were you able to make your search with multiple tags using checkboxes work?Same problem with the 404 error. What about compatibility with qTranslate?
I’m looking for the same advanced search plugin, will it be released?
Forum: Fixing WordPress
In reply to: Display data from custom fieldsAny suggestion regarding my last question?
Forum: Fixing WordPress
In reply to: Display data from custom fieldsWhat if I wanted to display only urls or other cutom fields from the parent page of the current page?
Forum: Fixing WordPress
In reply to: Get custom fields from grandchildrenAfter reading this topic: http://ww.wp.xz.cn/support/topic/320566 I was able to solve the problem using this code:
<?php $parent = $post->ID; $args = array( 'post_type' => 'page', 'post_status' => 'publish', 'posts_per_page' => -1, 'caller_get_posts'=> 1, 'child_of' => $parent ); $pages = get_pages($args); shuffle($pages); if ($pages) { foreach($pages as $post) { setup_postdata($post); if ($post->post_parent != $parent ) { ?> <p><?php echo get_post_meta($post->ID, 'URL', true); ?></p> <?php } } } wp_reset_query(); ?>Forum: Fixing WordPress
In reply to: Display data from custom fieldsCould use the ‘post_parent’ => $post[0]->ID, argument
When i use this argument, it doesn’t display anything, am I missing something?
Forum: Plugins
In reply to: [Plugin: WP Custom Fields Search] using checkboxes???Any idea on how to implement a custom field search which makes use of checkboxes?
Forum: Fixing WordPress
In reply to: Display data from custom fieldsThanks a lot MichaelH 😉
Forum: Fixing WordPress
In reply to: Display data from custom fieldsThanks MichaelH!
I added the line:
<p><?php echo get_post_meta($post->ID, 'url', true); ?></p>
and it works perfectly.What should I add if I wanted to display only urls or other cutom fields from subpages of the current page?
Forum: Plugins
In reply to: How to make wp-e-commerce Multilingualcan anyone help?
Forum: Plugins
In reply to: How to make wp-e-commerce Multilingualup
Forum: Plugins
In reply to: [Plugin: Contact Form 7] how to change “thank you page” url?I’m also interested in this topic.