Scott Basgaard
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Retrieve Job Order id based on Line idThanks for the additional feedback and makes sense now.
This is definitely possible, to retrieve the order based on a users job listing and then line item details, but unfortunately I cannot help with custom development here as we don’t have any snippets or tutorials on how to do this.
Since the job listing is unique to an order you could look into hooking into WooCommerce checkout and then adding meta data to the product to get the order ID and then use the following example I provided above.
If you are looking for additional help I can recommend posting on the WordPress job boards here: http://jobs.wordpress.net/
There might be an easier way and I can check with Mike as well and update this.
Thanks again!
ScottForum: Plugins
In reply to: [WP Job Manager] Returning Job PostersHey there,
For add-on support we recommend you open a ticket from your my account area:
https://wpjobmanager.com/support/If you could do so we’ll be able to take a closer look and help point you in the right direction as soon as possible!
In the meantime you could try a plugin to redirect users after logging in to the post a job page like:
https://wordpress.org/plugins/peters-login-redirect/Kind Regards,
ScottForum: Plugins
In reply to: [WP Job Manager] Indeed Integration HelpCan you open a ticket from your account page so we can help you with your Indeed add-on issue:
https://wpjobmanager.com/support/Sounds like your search query might not be pulling back results and we’ll be able to take a closer look if you can provide credentials for us to take a closer look there.
Regarding question #2:
Head over to WP Dashboard -> Job Listings -> Settings and make sure “Category Filter Type” is set to “Jobs will be shown if within ANY selected category”.
Every one should be selected by default, you can preview this on our demo here:
http://demo.wpjobmanager.com/find-a-job/Kind Regards,
ScottForum: Plugins
In reply to: [WP Job Manager] Application email recipientRight, so the code is just an example that would need to be built on / extended.
Not gonna do much just adding it your functions.php template file for example.
Hope this is useful for others as well though!
Forum: Plugins
In reply to: [WP Job Manager] Application email recipientTake a look at this example (haven’t tested):
https://gist.github.com/scottbasgaard/69900845130e6346dbc7This is a pretty basic example but you could build on it to email specific people say based on application meta, etc.
Forum: Plugins
In reply to: [WP Job Manager] Open links in new windowCopy paste fail on my part here from someone else’s code:
<a href="<?php the_job_permalink(); ?>" target="_blank">Is correct.
Forum: Plugins
In reply to: [WP Job Manager] How to remove/hide the time the job was postedGood advice Marc. If you want to change any of the text here take a look at:
https://wpjobmanager.com/document/translating-wp-job-manager/Forum: Plugins
In reply to: [WP Job Manager] Link in JoblistTake a look at:
https://wordpress.org/support/topic/open-links-in-new-window-9?replies=10#post-6195305
and my recommended fix below it, also:
Forum: Plugins
In reply to: [WP Job Manager] Retrieve Job Order id based on Line idHey there,
A bit confused about what you are trying to do as this approach:
Does anyone have a code example of how to retrieve the order id based on the job id or line id?
This could pull back multiple order ID’s and I believe you only ever want to pull back 1.
If you are trying to find the total item price from an order (for a specific line item) you can do something like:
<?php $order = new WC_Order( $order_id ); if ( sizeof( $order->get_items() ) > 0 ) : foreach ( $order->get_items() as $item ) : $product = $item['data']; if ( $product->is_type( 'job_package' ) && ! $product->is_type( 'job_package_subscription' ) ) { $line_total = $item['line_total']; // Do something with it. } endforeach; endif;Can you give me more specifics on what you’d like to do and I can try to help further?
Kind Regards,
ScottForum: Plugins
In reply to: [WP Job Manager] Captcha add onHey there,
This isn’t supported in the plugin right now although you can add extra fields using available filters.
For example:
https://github.com/mikejolley/WP-Job-Manager/blob/master/includes/forms/class-wp-job-manager-form-submit-job.php#L92Kind Regards,
ScottForum: Plugins
In reply to: [WP Job Manager] Dutch translateThanks Marc2412!
Also, check out:
https://wpjobmanager.com/document/translating-wp-job-manager/Cheers,
ScottForum: Plugins
In reply to: [WP Job Manager] Mobile device menu apperance inconsistencyLooks like a conflict / compatibility with your 3rd party theme.
Thanks for your input / help here Marc2412!
I would recommend the same approach and hope this helps as well. Otherwise you might want to look into another theme that has better compatibility with this plugin out of the box.
Cheers,
ScottForum: Plugins
In reply to: [WP Job Manager] How to remove/hide the time the job was postedHey there,
Take a look at:
https://wpjobmanager.com/document/template-overrides/For example in content-job_listing.php you can remove:
<li class="date"><date><?php printf( __( '%s ago', 'wp-job-manager' ), human_time_diff( get_post_time( 'U' ), current_time( 'timestamp' ) ) ); ?></date></li>Hope this helps!
Cheers,
ScottForum: Plugins
In reply to: [WP Job Manager] Changing font colorHey there,
Happy to help.
For changing text see:
https://wpjobmanager.com/document/translating-wp-job-manager/For CSS you’ll need to dig into some styling. If you post a link to your site I could help as changing this could be different from theme to theme.
Kind Regards,
ScottForum: Plugins
In reply to: [WP Job Manager] Missing file/directory errorAwesome, hope this helps get to the bottom of the issue!