Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #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

    #1246590

    I 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-type

    And 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-location

    Here 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

    #1246661

    Hi,

    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 Shannon

    #1247401

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

    #1247727

    Hi,

    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,
    Ismael

    #1247933

    Hi Ismael,
    No change with the classic editor.
    ALB overwrite the content of the custom post type of the Simple Job Board.
    Thanks

    #1248432

    Hi,

    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

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.