• Resolved Joao Almeida

    (@t3mujin)


    My theme highly depends in the featured image, but when I create a job opening I have no option so set one, which makes me end up getting a solid block of color when opening the job opening details page. Is there a way to set the featured image when creating a job opening?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support vidyakv

    (@vidyakv)

    Hi @t3mujin,

    Thanks for reaching out to us.

    By default, we don’t support featured images. But, you can use the below code if you are familiar with theme customizations to add this feature. Please go to your child theme functions.php file and paste this code snippet.

    /**
     * Add featured image support for job openings.
     * 
     * @param array $args arguments.
     * @return array
     */
    function awsm_job_openings_args( $args ) {
    	$args['supports'][] = 'thumbnail';
    	return $args; 
    }
    add_filter( 'awsm_job_openings_args', 'awsm_job_openings_args' );

    Regards,
    Vidya K V

    I past code but and it’s working I set image but not visible in job listing

    Plugin Support vidyakv

    (@vidyakv)

    Could you please share with us the URL of job listing page?

    same problem

    Plugin Support vidyakv

    (@vidyakv)

    Hi @matteograser,

    Did you try the code snippet we given above? If still, it is not working please share with us the URL of the job listing page.

    Regards,
    Vidya K V

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Featured Image’ is closed to new replies.