+ Reply to Thread
Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 22

Thread: Ad tittle format

  1. #11
    You probably haven't read, I meant to say it needs to be two empty spaces.
    If you copy his code it's just one.

  2. #12
    Not sure I know what do you mean by two empty spaces. I thought you mean A B C <--- 2 empty spaces, 1 between A and B, 1 between B and C. Or A B C <-- 2 empty space between A and B, and B and C?

  3. #13
    Instead this:
    $title .= $item ? $item . ' ' : '';
    Should use this:
    $title .= $item ? $item . ' ' : '';

    Two empty spaces between the ' symbol.
    Bit confusing

  4. #14
    The forum cuts the one space )

  5. #15
    That's what I was trying to say. You add or remove the space till you see fit.

  6. #16
    That's right, and the point is reached. Now everyone could understand easier

  7. #17
    I suggest you create a new ticket with the problem. Maybe you forgot to enable the rewrite module on your server or some other problem.
    Viktor,
    Flynax technical department,
    Best wishes.

  8. #18
    Viktor, I solved the problem and thanked Rudi for that at the start of this thread. Me and Wei just discussed about some tiny details

  9. #19
    Quote Originally Posted by Aleksandar Apostolovski View Post
    That's right, and the point is reached. Now everyone could understand easier
    Glad it worked out well

  10. #20
    Senior Member
    Join Date
    Dec 2023
    Posts
    159
    [QUOTE=Rudi;24609]To remove all the commas in the title go to ftp > includes > classes >

    rlListings.class.php > public function getListingTitle

    find and change:
    PHP Code:
    Only registered members can view the code
    to:
    PHP Code:
    Only registered members can view the code

    and change:
    PHP Code:
    Only registered members can view the code
    to:
    PHP Code:
    Only registered members can view the code

    then go to rlCommon.class.php > public function adaptValue > case 'select'

    change:
    PHP Code:
    Only registered members can view the code
    to:
    PHP Code:
    Only registered members can view the code
    /QUOTE]

    I'm not finding this in 4.9.2 rlCommon.class.php. Is this in a new location? I'm trying to remove the comma between category, subcategory in title so it's just category subcategory (no comma)

+ Reply to Thread