Okay
  Public Ticket #3776841
Product Inquiry
Closed

Comments

  •  1
    CHARIT started the conversation

    Hi, I have a question about the product Inquiry form. Can I setting form for only login user can submit.

  •  2,281
    WebWizards replied

    Hi,

    To achieve that, please add this PHP snippet to your site:

    add_filter('marketking_get_inquiries_form', function($content){
    
    	if (!is_user_logged_in()){
    		return 'To send an inquiry, please first log in.';
    	}
    	
        return $content;
    }, 10, 1);

     

    Logged out users will then see:

    2422956306.png

     

    Kind regards,

    Stefan

  •  50
    Anthony O Connell replied

    Hi guys. 

    This ticket I feel is relevant to me as well.

    Is it possible to do this for the main contact form on the vendors store as well?

    Thanks

  •  2,281
    WebWizards replied

    Hi there,

    This code snippet applies to the vendor store contact form, as well as the product page inquiry form, so I think it should work for you.