Old
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: WordPress is lacking real freadoomThat’s why I said “institution”.
Forum: Plugins
In reply to: [Jigoshop] Bundle productsThank you. I’ll contact them.
Forum: Hacks
In reply to: Post Types with custom Rewrite Slug give 404Any ideas please?
Forum: Hacks
In reply to: Post Types with custom Rewrite Slug give 404Nop. Once you remove the CPT base, only posts from the CPT works. Everything else gets 404.
Forum: Hacks
In reply to: Post Types with custom Rewrite Slug give 404Yeah, I’m aware about the flush. Unfortunately it is not that.
Forum: Fixing WordPress
In reply to: Special permalink with taxonomy and custom post typesNo worries. I’ll read the tutorial carefully.
Forum: Fixing WordPress
In reply to: Special permalink with taxonomy and custom post typesForum: Fixing WordPress
In reply to: Special permalink with taxonomy and custom post typesIt’s a category.
The /%category%/ doesn’t work for custom term. What I need is the term from my custom taxonomy to appear on the URL.
I’m having the same issue. When the user upload a photo with special characters on the filename, the photo doesn’t show up on the front-end.
Thanks, I hope see this feature soon.
Thank you
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Showing user dataNever mind. I found the information here https://www.campbellhoffman.com/form-manager-faq/#putting-submission-data-on-a-post-or-page
Forum: Fixing WordPress
In reply to: Specific Form Plugin SuggestionThanks for your answer. One thing that I forgot to say is that I don’t want to touch on the default WP’s registration. It is already being used and I don’t want to mess it up. So, my solution needs to use a third party plugin or custom post types.
Forum: Fixing WordPress
In reply to: Help in creating a loop for post_id and meta_value tablesSorry to restart this thread, but now I can explain things better. So, let me try one more time.
I’m trying to create a loop to read all the meta_value records from a given post_id. The idea is to gather all the meta_value’s data from wp_postmeta table related to post_id number and print them as a list. But so far, I couldn’t make this work. The issue is my ‘custom_fields’ variable. There I need to put my meta_key. But I have several meta_key per post_id. For example, the post_id 2171 has data2,date3,data4,data5.. data19 as meta_key. So, how can I get this working?
function jb_applicant() { global $wpdb; $custom_fields = get_post_custom(2171); $my_custom_field = $custom_fields['data2']; $op = ''; foreach ( $my_custom_field as $key => $value ) { $op .= $key . " => " . $value . "<br />"; } return $op; } add_shortcode('applicant', 'jb_applicant');
Forum: Fixing WordPress
In reply to: Help in creating a loop for post_id and meta_value tablesExactly.