Advertisement:

Author Topic: Hiding Moble number[solved]  (Read 2105 times)

theinvisible

  • Sr. Member
  • ****
  • Posts: 311
Hiding Moble number[solved]
« on: January 25, 2017, 03:26:49 pm »
I want to show mobile numbers of listings to login-ined users only, not to everybody. But i want to show the contact form to every one.

How to do this?
I also have another question, but 1st i need this one resolved.
« Last Edit: May 05, 2017, 07:43:35 am by theinvisible »

Liath

  • issues
  • Hero Member
  • *
  • Posts: 1346
  • </html> the end is always near
Re: Hiding Moble number
« Reply #1 on: January 26, 2017, 10:10:44 pm »

theinvisible

  • Sr. Member
  • ****
  • Posts: 311
Re: Hiding Moble number
« Reply #2 on: January 28, 2017, 06:20:19 pm »
You can try this


http://forums.osclass.org/tips-and-tricks/(howto)-contact-info-on-click/

I checked.. But i can't find out any
Code: [Select]
<?php if(osc_item_show_email()) { ?>
<p class="email"><i class="fa fa-envelope"></i><?php printf('%s'osc_item_contact_email()); ?></p>
<?php ?>
<?php if (osc_user_phone() != '') { ?>
<p class="phone"><i class="fa fa-phone"></i><?php printf('%s'osc_user_phone()); ?></p>
<?php ?>
   in item.php or item-sidebar.php

please help me find it.

Liath

  • issues
  • Hero Member
  • *
  • Posts: 1346
  • </html> the end is always near
Re: Hiding Moble number
« Reply #3 on: January 28, 2017, 08:27:51 pm »
Find the place where the contact details are output, it looks like this


every theme is different, you just have to look for the place where the contact details are output. Then change it in the funticon also for the correct output


its the best to search for osc_user_phone())

theinvisible

  • Sr. Member
  • ****
  • Posts: 311
Re: Hiding Moble number
« Reply #4 on: January 29, 2017, 02:02:19 pm »
ok found it.

theinvisible

  • Sr. Member
  • ****
  • Posts: 311
Re: Hiding Moble number
« Reply #5 on: January 29, 2017, 02:43:23 pm »
I want to show the "Show e-mail in the listing page" option in the publish listing page of logged in users. Now this option is only shown in case of unregistered or no logged in users. I want the same for logged in users posting page.
How to do that in item-post.php?

check the screenshots.

Liath

  • issues
  • Hero Member
  • *
  • Posts: 1346
  • </html> the end is always near
Re: Hiding Moble number
« Reply #6 on: January 29, 2017, 07:52:52 pm »
you have to search for this block


Code: [Select]
<?php if(osc_is_web_user_logged_in() ) { ?>
<div class="form-group">
    <div class="controls checkbox">
        <?php ItemForm::show_email_checkbox(); ?>
        <label for="showEmail"><?php _e('Let the user see my email address'OSCLASSWIZARDS_THEME_FOLDER); ?></label>
    </div>
</div>
<?php ?>


and change it to


Code: [Select]
<div class="form-group">
    <div class="controls checkbox">
        <?php ItemForm::show_email_checkbox(); ?>
        <label for="showEmail"><?php _e('Let the user see my email address'OSCLASSWIZARDS_THEME_FOLDER); ?></label>
    </div>
</div>

theinvisible

  • Sr. Member
  • ****
  • Posts: 311
Re: Hiding Moble number
« Reply #7 on: January 31, 2017, 12:16:05 pm »
Code: [Select]
<!-- seller info -->
          <?php if(!osc_is_web_user_logged_in() ) { ?>
          <div class="box seller_info">
            <h2>
              <?php _e("Seller's information"OSCLASSWIZARDS_THEME_FOLDER); ?>
            </h2>
            <div class="form-group">
              <label class="control-label" for="contactName">
                <?php _e('Name'OSCLASSWIZARDS_THEME_FOLDER); ?>
              </label>
              <div class="controls">
                <?php ItemForm::contact_name_text(); ?>
              </div>
            </div>
            <div class="form-group">
              <label class="control-label" for="contactEmail">
                <?php _e('E-mail'OSCLASSWIZARDS_THEME_FOLDER); ?>
              </label>
              <div class="controls">
                <?php ItemForm::contact_email_text(); ?>
              </div>
            </div>
            <div class="form-group">
              <div class="controls checkbox">
                <?php ItemForm::show_email_checkbox(); ?>
                <label for="showEmail">
                  <?php _e('Show my e-mail on the listing page'OSCLASSWIZARDS_THEME_FOLDER); ?>
                </label>
              </div>
          </div>
          </div>

this is the entire code. What i should change in this?

Liath

  • issues
  • Hero Member
  • *
  • Posts: 1346
  • </html> the end is always near
Re: Hiding Moble number
« Reply #8 on: January 31, 2017, 06:26:26 pm »
this looks incomplete (there is no closing bracket for the if statement), so i have to guess for the right code


e.g. this is the whole block
Code: [Select]
<!-- seller info -->
<?php if(!osc_is_web_user_logged_in() ) { //this statement means: if user IS NOT logged in ?>
<div class="box seller_info">
    <h2>
        <?php _e("Seller's information"OSCLASSWIZARDS_THEME_FOLDER); ?>
    </h2>
    <div class="form-group">
        <label class="control-label" for="contactName">
            <?php _e('Name'OSCLASSWIZARDS_THEME_FOLDER); ?>
        </label>
        <div class="controls">
            <?php ItemForm::contact_name_text(); ?>
        </div>
    </div>
    <div class="form-group">
        <label class="control-label" for="contactEmail">
            <?php _e('E-mail'OSCLASSWIZARDS_THEME_FOLDER); ?>
        </label>
        <div class="controls">
            <?php ItemForm::contact_email_text(); ?>
        </div>
    </div>
    <div class="form-group">
        <div class="controls checkbox">
            <?php ItemForm::show_email_checkbox(); ?>
            <label for="showEmail">
                <?php _e('Show my e-mail on the listing page'OSCLASSWIZARDS_THEME_FOLDER); ?>
            </label>
        </div>
    </div>
</div>
<?php // close the statement ?>


look for the difference and try to understand... then it has to look like
Code: [Select]
<!-- seller info -->
<div class="box seller_info">
    <?php if(!osc_is_web_user_logged_in() ) { // User is NOT logged in ?>
   
    <!-- Block SELLER -->
    <h2>
        <?php _e("Seller's information"OSCLASSWIZARDS_THEME_FOLDER); ?>
    </h2>
   
    <!-- Shows an input for the Name -->
    <div class="form-group">
        <label class="control-label" for="contactName">
            <?php _e('Name'OSCLASSWIZARDS_THEME_FOLDER); ?>
        </label>
        <div class="controls">
            <?php ItemForm::contact_name_text(); ?>
        </div>
    </div>
   
    <!-- Shows an input for the E-Mail address -->
    <div class="form-group">
        <label class="control-label" for="contactEmail">
            <?php _e('E-mail'OSCLASSWIZARDS_THEME_FOLDER); ?>
        </label>
        <div class="controls">
            <?php ItemForm::contact_email_text(); ?>
        </div>
    </div>   
    <?php // stetement closed ?>
   
    <!-- Shows an checkbox for E-Mail shown on page -->
    <div class="form-group">
        <div class="controls checkbox">
            <?php ItemForm::show_email_checkbox(); ?>
            <label for="showEmail">
                <?php _e('Show my e-mail on the listing page'OSCLASSWIZARDS_THEME_FOLDER); ?>
            </label>
        </div>
    </div>
</div>

theinvisible

  • Sr. Member
  • ****
  • Posts: 311
Re: Hiding Moble number
« Reply #9 on: February 01, 2017, 08:38:15 am »
I understand. Sorry my mistake.

Code: [Select]
<!-- Block SELLER -->
    <h2>
        <?php _e("Seller's information"OSCLASSWIZARDS_THEME_FOLDER); ?>
    </h2>
   
    <!-- Shows an input for the Name -->
    <div class="form-group">
        <label class="control-label" for="contactName">
            <?php _e('Name'OSCLASSWIZARDS_THEME_FOLDER); ?>
        </label>
        <div class="controls">
            <?php ItemForm::contact_name_text(); ?>
        </div>
    </div>
   
    <!-- Shows an input for the E-Mail address -->
    <div class="form-group">
        <label class="control-label" for="contactEmail">
            <?php _e('E-mail'OSCLASSWIZARDS_THEME_FOLDER); ?>
        </label>
        <div class="controls">
            <?php ItemForm::contact_email_text(); ?>
        </div>
    </div>   
    <?php // stetement closed ?>

I think i don't need this part. Because in my site, when a user clicks on publish ad button he will be redirected to login page. I set the setting in the admin dashboard to allow posting for only logged in users. You can check https://goo.gl/QuVrZ2
So my user is logged in to post his ad. Then in the item adding page, i want to to show the "Show e-mail in the listing page" option. And a user can check or uncheck it according to his interest. If he checked it, the seller info section of the listing page should show his email and phone. Otherwise just show the phone number only. Phone is showing already in seller ifo of logged in user's listing page.
Did u get me right?

Thanks liath

Liath

  • issues
  • Hero Member
  • *
  • Posts: 1346
  • </html> the end is always near
Re: Hiding Moble number
« Reply #10 on: February 01, 2017, 08:46:46 am »
yes i understand... and the code above is the change you have to do for this...


normally this checkbox is only visible for unregistered user... but with this change the option is available for logged in users also


the second block is this how it has to look in your code

theinvisible

  • Sr. Member
  • ****
  • Posts: 311
Re: Hiding Moble number
« Reply #11 on: February 01, 2017, 09:24:40 am »
yes i understand... and the code above is the change you have to do for this...


normally this checkbox is only visible for unregistered user... but with this change the option is available for logged in users also


the second block is this how it has to look in your code

I changed it like u said..
Now i got some thing. check attachment

Liath

  • issues
  • Hero Member
  • *
  • Posts: 1346
  • </html> the end is always near
Re: Hiding Moble number
« Reply #12 on: February 01, 2017, 12:22:31 pm »
this changes has nothing to do with my suggestions, this is another place... i think you have removed one or more opening php tags


<?php

theinvisible

  • Sr. Member
  • ****
  • Posts: 311
Re: Hiding Moble number
« Reply #13 on: February 01, 2017, 02:14:39 pm »
i am attaching my item-post.php here. please check.
I am getting a blank page when i try to post an ad..

Code: [Select]
<?php
    
// meta tag robots
    
osc_add_hook('header','osclasswizards_nofollow_construct');

    
osc_enqueue_script('jquery-validate');
    
osclasswizards_add_body_class('item item-post');
    
$action 'item_add_post';
$edit false;
    if(
Params::getParam('action') == 'item_edit'){
        
$action 'item_edit_post';
$edit true;
    }

    
?>

<?php osc_current_web_theme_path('header.php') ; ?>
<?php
if(
osclasswizards_locations_input_as() =='select'){ 
ItemForm::location_javascript();
}else{
ItemForm::location_javascript_new();
}
?>


<div class="row">
  <div class="col-md-6 col-md-offset-3">
    <div class="wraps">
      <div class="title">
        <h1>
          <?php _e('Publish a listing'OSCLASSWIZARDS_THEME_FOLDER); ?>
        </h1>
      </div>
      <ul id="error_list">
      </ul>
      <form name="item" action="<?php echo osc_base_url(true);?>" method="post" enctype="multipart/form-data" id="item-post">
        <fieldset>
          <input type="hidden" name="action" value="<?php echo $action?>" />
          <input type="hidden" name="page" value="item" />
          <?php if($edit){ ?>
          <input type="hidden" name="id" value="<?php echo osc_item_id();?>" />
          <input type="hidden" name="secret" value="<?php echo osc_item_secret();?>" />
          <?php ?>
          <h2>
            <?php _e('General Information'OSCLASSWIZARDS_THEME_FOLDER); ?>
          </h2>
          <div class="form-group">
            <label class="control-label" for="select_1">
              <?php _e('Category'OSCLASSWIZARDS_THEME_FOLDER); ?>
            </label>
            <div class="controls">
              <?php  if ( osc_count_categories() ) { ?>
<?php if(osc_get_preference('category_multiple_selects''osclasswizards_theme') == '1'){ ?>
  <div class="cat_multiselect"><?php ItemForm::category_multiple_selects(nullnullnullosc_esc_html(__('Select a category'OSCLASSWIZARDS_THEME_FOLDER))); ?></div>
<?php }else{ ?>
              <?php ItemForm::category_select(nullnullosc_esc_html(__('Select a category'OSCLASSWIZARDS_THEME_FOLDER))); ?>
<?php ?>
              <?php  ?>
            </div>
          </div>
          <div class="form-group">
            <label class="control-label" for="title[<?php echo osc_current_user_locale(); ?>]">
              <?php _e('Title'OSCLASSWIZARDS_THEME_FOLDER); ?>
            </label>
            <div class="controls">
              <?php ItemForm::title_input('title',osc_current_user_locale(), osc_esc_htmlosclasswizards_item_title() )); ?>
            </div>
          </div>
          <div class="form-group">
            <label class="control-label" for="description[<?php echo osc_current_user_locale(); ?>]">
              <?php _e('Description'OSCLASSWIZARDS_THEME_FOLDER); ?>
            </label>
            <div class="controls">
              <?php ItemForm::description_textarea('description',osc_current_user_locale(), osc_esc_htmlosclasswizards_item_description() )); ?>
            </div>
          </div>
          <?php if( osc_price_enabled_at_items() ) { ?>
          <div class="form-group form-group-price">
            <label class="control-label" for="price">
              <?php _e('Price'OSCLASSWIZARDS_THEME_FOLDER); ?>
            </label>
            <div class="controls">
              <ul class="row">
                <li class="col-sm-5 col-md-5">
                  <?php ItemForm::price_input_text(); ?>
                </li>
                <li class="col-sm-7 col-md-7">
                  <?php ItemForm::currency_select(); ?>
                </li>
              </ul>
            </div>
          </div>
          <?php ?>
          <?php 
if( osc_images_enabled_at_items() ) {
                
ItemForm::ajax_photos();
            } 
?>

          <div class="box location">
            <h2>
              <?php _e('Listing Location'OSCLASSWIZARDS_THEME_FOLDER); ?>
            </h2>
            <div class="form-group">
              <label class="control-label" for="country">
                <?php _e('Country'OSCLASSWIZARDS_THEME_FOLDER); ?>
              </label>
              <div class="controls">
                <?php ItemForm::country_select(osc_get_countries(), osc_user()); ?>
              </div>
            </div>
            <div class="form-group">
              <label class="control-label" for="region">
                <?php _e('Region'OSCLASSWIZARDS_THEME_FOLDER); ?>
              </label>
              <div class="controls">
                <?php 
if(osclasswizards_locations_input_as() =='select'){ 
ItemForm::region_select(osc_get_regions(),osc_user());
}else{
ItemForm::region_text(osc_user());
}
?>

              </div>
            </div>
            <div class="form-group">
              <label class="control-label" for="city">
                <?php _e('City'OSCLASSWIZARDS_THEME_FOLDER); ?>
              </label>
              <div class="controls">
                <?php 
if(osclasswizards_locations_input_as() =='select'){ 
ItemForm::city_select(osc_get_cities(osc_user_region_id()),osc_user());
}else{
ItemForm::city_text(osc_user());
}
?>

              </div>
            </div>
            <div class="form-group">
              <label class="control-label" for="cityArea">
                <?php _e('City Area'OSCLASSWIZARDS_THEME_FOLDER); ?>
              </label>
              <div class="controls">
                <?php ItemForm::city_area_text(osc_user()); ?>
              </div>
            </div>
            <div class="form-group">
              <label class="control-label" for="address">
                <?php _e('Address'OSCLASSWIZARDS_THEME_FOLDER); ?>
              </label>
              <div class="controls">
                <?php ItemForm::address_text(osc_user()); ?>
              </div>
            </div>
          </div>
        <!-- seller info -->
        <div class="box seller_info">
          <?php if(!osc_is_web_user_logged_in() ) { // User is NOT logged in ?>
   
          <!-- Block SELLER -->
          <h2>
             <?php _e("Seller's information"OSCLASSWIZARDS_THEME_FOLDER); ?>
          </h2>
   
           <!-- Shows an input for the Name -->
           <div class="form-group">
           <label class="control-label" for="contactName">
            <?php _e('Name'OSCLASSWIZARDS_THEME_FOLDER); ?>
            </label>
            <div class="controls">
            <?php ItemForm::contact_name_text(); ?>
            </div>
           </div>
   
           <!-- Shows an input for the E-Mail address -->
           <div class="form-group">
            <label class="control-label" for="contactEmail">
             <?php _e('E-mail'OSCLASSWIZARDS_THEME_FOLDER); ?>
            </label>
            <div class="controls">
              <?php ItemForm::contact_email_text(); ?>
            </div>
           </div>   
          <?php // stetement closed ?>
   
        <!-- Shows an checkbox for E-Mail shown on page -->
        <div class="form-group">
         <div class="controls checkbox">
            <?php ItemForm::show_email_checkbox(); ?>
            <label for="showEmail">
                <?php _e('Show my e-mail on the listing page'OSCLASSWIZARDS_THEME_FOLDER); ?>
            </label>
         </div>
        </div>
       </div>
     <?php
                        
}
         

if($edit) {
ItemForm::plugin_edit_item();
} else {
ItemForm::plugin_post_item();
}
?>

          <div class="form-group">
            <?php if( osc_recaptcha_items_enabled() ) { ?>
            <div class="recap">
              <?php osc_show_recaptcha(); ?>
            </div>
            <?php }?>
            <div class="controls">
              <button type="submit" class="btn btn-success">
              <?php if($edit) { _e("Update"OSCLASSWIZARDS_THEME_FOLDER); } else { _e("Publish"OSCLASSWIZARDS_THEME_FOLDER); } ?>
              </button>
            </div>
          </div>
        </fieldset>
      </form>
    </div>
  </div>
</div>
<script type="text/javascript">
            $('#price').bind('hide-price', function(){
                $('.form-group-price').hide();
            });

            $('#price').bind('show-price', function(){
                $('.form-group-price').show();
            });

    <?php if(osc_locale_thousands_sep()!='' || osc_locale_dec_point() != '') { ?>
    $().ready(function(){
        $("#price").blur(function(event) {
            var price = $("#price").prop("value");
            <?php if(osc_locale_thousands_sep()!='') { ?>
            while(price.indexOf('<?php echo osc_esc_js(osc_locale_thousands_sep());  ?>')!=-1) {
                price = price.replace('<?php echo osc_esc_js(osc_locale_thousands_sep());  ?>', '');
            }
            <?php }; ?>
            <?php if(osc_locale_dec_point()!='') { ?>
            var tmp = price.split('<?php echo osc_esc_js(osc_locale_dec_point())?>');
            if(tmp.length>2) {
                price = tmp[0]+'<?php echo osc_esc_js(osc_locale_dec_point())?>'+tmp[1];
            }
            <?php }; ?>
            $("#price").prop("value", price);
        });
    });
    <?php }; ?>
</script>
<?php osc_current_web_theme_path('footer.php'); ?>

Liath

  • issues
  • Hero Member
  • *
  • Posts: 1346
  • </html> the end is always near
Re: Hiding Moble number
« Reply #14 on: February 01, 2017, 02:24:38 pm »
there was a wrong closing bracket in line 194...


try this
Code: [Select]
<?php
    
// meta tag robots
    
osc_add_hook('header','osclasswizards_nofollow_construct');

    
osc_enqueue_script('jquery-validate');
    
osclasswizards_add_body_class('item item-post');
    
$action 'item_add_post';
    
$edit false;
    if(
Params::getParam('action') == 'item_edit'){
        
$action 'item_edit_post';
        
$edit true;
    }

?>

<?php osc_current_web_theme_path('header.php') ; ?>
<?php
    
if(osclasswizards_locations_input_as() =='select'){ 
        
ItemForm::location_javascript();
    }else{
        
ItemForm::location_javascript_new();
    }
?>


<div class="row">
    <div class="col-md-6 col-md-offset-3">
        <div class="wraps">
            <div class="title">
                <h1>
                    <?php _e('Publish a listing'OSCLASSWIZARDS_THEME_FOLDER); ?>
                </h1>
            </div>
            <ul id="error_list">
            </ul>
            <form name="item" action="<?php echo osc_base_url(true);?>" method="post" enctype="multipart/form-data" id="item-post">
                <fieldset>
                    <input type="hidden" name="action" value="<?php echo $action?>" />
                    <input type="hidden" name="page" value="item" />
                    <?php if($edit){ ?>
                        <input type="hidden" name="id" value="<?php echo osc_item_id();?>" />
                        <input type="hidden" name="secret" value="<?php echo osc_item_secret();?>" />
                        <?php ?>
                    <h2>
                        <?php _e('General Information'OSCLASSWIZARDS_THEME_FOLDER); ?>
                    </h2>
                    <div class="form-group">
                        <label class="control-label" for="select_1">
                            <?php _e('Category'OSCLASSWIZARDS_THEME_FOLDER); ?>
                        </label>
                        <div class="controls">
                            <?php  if ( osc_count_categories() ) { ?>
                                <?php if(osc_get_preference('category_multiple_selects''osclasswizards_theme') == '1'){ ?>
                                    <div class="cat_multiselect"><?php ItemForm::category_multiple_selects(nullnullnullosc_esc_html(__('Select a category'OSCLASSWIZARDS_THEME_FOLDER))); ?></div>
                                    <?php }else{ ?>
                                    <?php ItemForm::category_select(nullnullosc_esc_html(__('Select a category'OSCLASSWIZARDS_THEME_FOLDER))); ?>
                                    <?php ?>
                                <?php  ?>
                        </div>
                    </div>
                    <div class="form-group">
                        <label class="control-label" for="title[<?php echo osc_current_user_locale(); ?>]">
                            <?php _e('Title'OSCLASSWIZARDS_THEME_FOLDER); ?>
                        </label>
                        <div class="controls">
                            <?php ItemForm::title_input('title',osc_current_user_locale(), osc_esc_htmlosclasswizards_item_title() )); ?>
                        </div>
                    </div>
                    <div class="form-group">
                        <label class="control-label" for="description[<?php echo osc_current_user_locale(); ?>]">
                            <?php _e('Description'OSCLASSWIZARDS_THEME_FOLDER); ?>
                        </label>
                        <div class="controls">
                            <?php ItemForm::description_textarea('description',osc_current_user_locale(), osc_esc_htmlosclasswizards_item_description() )); ?>
                        </div>
                    </div>
                    <?php if( osc_price_enabled_at_items() ) { ?>
                        <div class="form-group form-group-price">
                            <label class="control-label" for="price">
                                <?php _e('Price'OSCLASSWIZARDS_THEME_FOLDER); ?>
                            </label>
                            <div class="controls">
                                <ul class="row">
                                    <li class="col-sm-5 col-md-5">
                                        <?php ItemForm::price_input_text(); ?>
                                    </li>
                                    <li class="col-sm-7 col-md-7">
                                        <?php ItemForm::currency_select(); ?>
                                    </li>
                                </ul>
                            </div>
                        </div>
                        <?php ?>
                    <?php 
                        
if( osc_images_enabled_at_items() ) {
                            
ItemForm::ajax_photos();
                    } 
?>

                    <div class="box location">
                        <h2>
                            <?php _e('Listing Location'OSCLASSWIZARDS_THEME_FOLDER); ?>
                        </h2>
                        <div class="form-group">
                            <label class="control-label" for="country">
                                <?php _e('Country'OSCLASSWIZARDS_THEME_FOLDER); ?>
                            </label>
                            <div class="controls">
                                <?php ItemForm::country_select(osc_get_countries(), osc_user()); ?>
                            </div>
                        </div>
                        <div class="form-group">
                            <label class="control-label" for="region">
                                <?php _e('Region'OSCLASSWIZARDS_THEME_FOLDER); ?>
                            </label>
                            <div class="controls">
                                <?php 
                                    
if(osclasswizards_locations_input_as() =='select'){ 
                                        
ItemForm::region_select(osc_get_regions(),osc_user());
                                    }else{
                                        
ItemForm::region_text(osc_user());
                                    }
                                
?>

                            </div>
                        </div>
                        <div class="form-group">
                            <label class="control-label" for="city">
                                <?php _e('City'OSCLASSWIZARDS_THEME_FOLDER); ?>
                            </label>
                            <div class="controls">
                                <?php 
                                    
if(osclasswizards_locations_input_as() =='select'){ 
                                        
ItemForm::city_select(osc_get_cities(osc_user_region_id()),osc_user());
                                    }else{
                                        
ItemForm::city_text(osc_user());
                                    }
                                
?>

                            </div>
                        </div>
                        <div class="form-group">
                            <label class="control-label" for="cityArea">
                                <?php _e('City Area'OSCLASSWIZARDS_THEME_FOLDER); ?>
                            </label>
                            <div class="controls">
                                <?php ItemForm::city_area_text(osc_user()); ?>
                            </div>
                        </div>
                        <div class="form-group">
                            <label class="control-label" for="address">
                                <?php _e('Address'OSCLASSWIZARDS_THEME_FOLDER); ?>
                            </label>
                            <div class="controls">
                                <?php ItemForm::address_text(osc_user()); ?>
                            </div>
                        </div>
                    </div>
                    <!-- seller info -->
                    <div class="box seller_info">
                        <?php if(!osc_is_web_user_logged_in() ) { // User is NOT logged in ?>
                        <!-- Block SELLER -->
                        <h2>
                            <?php _e("Seller's information"OSCLASSWIZARDS_THEME_FOLDER); ?>
                        </h2>

                        <!-- Shows an input for the Name -->
                        <div class="form-group">
                            <label class="control-label" for="contactName">
                                <?php _e('Name'OSCLASSWIZARDS_THEME_FOLDER); ?>
                            </label>
                            <div class="controls">
                                <?php ItemForm::contact_name_text(); ?>
                            </div>
                        </div>

                        <!-- Shows an input for the E-Mail address -->
                        <div class="form-group">
                            <label class="control-label" for="contactEmail">
                                <?php _e('E-mail'OSCLASSWIZARDS_THEME_FOLDER); ?>
                            </label>
                            <div class="controls">
                                <?php ItemForm::contact_email_text(); ?>
                            </div>
                        </div>   
                        <?php // stetement closed ?>

                        <!-- Shows an checkbox for E-Mail shown on page -->
                        <div class="form-group">
                            <div class="controls checkbox">
                                <?php ItemForm::show_email_checkbox(); ?>
                                <label for="showEmail">
                                    <?php _e('Show my e-mail on the listing page'OSCLASSWIZARDS_THEME_FOLDER); ?>
                                </label>
                            </div>
                        </div>
                    </div>
                    <?php
                        
if($edit) {
                            
ItemForm::plugin_edit_item();
                        } else {
                            
ItemForm::plugin_post_item();
                        }
                    
?>

                    <div class="form-group">
                        <?php if( osc_recaptcha_items_enabled() ) { ?>
                            <div class="recap">
                                <?php osc_show_recaptcha(); ?>
                            </div>
                            <?php }?>
                        <div class="controls">
                            <button type="submit" class="btn btn-success">
                                <?php if($edit) { _e("Update"OSCLASSWIZARDS_THEME_FOLDER); } else { _e("Publish"OSCLASSWIZARDS_THEME_FOLDER); } ?>
                            </button>
                        </div>
                    </div>
                </fieldset>
            </form>
        </div>
    </div>
</div>
<script type="text/javascript">
    $('#price').bind('hide-price', function(){
        $('.form-group-price').hide();
    });

    $('#price').bind('show-price', function(){
        $('.form-group-price').show();
    });

    <?php if(osc_locale_thousands_sep()!='' || osc_locale_dec_point() != '') { ?>
        $().ready(function(){
            $("#price").blur(function(event) {
                var price = $("#price").prop("value");
                <?php if(osc_locale_thousands_sep()!='') { ?>
                    while(price.indexOf('<?php echo osc_esc_js(osc_locale_thousands_sep());  ?>')!=-1) {
                        price = price.replace('<?php echo osc_esc_js(osc_locale_thousands_sep());  ?>', '');
                    }
                    <?php }; ?>
                <?php if(osc_locale_dec_point()!='') { ?>
                    var tmp = price.split('<?php echo osc_esc_js(osc_locale_dec_point())?>');
                    if(tmp.length>2) {
                        price = tmp[0]+'<?php echo osc_esc_js(osc_locale_dec_point())?>'+tmp[1];
                    }
                    <?php }; ?>
                $("#price").prop("value", price);
            });
        });
        <?php }; ?>
</script>
<?php osc_current_web_theme_path('footer.php'); ?>