Forum Replies Created

Viewing 12 replies - 16 through 27 (of 27 total)
  • 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.

    Hi @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.

    Could you give us a screenshot or an example? I’ll try to help you with it.

    Thread Starter Wally

    (@inempleo)

    Hi, @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.

    UP ??, 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.

    • This reply was modified 3 years, 11 months ago by Wally.
    • This reply was modified 3 years, 11 months ago by Wally.
    Thread Starter Wally

    (@inempleo)

    @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.

    Thread Starter Wally

    (@inempleo)

    Thank 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.

    Thread Starter Wally

    (@inempleo)

    thanks for the reply, well i think im going to ignore the idea of displaying custom company taxonomy.

    thanks for the support

    Thread Starter Wally

    (@inempleo)

    Thanks 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.

    • This reply was modified 4 years, 6 months ago by Wally.
    • This reply was modified 4 years, 6 months ago by Wally.

    add 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' );
    • This reply was modified 4 years, 6 months ago by Wally.
    • This reply was modified 4 years, 6 months ago by Wally.
    Thread Starter Wally

    (@inempleo)

    i found a solution thank <3

    • This reply was modified 4 years, 6 months ago by Wally.

    could 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.
Viewing 12 replies - 16 through 27 (of 27 total)