MULLAINATHAN
Forum Replies Created
-
Forum: Plugins
In reply to: [Wp-Pro-Quiz] How to change wording on buttons?Hai antoniamar,
Take a look on “WpProQuiz_View_FrontQuiz.php” file and find following line,
<input class=”wpProQuiz_button” type=”button” id=”reviewquestion” name=”reShowQuestion” value=”<?php _e(‘View questions’, ‘wp-pro-quiz’); ?>”
Herewith you can say “View Answers” instead of “View Questions”.
Forum: Plugins
In reply to: [WP Job Manager] Image SizeThank You.
Forum: Plugins
In reply to: [Wp-Pro-Quiz] PREVIOUS BUTTONHello,
I want set First & Last Options on this plug-in. If i click first option Quiz switch to First question, However as same for Last option. Let me know how to write a code for this process..
Thanks in Advance.
Forum: Plugins
In reply to: [Wp-Pro-Quiz] PREVIOUS BUTTONHello,
I want to rearrange the previous & next button on top list. Let me where to change the code.
Thanks in Advance.
Forum: Plugins
In reply to: [WP Job Manager] [submit-job-form] not workingSorry Try this
https://finykey.com/stella/?page_id=3885Forum: Plugins
In reply to: [WP Job Manager] [submit-job-form] not workingHello,
Try this following link, There is no validation & Insertion actions performed.https://finykey.com/stella/post-a-profile-3/
Thanks in Advance.
Forum: Plugins
In reply to: [WP Job Manager] [submit-job-form] not workingI have install this plug-in on live site but,
Validation & Insertion not working.
Please assist me.Forum: Plugins
In reply to: [WP Job Manager] the_company_logo()Thank You.,
Forum: Plugins
In reply to: [WP Job Manager] Import new field value to databaseHi,
Thank you.
Forum: Plugins
In reply to: [WP Job Manager] Import new field value to databaseHi,
Please find my coding.
<div class=”company”>
<?php the_company_name( ‘‘, ‘ ‘ ); ?>
<?php the_company_tagline( ‘<span class=”tagline”>’, ‘</span>’ ); ?>
<?php get_post_meta( $post->ID, ‘_job_salary’, true ); ?>
</div>I have tried some other options too.
<?php the__job_salary( ‘<span class=”tagline”>’, ‘</span>’ ); ?>
But it’s not working. Please assist me to solve this problem.
Forum: Plugins
In reply to: [WP Job Manager] Import new field value to databaseThank You
Forum: Plugins
In reply to: [WP Job Manager] [submit-job-form] not workingThank you so much.
Forum: Plugins
In reply to: [WP Job Manager] [submit-job-form] not workingHow to fetch _job_salary from database.?
Thanks in Advance.
Forum: Plugins
In reply to: [WP Job Manager] Import new field value to databaseThank you, I found the solution.
can i have the coding to fetch ‘_job_salary’ value from database.?
And where to add that coding.?Thanks in advance.
Forum: Plugins
In reply to: [WP Job Manager] Import new field value to databaseIn which file I need to add this following code?
function frontend_add_salary_field_save( $job_id, $values ) {
update_post_meta( $job_id, ‘_job_salary’, $values[‘job’][‘job_salary’] );
}add_action( ‘job_manager_update_job_data’, ‘frontend_add_salary_field_save’, 10, 2 );