visanu
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Charset Error on Website and Administration Panelsame issue I am also suffering. Everything was correct and then all of sudden I encountered with this charset issue [a€?If]
Forum: Plugins
In reply to: [WP Job Manager] Add Password Field in Resume ManagerArigold,
I have edited /wp-job-resume-managerV1113/includes/forms/class-wp-resume-manager-form-submit-resume.php and /wp-job-manager/wp-job-manager-functions.php file to make the Password working in my Job Board. But what I did is not the proper of doing.
Follow below link and hope if it works for you:
https://slobodanmanic.com/249/wordpress-set-password-during-registration/
Let me know , else I will send you my dirty code ??
Forum: Plugins
In reply to: [WP Job Manager] change color oh search jobtry this
input.search_jobs {
background-color: #14821E !important;
}Forum: Plugins
In reply to: [WP Job Manager] Show Resume CategoryI have added the Resume Categories in MultiSelect format on [submit_resume_form] page using below function:
job_manager_dropdown_categories( array( ‘taxonomy’ => ‘resume_category’, ‘hierarchical’ => 1, ‘name’ => ‘resume_categories’, ‘orderby’ => ‘name’, ‘selected’ => $selected_category, ‘hide_empty’ => false ) );
My question is :How I can save this MultiSelect Resume Category so that the Submitted Resume can be shown under Selected Category(ies)
Forum: Plugins
In reply to: [WP Job Manager] Show Resume CategoryI want the multi select resume category on resume-submission-form. please guide.
Forum: Plugins
In reply to: [WP Job Manager] Add Password Field in Resume ManagerDear beaconvt,
I am not emailing the user a new password. I have simply added a new Password field on resume manager forms and blocked the password reset functionality.
Forum: Plugins
In reply to: [WP Job Manager] How to Stop set password emailThis is fixed now.
Forum: Plugins
In reply to: [WP Job Manager] Add Password Field in Resume ManagerThanks Dan for the reply. Actually in our Job Board after user submitted resume then a email is fired to the users email address with a link where the user can reset the password.
We do not want this functionality so I have modified the code and added a new field Password with username.
So now the user knows what he entered the password and no need to reset it.
Thanks for contributing to this great plugin.
Forum: Plugins
In reply to: [MarketPress - WordPress eCommerce] Integrate with WorldPayYep..and its 90% completed. I am wondoring on how to save data after succesful payment completion as payment is being done on there site as the method is SIM.
Can you guide me in this regard please.
Relay URL is : <input type=hidden name=x_relay_URL value=https://localhost/mysite.com/response.php />
Or please you suggest what will be x_relay_URL in our case.
Please guide on how I save response and into database following your standard coding.
Thanks ??
Forum: Plugins
In reply to: [MarketPress - WordPress eCommerce] Integrate with WorldPayThanks for the reply. One query. How to add another payment option check box under admin and how you pointing the appropriate file.
I would like to add Authorize.net SIM. Can you please guide.
Forum: Fixing WordPress
In reply to: redirect old index.php url to new permalinkSorry Its Apache !
Forum: Themes and Templates
In reply to: [Mantra] Help, need to remove author details from postsGo to content.php file under your mantra theme directory and under <div class=”entry-meta”> replace the following code
<?php mantra_posted_on(); ?> with <?php //mantra_posted_on(); ?>This will hide details from the home page.
To do the same from sigle post details page : open single.php file under your theme directory and replace the following code
<div class=”entry-meta”>
<?php WEB_TEAM_posted_on(); //cryout_post_meta_hook(); ?> </div>WITH
<div class=”entry-meta”>
<?php //WEB_TEAM_posted_on(); cryout_post_meta_hook(); ?> </div>Forum: Themes and Templates
In reply to: [Mantra] remove sidebar from mobile devicesOk I fixed the problem by making style display none for the secondary div part for mobile css./
Forum: Fixing WordPress
In reply to: remove sidebar from mobile devicesOk..Thanks !
Forum: Fixing WordPress
In reply to: remove sidebar from mobile devices