Zen Gonzaga
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Fixing WordPress
In reply to: How to display the term_ID in archive pageGOT IT! #LIKEABOSS ??
Here it is.. i hope it could help other newbie here ??<?php $current_category = single_cat_title("", false); echo $current_category; $id = get_queried_object_id($current_category); echo $id; ?>
Forum: Fixing WordPress
In reply to: Custom Posts, Custom Fields and CategoriesOh i’m sorry i don’t understand what you mean.
Here is how i displayed my Categories:<?php $terms = wp_get_object_terms( $post->ID, 'category' ); foreach( $terms as $term ) $term_names[] = $term->name; echo implode( ', ', $term_names ); ?>
I want to show the field Chapter: $chapter if the Category Novel is displayed in Categories.
How am i gonna do it? ??Forum: Plugins
In reply to: GD Star Rating – Show Usernames who have voted on postwhere is milan?
Can’t he answer this one?
I need it for my site ??
Please help us do this one, it’s important.Forum: Plugins
In reply to: [Theme My Login] [Plugin: Theme My Login] Custom Register Texti used hidden fields to separate an employer from jobseeker in register..
is there any way that they would get different register message?
please… anyone?Forum: Plugins
In reply to: [Theme My Login] [Plugin: Theme My Login] Custom Register Textfunction tml_action_template_message_filter( $message, $action, $role ) { if ( 'register' == $action or 'jobseeker' == $role) {return 'You may now log in and submit your resume.'; return $message; } elseif ( 'register' == $action && 'employer' == $role) {return 'Registration Complete. You may now log in.'; return $message; } else { } } add_filter( 'tml_action_template_message', 'tml_action_template_message_filter', 10, 2 );
Is this possible? to have different registration message for users.
Need a reply please.
It shows “You may now log in and submit your resume.” even it’s not a jobseeker.
Viewing 5 replies - 1 through 5 (of 5 total)