Advertisement:

Author Topic: Need to remove User Information .  (Read 608 times)

sainkhan

  • Newbie
  • *
  • Posts: 3
Need to remove User Information .
« on: November 07, 2014, 09:12:39 am »
Hello People over here,

I have a Query, is it possible to remove User Information filed which is required to Fill while adding a ad.

as i am creating Restaurant Business Directory.

Thanks in Advance.

frosticek

  • Hero Member
  • *****
  • Posts: 3948
Re: Need to remove User Information .
« Reply #1 on: November 07, 2014, 11:49:36 am »
@sainkhan
I think none of those informations are required, just email is.
You could avoid that:
- set style="display:none" on both divs
- with jQuery, give default value to email field

Code: [Select]
<script>
  $(document).ready(function(){
    $('#contactEmail').val('empty@yoursite.com');
  });
</script>

This code should be placed to bottom of item-post.php

Btw No need to post 6 duplicate topics for any problem ;)