+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: Remove duplicated field Title

  1. #1

    Remove duplicated field Title

    hello. when we look at listing detail page, we see a duplicated field, "Title" . How can we remove the crossed one from image? thanks
    Attached Images Attached Images

  2. #2
    If you go to admin/listing fields edit the listing field you require to change there should be e checkbox to show on listing details page, click and save
    New Site: CameraSpecs https://bit.ly/3G4uYA6

    Old Site: MotorAdsUk

  3. #3
    Quote Originally Posted by Chris Brown View Post
    If you go to admin/listing fields edit the listing field you require to change there should be e checkbox to show on listing details page, click and save
    if i do that, i will lose the title from the top wich i want to keep. already tried that.

  4. #4
    Hello Petrache Nicolae,

    Exist other way:

    Please go to ftp://templates>>your_telmpate>>tpl>>blocks>>field_out.t pl

    in first line add condition:
    Code:
    Only registered members can view the code.
    where 'title' - it's key for field which you want to hide from details.
    and after all code add in this file add
    Code:
    Only registered members can view the code.
    save and check again.
    Viktor,
    Flynax technical department,
    Best wishes.

  5. #5
    Quote Originally Posted by Viktor View Post
    Hello Petrache Nicolae,

    Exist other way:

    Please go to ftp://templates>>your_telmpate>>tpl>>blocks>>field_out.t pl

    in first line add condition:
    Code:
    Only registered members can view the code.
    where 'title' - it's key for field which you want to hide from details.
    and after all code add in this file add
    Code:
    Only registered members can view the code.
    save and check again.
    works perfect. thanks
    i have found that if i want to hide another field like price i can add another set of conditions like
    {if $item.Key != 'title'}
    {if $item.Key != 'price'}
    {/if}
    {/if}

    but, is it a better way to combine all conditions in one row like 'title'; 'price'?

  6. #6
    Hi,


    Quote Originally Posted by Petrache Nicolae View Post
    but, is it a better way to combine all conditions in one row like 'title'; 'price'?

    PHP Code:
    Only registered members can view the code
    Last edited by Alex; October 25, 2013 at 07:06 AM.

    Other than that happy coding...
    Flynax Technical Department

  7. #7
    works perfect. many thanks to both developers.

  8. #8
    I am trying to do this too, but I do not have the file "field_out.tpl." Would it be in "listing_details.tpl?"

  9. #9
    Hello Eric,

    Quote Originally Posted by Eric Dejaager View Post
    I am trying to do this too, but I do not have the file "field_out.tpl." Would it be in "listing_details.tpl?"
    Of course it old version of flynax fields located in listing_details.tpl
    Viktor,
    Flynax technical department,
    Best wishes.

  10. #10
    same probleme, but don't work for me.

    or maybe I dont understand the solution, I just put {if $item.Key != 'title'} on top on listing_details.tpl and {/if} on down of page

    The seconde title is not hiden

+ Reply to Thread