Wally
Forum Replies Created
-
Hi @schnuffi, the WordPress update 5.6 affect jquery migrate, that why the plugin is acting this way, I recommend downgrade to 5.5.3 until they update the plugin.
they are working to update the plugin, no need to worry.
Best regards
Wally.Forum: Plugins
In reply to: [WP Job Manager] Jobs are not displayed after loading the pageHi @ptrkx, the WordPress update 5.6 affect jquery migrate, that why the plugin is acting this way, I recommend downgrade to 5.5.3 until they update the plugin.
By the way they are working on it, no need to worry.
Kind regards
Wally.Forum: Plugins
In reply to: [WP Job Manager] How To display New Text BoxCould you give us a screenshot or an example? I’ll try to help you with it.
Forum: Plugins
In reply to: [WP Job Manager] Adding search box on dashboardHi, @bindlegirl thanks for the reply, Im using shortcode, but instead im using [job_dashboard posts_per_page=”7″] i tried adding show filter but it not working, i would love to have Same as jobs search filter because it fast, and it will give it a premium look.
Forum: Plugins
In reply to: [WP Job Manager] Errors from JQuery Upgrade in WP 5.6UP ??, same issue, i had to backup my website entirely t fix the issue, later I realized it was the update that break up the wp job manager, select2 issue as well.
I was trying to fix it myself but I’m no pro in JavaScript ?? I hope they release an updated version.
Forum: Plugins
In reply to: [WP Job Manager] Hiding expired job from taxonomy@bindlegirl thanks for your help, I made something different so it doesn’t effect the archive file, just select jobs that already expired and tell users that they already expired automatically.
I think I will close this topic as resolved!
Thanks for your help.
Forum: Plugins
In reply to: [WP Job Manager] Hiding expired job from taxonomyThank you @bindlegirl for the quick reply, unfortunatly im using taxonomy page that use data that comes from content-job_listing, to automate taxonomy created. i dont know if theres any hope i can manage to do that.
Forum: Plugins
In reply to: [WP Job Manager] Taxonomy for companythanks for the reply, well i think im going to ignore the idea of displaying custom company taxonomy.
thanks for the support
Forum: Plugins
In reply to: [WP Job Manager] Taxonomy for companyThanks for the reply Cena, i was just wondering if i could create a taxonomy to add company, and after this when i try to publish a job i can get the company detail to show on single page, the only thing im not sure how to do it without getting error hiringoranization.
is like having company page and profile, because ive seen some plugins but they are not working.
so i created a custom taxonomy connected to job manager, and i got it to display on single job listing page, but unfortunately when “_company_name” is empty because i display the company name from my custom taxonomy i get the hiringOranization error.
so i would like to have an option that to replace the company name that shown from text field on admin to fetch it from my taxonomy.im not sure if i explained myself correctly.
sorry for my bad english.
Forum: Plugins
In reply to: [WP Job Manager] Show Categorie in single job pageadd this code to your funcion.php and use the one that i send before to display category.
function dm_display_wpjm_single_categories () { $terms = wp_get_post_terms( get_the_ID(), 'job_listing_category' ); if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){ echo ''; }else { echo ' Whatever you want'; } foreach ( $terms as $term ) { echo ' ' . $term->name . ' '; } echo ''; } add_shortcode('list_categories_single', 'dm_display_wpjm_single_categories'); add_theme_support( 'job-manager-templates' ); function categorias_en_listing () { $terms = wp_get_post_terms( get_the_ID(), 'job_listing_category' ); if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){ echo ''; }else { echo ' whatever you want '; } foreach ( $terms as $term ) { echo '' . '<a href="' . esc_url( get_term_link( $term ) ) . '">' . $term->name . '</a>'; } echo ''; } add_shortcode('list_categories_single', 'categorias_en_listing'); add_theme_support( 'job-manager-templates' );
Forum: Plugins
In reply to: [WP Job Manager] WP JOB MANAGER FRONTEND.CSSi found a solution thank <3
- This reply was modified 4 years, 6 months ago by Wally.
Forum: Plugins
In reply to: [WP Job Manager] Show Categorie in single job pagecould you try this, it worked for me.
<?php categorias_en_listing(); ?></li>
Kind regards.
- This reply was modified 4 years, 6 months ago by Wally.