Forum Replies Created
-
AuthorPosts
-
Hi again.
Maybe the issue is from the PHP version. Can you give us the CPanel account? Can we access your site to downgrade or upgrade the PHP version to check that issue?
Thanks.
Hi.
I have checked your site and found the issue from the package config. You forgot to add the limit to the "download Resume Attach Files Limit" config on the job package. https://prnt.sc/ICpu2U6_xE8D
Please recheck it.
Thanks.
Hi.
Thank you for contacting us.
Yes, if you want to add a specific field to the company, please go to Jobmonster/ Custom Field/ Company tab and add the field as you want. https://prnt.sc/HzDxYwrm7-0g
Then go to customize/ Job & Company/ Single company and check the field on the Show fields option. https://prnt.sc/JvbIqkD303v7
That will help you display that field on the company info in the sidebar on the job details page.
Please recheck it.
Thanks.
Hi.
Thank you for your feedback.
2 years, 1 month ago in reply to: Text is not translated in NL(be), although correctly translated in FR and DE. #1219988Hi.
Thank you for contacting us.
The search field title gets the field name from the field in the jobmonster/ custom field: https://prnt.sc/ynhlfD8fN7JX
You can't use Loco translate to translate that field. Please use the WPML to translate that string.
Thanks.
Hi.
Thank you for contacting us.
For the front-end user dashboard, you need to create a page with shortcode [noo_member_account]. https://prnt.sc/jCSByW2RPm3V
And assign that page to the member via the option at the Jobmonster/ Settings/ Member/ Member manager page: https://prnt.sc/Wst4WTpQkL-3
I'm not sure about the Ultimate Member plugin. Maybe it doesn't compatible with our theme.
Thanks.
Hi.
Thank you for contacting us.
You still can use the regular license if you want to charge your customer.
You need to use the extended license if you want to include the theme package to sell to your customer.
Thanks.
Hi.
Thank you for contacting us.
Which is your specific industry? Please let us know more about that, maybe I can help you find some examples site for that case.
Thanks.
Hi.
Thank you for contacting us.
The popular class in the class details page is the widget sidebar content. You can go to Appearance/ Widgets/ Class sidebar to remove the widget.
Thanks.
Hi.
Thank you for contacting us and sorry for the late response.
As I see, the primary color has changed on your site. If you need help, please let us know again.
Thanks.
This reply has been marked as private.Hi Wal,
The login recovery mode is not available. Maybe the link has expired. How can I go to your source code to enable debug mode to check? Please let us know again.
Thanks.
2 years, 2 months ago in reply to: Adding New Job Alert — Cannot add job location which isn’t being used #1219967Thank, if you need help, please let us know again.
Hi.
I have checked and helped you fix the issue with the job preview.
Please recheck it.
Thanks.
2 years, 2 months ago in reply to: Adding New Job Alert — Cannot add job location which isn’t being used #1219964Hi.
I have changed the source code at this file: /wp-content/themes/noo-jobmonster/layouts/forms/job_alert_form.php
You can move that file to the child theme to avoid the issue when updating the theme. We also include that change to our theme in the next update.
Thanks.
2 years, 2 months ago in reply to: Adding New Job Alert — Cannot add job location which isn’t being used #1219959Hi.
I have helped you show all the locations and categories for the job alert form on the member page.
Please recheck it.
Thanks.
Hi.
Thank you for contacting us.
Please give us your site admin account. We need access your site to check the config.
Thanks.
2 years, 2 months ago in reply to: Adding New Job Alert — Cannot add job location which isn’t being used #1219944Hi.
Thank you for contacting us.
For the job alert location field, we have the option at JobMonster/ Settings/ Job/ hide empty taxonomy config: https://prnt.sc/WD2Xv-Krzyxy
If you uncheck this field, you will see the taxonomy with an empty value for the field select. Now you will see the location without a job for the job alert form.
Please recheck it.
Thanks.
Yes, please let us know again if you need to change the sign-in button.
Thanks.
Hi.
I have helped you check and fixed the google sign image button issue. It has a cache issue on your site.
Now it displays on the login form. Please recheck it.
Thanks.
Hi.
I have checked the job search function, and only the search job on the sidebar is working fine. The search on the job heading doesn't work. I don't know why, maybe it has an issue with the query. I need more time to check it.
Thanks.
Hi again.
Please give us your site URL, admin, and FTP account again. I'll help you add the custom function to get the company covers image to the widget company list.
Thanks.
Hi.
Thank you for contacting us.
Please give us your site admin account. We will help you check that issue.
Thanks.
Hi.
I can't access your site, it response the error: There has been a critical error on this website. Please check your site admin email inbox for instructions.
Do you have cPanel account? We need access your source code to debug that issue.
Thanks.
Hi.
You need to add the function get_company_cover_image() to this file wp-content/themes/noo-jobmonster/framework/admin/noo_company.php under line 1042. This function use to get the company cover image.
public static function get_company_cover_image( $company_id = 0, $size = 'thumbnail', $alt = '', $args = array() ) { if ( empty( $company_id ) ) { return ''; } $size_key = is_array( $size ) ? implode( '_', $size ) : $size; if ( ! isset( self::$companies[ $company_id ] ) ) { self::$companies[ $company_id ] = array(); } if ( ! isset( self::$companies[ $company_id ][ $size_key ] ) ) { $class = apply_filters( 'noo_company_cover_image_class', '', $company_id ); $thumbnail_id = noo_get_post_meta( $company_id, '_cover_image', '' ); $size = is_numeric( $size ) ? array( $size, $size ) : $size; $args[ 'alt' ] = $alt; $args[ 'class' ] = isset( $args[ 'class' ] ) ? $args[ 'class' ] . ' ' . $class : $class; $company_cover_image = wp_get_attachment_image( $thumbnail_id, $size, false, $args ); if ( empty( $company_cover_image ) ) { $img_size = ''; if ( is_array( $size ) ) { $size[ 1 ] = count( $size ) > 1 ? $size[ 1 ] : $size[ 0 ]; $img_size = 'width="' . $size[ 0 ] . 'px" height="' . $size[ 1 ] . 'px"'; } $company_cover_image = '<img src="' . NOO_ASSETS_URI . '/images/company-logo.png" ' . $img_size . ' class="' . $args[ 'class' ] . '" alt="' . $args[ 'alt' ] . '">'; } self::$companies[ $company_id ][ $size_key ] = $company_cover_image; } return apply_filters( 'noo_company_cover_image', self::$companies[ $company_id ][ $size_key ], $company_id ); }
Then you can go to file: wp-content/plugins/jobmonster-addon/includes/elementor-template/noo-company/style-grid.php and use the function below to get the company cover image:
<?php echo Noo_Company::get_company_cover_image($post->ID, 'company-image'); ?>
Please recheck it.
Thanks.
-
AuthorPosts