Link to the page? Have you ensure an application email/url is set for the job?
Hi,
I have got the same problem. I put an email address and it still doesn’t show. Do you have any idea?
thank you
@gerlav31 Rule out the theme. Some themes like jobify have extra steps to add the apply button (in their docs), but if you test on twenty twelve theme it should just appear after the content.
So what can I do? My theme is directory from ait themes
@gerlav31 Switch to twenty twelve temporarily to see if thats causing the issue first..
yes it works with twenty twelve. Is there something I can modify in your plugin?
Thank you
Thank you for yours replies but I don’t know how to do that.
Here is what i understand
Create a single-job_listing.php and add the page.php or single.php content in this file. Which one do i have to use
Here is the page.php:
<?php
$latteParams['post'] = WpLatte::createPostEntity(
$GLOBALS['wp_query']->post,
array(
'meta' => $GLOBALS['pageOptions'],
)
);
/**
* Fire!
*/
WPLatte::createTemplate(basename(__FILE__, '.php'), $latteParams)->render();
and the single.php
<?php
$latteParams['post'] = WpLatte::createPostEntity(
$GLOBALS['wp_query']->post,
array(
'meta' => $GLOBALS['pageOptions'],
)
);
ob_start();
comments_template('');
ob_get_clean();
/**
* Fire!
*/
WPLatte::createTemplate(basename(__FILE__, '.php'), $latteParams)->render();
and then how can I customise single-job_listing.php to fix my problem?
Thank you
O this will be more difficult. It’s using WPLatte rather than the standard type of templates most themes use/default WordPress themes use.
From those snippets i cannot be sure if the_content (https://codex.wordpress.org/Function_Reference/the_content) is being used, nor can I tell if there is a valid WP loop (https://codex.wordpress.org/The_Loop).
If you want to use this theme, you may need to get the theme author involved since they have added this extra layer of complexity.