Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • environc Friend
    #183840

    Hi,

    I would like to space my filter results text as the words on the right of the “,” are stuck together with the “,” as in from this:

    Your Search in Australian Capital Territory,New South Wales,Northern Territory,Queensland,South Australia,Tasmania,Victoria,Western Australia returned 3 job(s)

    to

    Your Search in Australian Capital Territory, New South Wales, Northern Territory, Queensland, South Australia, Tasmania, Victoria, Western Australia returned 3 job(s)

    Please check attachment

    Regards


    1. Untitled5
    HeR0 Friend
    #479607

    Hi Environc,

    Please open file componentscom_jajobboardviewsjajobstmpljalist_search_result_msg.php and go to line 27:
    [PHP]if (isset($jobsearch_location)&&$jobsearch_location!=”) {
    $text .= ” “.JText::_(“in”).” <strong class=’highlight’>”.$jobsearch_location.”</strong>”;
    $is_filter = true;
    }[/PHP] change it to
    [PHP]if (isset($jobsearch_location)&&$jobsearch_location!=”) {
    $text .= ” “.JText::_(“in”).” <strong class=’highlight’>”.str_replace(‘,’, ‘, ‘, $jobsearch_location).”</strong>”;
    $is_filter = true;
    }[/PHP]
    Hope it helps.

    Regards

Viewing 2 posts - 1 through 2 (of 2 total)

This topic contains 2 replies, has 2 voices, and was last updated by  HeR0 11 years, 10 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum