• Resolved ingohaeck

    (@ingohaeck)


    I have setup wp job manager for client with paid listings
    I want to use a second submission form with less details for a non paid offer without using the payment process but only registration.

Viewing 5 replies - 1 through 5 (of 5 total)
  • This can be done via Woocommerce Paid listings. You can define a package and in the settings you can select what is visible for the user

    Thread Starter ingohaeck

    (@ingohaeck)

    Thx for reply.
    But this way, you have to go to checkout process.
    I want to completely bypass any checkout.
    I know, that paid listen offers a free package but this appears with
    the other packages.
    I want a seperate link for the free submission.

    Maybe you can do this via WordPress Multisite,
    define a subdomain or subdirectory and then you offer on for example page 1 only freepakages, without any checkout, and on page 2 you let the user run through the whole checkout process

    Plugin Contributor Richard Archambault

    (@richardmtl)

    Hi!

    This would involve quite a lot of code customization. You’d need to:
    a) Override job fields with submit_job_form_fields. You’d need to discover the location using various methods (WP functions, page location, etc). One important thing: if is_admin() is true, you’ll need to include all fields (both for the “free” form and paid).
    b) Using the same way you sniff above, you’d also need to remove at least one hook when on the free form (late in WP loading process, wp?):

    remove_filter( 'submit_job_steps', array( 'WP_Job_Manager_WCPL_Submit_Job_Form', 'submit_job_steps' ), 20 );

    Beyond this, I can’t provide further code help, but hopefully this gets you started!

    Plugin Contributor Richard Archambault

    (@richardmtl)

    I’m marking this thread as Resolved as it’s been more than a month since the last reply. If you still need help, please do reply again and mark the thread as Unresolved!

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