Support Forums - Classified Ads Script Osclass

Osclass theme support => Beta Osclass Theme => Topic started by: SriramRajendran on October 26, 2019, 06:08:02 PM

Title: contact publisher form should not be editable
Post by: SriramRajendran 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



Title: Re: contact publisher form should not be editable
Post by: MB Themes 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)
Title: Re: contact publisher form should not be editable
Post by: SriramRajendran on October 28, 2019, 06:25:35 PM
Thanks ! it worked  :D