-
AuthorPosts
-
September 17, 2020 at 6:40 pm #1246589
Hi,
Is there a job listing plugin (fully) compatible with ENFOLD theme ?I used simple job listing plugin, but It’s complicated to customize the design or modify the content with ENFOLD…
Or can you advise a better solution ?
Thanks
September 17, 2020 at 6:57 pm #1246590I try to use Advanced Layout Builder with the simple job board plugin.
So, I follow the recommandations here : https://kriesi.at/documentation/enfold/intro-to-layout-builder/#alb-for-any-post-typeAnd I replace ‘YOUR CUSTOM POST NAME’ by ‘jobs’
Here is the simple job listing general settings :
Jobpost Custom Post Type Slug: jobs
Job Category Taxonomy Slug: job-category
Job Type Taxonomy Slug: job-type
Job Location Taxonomy Slug: job-locationHere is the code I copy in the enfold chid theme functions.php :
function avf_alb_supported_post_types_mod( array $supported_post_types )
{
$supported_post_types[] = ‘jobs’;
$supported_post_types[] = ‘jobs’;
return $supported_post_types;
}
add_filter(‘avf_alb_supported_post_types’, ‘avf_alb_supported_post_types_mod’, 10, 1);function avf_metabox_layout_post_types_mod( array $supported_post_types )
{
$supported_post_types[] = ‘jobs’;
return $supported_post_types;
}
add_filter(‘avf_metabox_layout_post_types’, ‘avf_metabox_layout_post_types_mod’, 10, 1);But no Advanced Layout Builder available in the simple job listing post entry.
Can someone tell me what is wrong ?Thanks
September 18, 2020 at 7:20 am #1246661Hi,
Unfortunately, there is no full compatibility list for Enfold, so you would be a little testing, trial, and error to find the correct fit.
Best regards,
Jordan ShannonSeptember 21, 2020 at 4:56 pm #1247401Hi,
the Simple Job Board support gives me the custom post type name : “jobpost”.
So I try the following code in the Enfold Child theme functions.php
/*
* Code pour utiliser Advanced Layout Builder avec Simple Job Board
*/
function avf_alb_supported_post_types_mod( array $supported_post_types )
{
$supported_post_types[] = ‘jobpost’;
$supported_post_types[] = ‘jobpost’;
return $supported_post_types;
}
add_filter(‘avf_alb_supported_post_types’, ‘avf_alb_supported_post_types_mod’, 10, 1);function avf_metabox_layout_post_types_mod( array $supported_post_types )
{
$supported_post_types[] = ‘jobpost’;
return $supported_post_types;
}
add_filter(‘avf_metabox_layout_post_types’, ‘avf_metabox_layout_post_types_mod’, 10, 1);-> I have now ALB, but I no longer have the SJB content (job features and application form)
So I can’t use it.Someone have a solution to have Advance Layout Builder with the custom post type of Simple Job Board (but without delete the job features and application form) ?
If so, the plugin will become fully compatible with ENFOLD
Thanks
September 23, 2020 at 4:50 am #1247727Hi,
Thank you for the inquiry.
We don’t really know if this is possible because we don’t have any experience with the plugin. Are you using the Block editor? Please try to switch to the Classic editor, see if that helps.
The snippets above should only enable the advance layout builder without affecting the custom post type’s application form.
Best regards,
IsmaelSeptember 23, 2020 at 5:14 pm #1247933Hi Ismael,
No change with the classic editor.
ALB overwrite the content of the custom post type of the Simple Job Board.
ThanksSeptember 25, 2020 at 1:00 pm #1248432Hi,
Thank you for the update.
It is possible that the plugin hooks to the default content of the post, which is not available in the advance layout builder, so the application form does not show. You might have to switch to the default editor in order to display the application form back. Or you could ask the plugin author how the plugin renders the form in the post.
Best regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.