integratutions
Forum Replies Created
-
Yes, really appreciate your help. It’s all clear and good now π
Thank you Markartisan!
My “Banned Users” section wasn’t activated previously and the list is empty as of now. Does it mean that the previous IP addresses weren’t banned? If not, where can I view and delete those IP entries?
Some of them are my customers who genuinely forgotten their password and entered too many times. :s
Forum: Plugins
In reply to: [WooCommerce] Flat Rate Shipping does not have additional options segmentHey Mike,
I was following your post on : https://woocommerce.wordpress.com/2015/06/16/simplifying-flat-rate-shipping-in-wc-2-4/
Appreciate your information and kind assistance :).
I have gotten my additional shipping rates/options up and running thanks to you!
My question is : I have Free Shipping for orders more than $100 setup. But the issue is on the front-end checkout page, the other options still show up, together with the Free Shipping Option. I was thinking if it’s possible to automatically hide the other options when the purchases are above $100 so it’s not so confusing for my customers.
Any idea how to implement that? Thanks in advance!
Forum: Fixing WordPress
In reply to: Looking for Magazine Like Slideshow With Content 2015 SolutionThanks for your reply π
I got a theme already. I’m just looking for a solution to enhance my blog/content marketing.
Do you know what’s the specific term for this kind of slider? Maybe it will help with my search.
Forum: Plugins
In reply to: [WP Job Manager] Field Types Available?I’m sorry Mike, I’m really stupid. Still doesn’t work.
http://awesomescreenshot.com/03749mrnd8
I have added your code into my Editor.I’m getting this prompt as if the system doesn’t registers the user’s input via the form.
http://awesomescreenshot.com/06c49mt685Please advice.
Forum: Plugins
In reply to: [WP Job Manager] Field Types Available?Hi Mike,
I have changed the type to “multiselect”. The following is the code:
add_filter( ‘submit_resume_form_fields’, ‘frontend_add_style_field’ );
function frontend_add_style_field( $fields ) {
$fields[‘resume_fields’][‘job_style’] = array(
‘label’ => __( ‘Teaching Style’, ‘job_manager’ ),
‘type’ => ‘multiselect’,
‘required’ => false,
‘options’ => array (‘Group’=>”Group”, ‘1 to 1’=>”1 to 1″ ),
‘priority’ => 5
);
return $fields;
}The form seems to be displaying fine but it doesn’t capture the user’s input after completing and saving the form.
URL : http://tutors.com.sg/submit-your-resume/
I’m not sure how to resolve this. Please help.
Forum: Plugins
In reply to: [WP Job Manager] Field Types Available?Hi Mike,
Thanks again for your help.
I’m trying to achieve this:
Question: When are you available?
Option A : 1st January
Option B : 2nd January
Option C : 3rd JanuaryUser can have the option to select one or more options like checkbox. What’s the best way to achieve it if there isn’t multi checkbox function.
Thanks in advance!
Forum: Plugins
In reply to: [WP Job Manager] Field Types Available?Hey guys,
Just to check, how about “Checkbox”? What’s the code for creating the checkbox options?
Thanks in advance!
Forum: Plugins
In reply to: [WP Job Manager] Field Types Available?Hey Adam,
Thank you so much. It’s working now. π
Forum: Plugins
In reply to: [WP Job Manager] Field Types Available?Hey Mike,
Thanks for your help. π
I’m not sure how do I enter the code in for Array. Can you help me with it please?
Here’s the code to adding the field in :
function frontend_add_salary_field( $fields ) {
$fields[‘resume_fields’][‘job_salary’] = array(
‘label’ => __( ‘Salary’, ‘job_manager’ ),
‘type’ => ‘select’,
‘required’ => true,
‘placeholder’ => ”,
‘priority’ => 4
);
return $fields;
}Thanks in advance!