hamergil
Forum Replies Created
-
I purchased the PRO version. can you try and answer my question above?
I prefer to use PHP and not jQueryForum: Plugins
In reply to: [Print, PDF, Email by PrintFriendly] Popup is not working on my serverOK I think you should mention it in your plugin information..
I spent hours trying to resolve it thinking there is something wrong
in my server.
thanksForum: Plugins
In reply to: [Print, PDF, Email by PrintFriendly] Popup is not working on my serverHere is another example:
https://tinyurl.com/2sx4r62e
click here to see
https://prnt.sc/gmlar9eE6mEX
maybe it requires PHP 8?
Maybe it’s not working on Nginx?
ThanksI can’t use this filter in my functions.php
because $this needs to be referred to something
anything I can do? I don’t want to modify the plugin. thanksForum: Plugins
In reply to: [Multi Step for Contact Form 7] The FREE version doesn’t work at allOK
We’ll continue it from there
thanksI Appreciate your answer.
I need something very specific
I need users with specific roles to be able to get their
user and password and enter specific page.
I guess it’s not possible.
I thank you anywayThanks a lot for your kind answer Steven.
besides my issue it’s a very useful plugin.
Well Done!- This reply was modified 4 years, 10 months ago by hamergil.
I used the user agent string and it is now working.
thanks alot!Forum: Plugins
In reply to: [WooCommerce] How to add line breaks in product short descriptionHi
Did you find an answer?
I would like to know
ThanksOk cool
Thank you.I see
Id be glad if you consider such option
in future updates
ThanksForum: Plugins
In reply to: [WP Job Manager] Add select box fieldSure. this is the code I was using:
add_filter( 'submit_job_form_fields', 'frontend_add_region_field' ); function frontend_add_region_field( $fields ) { $fields['job']['job_region'] = array( 'label' => __( 'Region', 'job_manager' ), 'type' => 'select', 'options' => array( 'East', 'West','South', 'North'), 'required' => true, 'placeholder' => '', 'priority' => 3 ); return $fields; } add_action( 'job_manager_update_job_data', 'frontend_add_region_field_save', 10, 2 ); function frontend_add_region_field_save( $job_id, $values ) { update_post_meta( $job_id, '_job_region', $values['job']['job_region'] ); }
This added a special “Region” drop down field to my frint end “add job” page.
hope it helpsForum: Plugins
In reply to: [WP Job Manager] Add select box fieldHey @bryceadams
thanks for the link. I actually used the above code mike provided but I will definitely consider using this plugin in the future.
I left a review in the link you provided
Thanks.Forum: Plugins
In reply to: [WP Job Manager] Add select box fieldThanks Don
I’ll definitly check that outForum: Plugins
In reply to: [WP Job Manager] Add select box fieldGreat! it is working
Is this the only way to add / edit fields?
is there an additional plugin that does that easier?
Thanks