• Resolved thegrbteam

    (@thegrbteam)


    Hello, we love your plugin and have been using it for some time, so thank you.
    The popular page builder plugin Elementor has a post loop widget which can display custom posts in a list/grid or whatever. They claim that it supports all custom post types but for some reason it does not pick up on the custom post type job_listing.

    I know this is out of scope, I agree it’s an issue for Elementor to solve and they of course are pointing to you saying you should check with them. I did just want to ask, is there anything special about the job_listing post type? Or is it just the same as any other custom post type that any given plugin or theme might create?

    Support to create job listings using the Elementor post loop would be really powerful for bespoke designs.

    All the best and thanks in advance!
    Dan

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Elizabeth (a11n)

    (@helizabethan)

    Hello Dan,

    The Job Listing post type “job_listing” adheres to the standard format for creating a custom post type and should be publicly accessible to any custom code for querying.

    Here is a link to the GitHub file if you’d like to share it with the Elementor team.

    Please note, as you correctly mentioned, that we are unable to assist with ensuring that jobs are listed in the Elementor Post Loop widget as this falls outside our support scope.

    Thread Starter thegrbteam

    (@thegrbteam)

    Hi Elizabeth, thank you for the reply. We have since resolved this. For anyone else trying to get WP Job Manager working with Elementor Post Loop, this is the code you will need to add to your functions.php file or a Snippets plugin:

    add_filter('register_post_type_job_listing', function( $args ) {
    $args['show_in_nav_menus'] = true;
    return $args;
    });
    Plugin Support Elizabeth (a11n)

    (@helizabethan)

    You’re welcome! I’m glad to hear that the issue has been resolved.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Elementor Post Loop’ is closed to new replies.