• Resolved mvanboordt

    (@mvanboordt)


    I have updated to WP 4.4 version and the first thing I noticed is that the jobs page displays the default text if there are no jobs.

    There are job so they should be visible.

    Thankfully I’m smart enough to update in a testenvironment
    so I can’t provide a link to the page.

    Is this a WP 4.4 problem or something else?
    I think it is because on WP 4.3.1 everything works fine!

    I haven’t updated to version 0.7.25. I’m working on version 0.7.24.
    Since I’m not sure where the problem lies I won’t update.

    M.

    https://wordpress.org/plugins/job-manager/

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author Thomas Townsend

    (@smb-dev)

    Since your on 4.4 – I would highly recommend that you upgrade to 7.25 as that included a Security fix just as WP 4.4.1 has. Once you accomplish that you may also need to reset permalink and save. Then you should see your jobs.

    I am having the same problem and I am on 7.25. I tried creating a new permalink and that did not fix it. What do you mean by “reset permalink”? http://jobs.cresa911.org

    Plugin Author Thomas Townsend

    (@smb-dev)

    Kalike – for future reference please don’t hitch-hike on another users thread – Open up your own support request if your having issues. I just checked out your site and it looks like you have resolved the issue – Nice Job on the site too – Thanks

    Thread Starter mvanboordt

    (@mvanboordt)

    No luck. Issue still is there.
    I have reset the permalinks and updated to version 7.25

    Any other ideas?

    Plugin Author Thomas Townsend

    (@smb-dev)

    mvanboordt –

    You should run through the process to ensure you don’t have a plugin and or theme conflict.

    Since your on a test environment I can’t really help much as I have no idea what the variables on you DB and set-up are that might be causing an issue.

    The only other way to troubleshoot this is to load it on a staging instance where you can provide a link.

    Thread Starter mvanboordt

    (@mvanboordt)

    Thomas:
    I will try to put is on a staging site asap.
    Thank you sofar!

    Thread Starter mvanboordt

    (@mvanboordt)

    Oke so I updated to the 7.25 version like you suggested and it seems to work again.
    I have created a custom widget that shows a mix of the latest blogitems and the latest jobs.

    It doesn’t seem to work here but that is on me because it’s custom made.

    Thnx!

    Thread Starter mvanboordt

    (@mvanboordt)

    Thomas –

    Okay so i’m having a little problem figuring this out.
    I can’t get my widget to work like it was used to.

    I understand that this isn’t your problem in any way but I would really appreciate it if you would care to take a look at it.

    So if you do please read on else…. well. Thank you for your time.

    I have taken the basic widget that shows all posts from the blog instance. What I did is added the jobman_job post_type and let it sort on date.

    What used to happen was that the news and the jobs were mixed together.

    Here is how I did it. I hope you can see the problem:

    function widget( $args, $instance ) {
    	extract( $args );
    	function list_all_posttypes() {
    	global $post;
    	global $wp_query;
    	echo '<ul>';
    	rewind_posts();
    
    	// Create a new WP_Query() object
    	$wpcust = new WP_Query(
    		array(
    			'post_type' => array(
    				'jobman_job',
    				'post'
    			),
    			'cat'=>'-35,-42,-39,-43,-41,-40,-52',
    			'showposts' => '4',
    			 )
    		);
    		if ( $wpcust->have_posts() ):
    			while( $wpcust->have_posts() ) : $wpcust->the_post();
    			$displayenddate = get_post_meta( get_the_ID(), 'displayenddate', true );
    			$displaystartdate = get_post_meta( get_the_ID(), 'displaystartdate', true );
    
    			if( '' != $displayenddate && strtotime( $displayenddate ) <= time() ) {
    			$my_post['ID'] = get_the_ID();
      			$my_post['post_status'] = 'draft';
    			wp_update_post($my_post);
    			continue;
    			}
    			?>
    			<li>
    				<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
    			</li>
    		<?php
    		endwhile;  // close the Loop
    		endif;
    		wp_reset_query(); // reset the Loop
    
    		echo '</ul>';

    M.

    Plugin Author Thomas Townsend

    (@smb-dev)

    If your looking to sort jobs on category etc you would be better of adding the Ultimate WP Query Search Filter

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Update WP 4.4 won't show jobs’ is closed to new replies.