nghtmre
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Job KeywordHello,
I have provided you with the documentation link that might help you.
Do not hesitate, cordially
function my_wpjm_meta_key_dm() { global $wpdb, $job_manager_keyword; $searchable_meta_keys[] = '_my_meta_field'; return $searchable_meta_keys; } add_filter('job_listing_searchable_meta_keys', 'my_wpjm_meta_key_dm');
Forum: Plugins
In reply to: [WP Job Manager] Job KeywordHope this piece of code can help you.
Cordially
function my_wpjm_meta_key_dm() { global $wpdb, $job_manager_keyword; $searchable_meta_keys[] = '_job_location'; return $searchable_meta_keys; } add_filter('job_listing_searchable_meta_keys', 'my_wpjm_meta_key_dm');
- This reply was modified 3 years, 7 months ago by nghtmre.
Forum: Themes and Templates
In reply to: [Astra] menu for connectedSujet résolu grace à ce poste
https://www.ads-software.com/support/topic/what-is-the-logged-in-account-menu-and-where-do-i-find-it/Forum: Themes and Templates
In reply to: [Astra] menu for connectedThere are a logged menu in Astra
However I can not have it taken into accountForum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] edit formOK sorry for my question, I just saw that we could do it in the pro version.
Hello,
I no longer have the error that appears. Thank you.
On the other hand, I cannot select or add a page / category or other
cordially
Hello,
I thank you for your feedback.
WP_DEBUG is false.and I would like to upload a ticket but the url is requested on the website and the site is currently under development on a local server.
Forum: Plugins
In reply to: [WP Job Manager] Content on listing category pageNo and you welcome….
Forum: Plugins
In reply to: [WP Job Manager] Content on listing category pageFor the regions the plugin allowing to make available the regions not being native to Wp Manager no idea.
Forum: Plugins
In reply to: [WP Job Manager] Content on listing category pageIf I tell you no stupidity you add it in function.php
add_theme_support( 'job-manager-templates' ); function dm_display_wpjm_categories () { $terms = get_terms( array( 'taxonomy' => 'job_listing_category', 'hide_empty' => false, ) ); if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){ echo '<ul>'; foreach ( $terms as $term ) { echo '<li>' . '<a href="' . esc_url( get_term_link( $term ) ) . '">' . $term->name . '</a></li>'; } echo '</ul>'; } } add_shortcode('list_categories', 'dm_display_wpjm_categories');
Et ca dans ta page
<?php echo do_shortcode('[list_categories]'); ?>
It’s been a long time since I put my nose back in it but hey …
Sorry for the English google translation.
Forum: Plugins
In reply to: [WP Job Manager] Job-Categories in SidebarHello,
To display the categories of offers, you have the shortcode
<? Php echo do_shortcode (‘[list_categories]’); ?> “
And to indicate the numbers of offers on your website I used this
<?php
$query = new WP_Query( array(‘post_type’ => ‘job_listing’,’meta_key’ => ‘_filled’, ‘meta_value’ => 0 ) );
echo $query->found_posts;
?>I don’t know if that can help you.
cordially
Forum: Plugins
In reply to: [WP Job Manager] Multiple Users Same Employerthe link you put does not work.
Forum: Plugins
In reply to: [WP Job Manager] “Search Jobs” button not translatingyou have the locotranslate plugin.
it allows you to modify any plugin, theme and all that for free.
very easy to use.Forum: Plugins
In reply to: [WP Job Manager] Calendar custom fieldHello,
Just to let you know that I found the solution.
Here is the code I inserted in the function.php file.
add_filter( 'job_manager_job_listing_data_fields', 'admin_add_relance_field' ); function admin_add_relance_field( $fields ) { $fields['_relance'] = array( 'label' => __( 'Date de la relance', 'job_manager' ), 'type' => 'text', 'placeholder' => '', 'show_in_admin' => true, 'show_in_rest' => true, 'data_type' => 'string', 'required' => false, 'description' => '', 'priority' => 13, 'classes' => 'job-manager-datepicker', ); return $fields; }
If that can help you.
Forum: Plugins
In reply to: [WP Job Manager] Remove large company logo from Single Job PageYou can change the status of your request to resolved in this case.
Do not hesitate, if I can help you.