Forum Replies Created
-
AuthorPosts
-
Dear, that is error in WooCommerce plugin, you can delete woocommerce plugin on your site then install again from WordPress plugin.
Best regards.
Sorry, no way to change it because it use SQL query compare price to order but if not price, it can't compare.
Best regards.
This reply has been marked as private.Dear, Please kindly delete JM Core plugin old version on your site, then go to admin menu 'Appearance -> Install Plugins' and install JM core plugin to get latest version 1.0.5, your problem is fixed in JM Core plugin latest version. Or you can download JM Core plugin in HERE to install your site
Best regards.
Dear, You can download Jobica Core plugin latest version in HERE
Best regards.
Dear, Please kindly send for me admin account and your site URL via private reply, i will check details to help you.
Best regards.
Dear, You can add it via use custom code, please install and switch your site to use Jobica Child theme, then add customm PHP code in file functions.php of Jobica Child Theme.
Code:
add_action('noo_register_form_start', function(){ $prefix = uniqid(); ?> <div class="form-group row required-field"> <label for="<?php echo esc_attr($prefix); ?>_first_name" class="col-sm-4 control-label"><?php esc_html_e('First Name','jobica')?></label> <div class="col-sm-8"> <input type="text" class="form-control" id="<?php echo esc_attr($prefix); ?>_first_name" name="first_name" required placeholder="<?php echo esc_attr__('First Name','jobica')?>"> </div> </div> <div class="form-group row required-field"> <label for="<?php echo esc_attr($prefix); ?>_last_name" class="col-sm-4 control-label"><?php esc_html_e('Last Name','jobica')?></label> <div class="col-sm-8"> <input type="text" class="form-control" id="<?php echo esc_attr($prefix); ?>_last_name" name="last_name" required placeholder="<?php echo esc_attr__('Last Name','jobica')?>"> </div> </div> <?php });
Best regards.
Dear, Please kindly delete Jobica Core plugin old version on your site, then go to admin menu 'Appearance -> Install Plugins' and install Jobica core plugin to get latest version 1.2.18, your problem is fixed in Jobica Core plugin latest version.
Best regards.
This reply has been marked as private.Dear, Please kindly send for me admin account and your site URL via private reply, i will check details to help you.
Best regards.
Dear, Please kindly give me more details what you want change (with screenshot), it will check to help you.
Best regards.
Dear, you can go to admin menu 'Settings -> General' and change language of your site to 'German' then use Loco plugin to translate theme.
Best regards.
Sorry, because it not have price, so it the query can't order it to first,
Dear, please kindly send for me admin account and your problem URL via private reply, i will check details to help you.
Best regards.
Dear, I check your site i see that problem because you custom search field select, to fix your problem please:
1. Remove value none (change to empty) in file 'layouts/noo-property-search-style-2.php' (see attachment)2. Add custom code in file functions.php of your theme to change search query work with multi select cities
add_filter('re_property_search_tax_query', function($tax_query, $request){ $tax_list = array( 'location' => 'property_location', 'sub_location' => 'property_sub_location', 'category' => 'property_category', 'status' => 'property_status', ); $tax_list = apply_filters( 're_property_query_tax_list', $tax_list ); if ( !empty( $tax_list ) ) { foreach ($tax_list as $tax_key => $term) { if( isset( $REQUEST[$tax_key] ) ) { $value = $REQUEST[$tax_key]; $value = is_array($value) ? array_filter($value) : trim($value); if(empty($value)){ continue; } $tax_query[] = array( 'taxonomy' => $term, 'field' => 'slug', 'terms' => implode(',', (array) $value) ); } } } return $tax_query; },10,2);
Best regards.
Sorry, i check again i see that is problem in theme, please go to file 'noo-jobmonster/layouts/dashboard/manage-job.php' and remove code 'unset($all_statuses['draft']);' (see attachment) to allow filter draft status. We're will remove it in next update version.
best regards.
Attachments:
You must be logged in to view attached files.Dear, What is Jobmonster ? Your site use Jobmonster or Jobica theme ? Because i see you post in Jobica form, we're will add support require Candidate profile image for Jobica theme in next update version.
best regards.
Dear, the theme not support custom order properties for specific page. If you want custom order for all properties archive page, please add custom code in file functions.php of your theme.
add_filter('rp_get_property_query_args', function( $query_args){ $query_args['orderby'] = "meta_value_num meta_value"; $query_args['order'] = 'DESC'; $query_args['meta_key'] = 'price'; return $query_args; });
Best regards.
Dear, please check and sure email sender is work on your site, you can use Check Email plugin to check it.
Also, i can't login with account your send, please kindly check again.
Best regards.
This reply has been marked as private.This reply has been marked as private.Sorry, I don't specialize to config server, You can contact with server provider support to help you.
Best regards.
Dear, the draft status is you changed in admin backend, Employer and Candidate can't change application to 'draft' So, the theme not support draft filter for Employer and Candidate.
Best regards.
Dear, I check and see the search still working, please see video and check your site again.
best regards.
Dear, i check and see the Search By Distance not work because your site have a error, please kindly enable debug on your site and check again.
Best regards.
-
AuthorPosts