Search:

Type: Posts; User: Rudi

Search: Search took 0.01 seconds.

  1. You'd better create a ticket to check the issue

    You'd better create a ticket to check the issue
  2. Hello, You can achieve it by using membership...

    Hello,

    You can achieve it by using membership plans (Basic Settings > Accounts > Membership plans > enable)
  3. Maybe you did something wrong, if you have...

    Maybe you did something wrong,

    if you have support you can create a ticket and we'll help you
  4. For email field use this style: ...

    For email field use this style:



    .owner-details .value span[id^="encoded_email"] {
    display: none;
    }
  5. Hello, Happy New Year! go to your template...

    Hello,

    Happy New Year!

    go to your template > css > style.css > add the following style:


    .phone .value a {
    display: none;
    }
  6. Hello, Maybe content is not updated on the...

    Hello,

    Maybe content is not updated on the page, try to refresh your browser page
    also make sure that you insert the code correctly in your tpl file, it should be wrapped with:



    <script>...
  7. Hello, Use this code {literal}...

    Hello,

    Use this code


    <script>
    {literal}
    $(document).ready(function(){
    var phones = $('div[id*="phone"] .value a');
  8. Hello Radoslav, You can add this code the same...

    Hello Radoslav,

    You can add this code the same way to your script following the instructions below as it's not a part of 4.7
  9. I've corrected that post and now it should work...

    I've corrected that post and now it should work properly, check it
    The reason is that the field was surrounded by spaces and I've added a code which trims them
  10. Actually, I provided necessary code below, check...

    Actually, I provided necessary code below, check carefully, see my 3d post from the top
  11. sorry, I forgot to change selector for number...

    sorry, I forgot to change selector for number type field, it should go like this:

    var phones = $('#df_field_<your_field_key> .value');
  12. Hello, It can be used like this: ...

    Hello,

    It can be used like this:



    $(document).ready(function(){
    var phones = $('#df_field_<your_field_key> .value');

    $(phones).each(function(){
  13. Hi Wei Hong, change: ...

    Hi Wei Hong,

    change:


    $(phone).filter('.mask').click(function(){
    $(this).text(default_value);
    $(this).attr('href', 'tel:' + default_value).toggleClass('mask');;
    });
  14. I meant that you can add it to some tpl or js...

    I meant that you can add it to some tpl or js file (lib.js for example)

    in case of tpl it's better to add this code to templates > your template > tpl > blocks > listing_details_seller.tpl > add...
  15. Hello, You can use this code for phone type...

    Hello,

    You can use this code for phone type fields in tpl file:



    {if $sidebar}
    <script>
    {literal}
    $(document).ready(function(){
Results 1 to 15 of 15