*

SriramRajendran

  • ***
  • 29 posts
  • Sriram Rajendran
contact publisher form should not be editable
« on: October 26, 2019, 06:08:02 PM »
Hi,

I don't want the contact publisher form to be editable by the user,

fields such as email and name should not be able to editable by the users, Please help




Marked as best answer by frosticek on October 28, 2019, 09:32:43 AM
*

MB Themes

Re: contact publisher form should not be editable
« Reply #1 on: October 28, 2019, 09:32:23 AM »
@indiaclassify
In item-send-friend.php of theme find:
Code: [Select]

            <div class="row">
              <label for="yourName"><?php _e('Name''beta') ; ?><span class="req">*</span></label>
              <div class="input-box"><?php ContactForm::your_name(); ?></div>
            </div>

            <div class="row">
              <label for="yourEmail"><span><?php _e('E-mail''beta') ; ?></span><span class="req">*</span></label>
              <div class="input-box"><?php ContactForm::your_email(); ?></div>
            </div>       

and replace with:
Code: [Select]
            <?php if(osc_is_web_user_logged_in()) { ?>
              <input type="hidden" name="yourName" value="<?php echo osc_esc_htmlosc_logged_user_name() ); ?>" />
              <input type="hidden" name="yourEmail" value="<?php echo osc_logged_user_email();?>" />
            <?php } else { ?>
              <div class="row">
                <label for="yourName"><?php _e('Name''beta') ; ?><span class="req">*</span></label>
                <div class="input-box"><?php ContactForm::your_name(); ?></div>
              </div>

              <div class="row">
                <label for="yourEmail"><span><?php _e('E-mail''beta') ; ?></span><span class="req">*</span></label>
                <div class="input-box"><?php ContactForm::your_email(); ?></div>
              </div>       
            <?php ?>


Required block is bellow line:
<!-- ITEM CONTACT FORM -->

(there can be more similar blocks)
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

SriramRajendran

  • ***
  • 29 posts
  • Sriram Rajendran
Re: contact publisher form should not be editable
« Reply #2 on: October 28, 2019, 06:25:35 PM »
Thanks ! it worked  :D