test
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • timmieboy Friend
    #199764

    Hello,

    1. When a jobseeker logs in and edit his resume, after he clicked on save the url goes to a component url, like this: component/jajobboard/jaresumes/jaview/24 . Can it be set that when a jobseeker saves his resume that it is linked to my resume menu. When the link is like it is now, all module are not shown and I have to create a extra menu item to go back to jobseekers menus.

    2. Same for jobseeker to add a job to favorits: component/jajobboard/jajobs/jajobseekerlist

    For employers it happens too:
    3.Same for adding a favorit job seeker to favorits: component/jajobboard/jaresumes/jaview/27
    – Has to linked to my resumes

    4. Editing a Job also: ?option=com_jajobboard&view=jajobs&layout=jaform&cid[]=50
    – Has to be linked with my jobs

    5. Verify the job: component/jajobboard/jajobs/jaview/50-receptionist-gezocht-in-zuid-spanje?step=verify&is_newjob=0
    – Has to be linked with my jobs

    6. WHen I go to a resume that is shown in the latest resume module, it show this url: component/jajobboard/jaresumes/jaview/27 Can this be related to a menu item like resume search.

    I hope it can be related to a menu item.

    Thanks

    Thanh Nguyen Viet Friend
    #545011

    Hello,

    I’m sorry about late response, somehow I missed this thread.

    Regarding your questions:

    <blockquote>1. When a jobseeker logs in and edit his resume, after he clicked on save the url goes to a component url, like this: component/jajobboard/jaresumes/jaview/24 . Can it be set that when a jobseeker saves his resume that it is linked to my resume menu. When the link is like it is now, all module are not shown and I have to create a extra menu item to go back to jobseekers menus.</blockquote>

    This issue is updated in version 1.0.6 of JA Jobboard, please check again.

    <blockquote>2. Same for jobseeker to add a job to favorits: component/jajobboard/jajobs/jajobseekerlist</blockquote>
    If you want to redirect to Favorites jobs page after adding job to Favouriste list, please open the file
    components/com_jajobboard/controllers/jajobs.php

    Find the two code snippets below:
    [PHP]$this->setRedirect(JRoute::_(‘index.php?option=’ . JBCOMNAME . ‘&view=jajobs&layout=jalist’, false), $msg);[/PHP]
    And
    [PHP]$this->setRedirect(JRoute::_(‘index.php?option=’ . JBCOMNAME . ‘&view=jajobs&layout=jajobseekerlist’, false));[/PHP]

    And replace it with:
    [PHP]$itemid = get_Itemid(array(‘view’=>’jajobs’,’layout’=>’jajobseekerlist’));
    $this->setRedirect(JRoute::_(‘index.php?option=’ . JBCOMNAME . ‘&view=jajobs&layout=jajobseekerlist&Itemid=’.$itemid, false), $msg);[/PHP]

    <blockquote>3.Same for adding a favorit job seeker to favorits: component/jajobboard/jaresumes/jaview/27
    – Has to linked to my resumes</blockquote>
    Open the file: components/com_jajobboard/controllers/jaresumes.php

    – Find the code snippet below inside the function multi_starred
    [PHP]$Itemid = JRequest::getInt(‘Itemid’);

    if (!$Itemid) {
    $Itemid = get_Itemid(array(‘option’ => ‘com_jajobboard’, ‘view’ => ‘jaresumes’, ‘layout’ => ‘jalist’));
    }[/PHP]

    – And replace it with:
    [PHP]$Itemid = get_Itemid(array(‘option’ => ‘com_jajobboard’, ‘view’ => ‘jaresumes’, ‘layout’ => ‘jaemployerlist’));
    if (!$Itemid) {
    $Itemid = JRequest::getInt(‘Itemid’);
    }[/PHP]

    – And find the code line:
    [PHP]$this->setRedirect(JRoute::_(‘index.php?option=’ . JBCOMNAME . ‘&view=jaresumes&layout=jalist&Itemid=’ . $Itemid, false), $msg);[/PHP]

    – And replace it with:
    [PHP]$this->setRedirect(JRoute::_(‘index.php?option=’ . JBCOMNAME . ‘&view=jaresumes&layout=jaemployerlist&Itemid=’ . $Itemid, false), $msg);[/PHP]

    <blockquote>4. Editing a Job also: ?option=com_jajobboard&view=jajobs&layout=jaform&c id[]=50
    – Has to be linked with my jobs</blockquote>
    It is updated in version 1.0.6

    <blockquote>5. Verify the job: component/jajobboard/jajobs/jaview/50-receptionist-gezocht-in-zuid-spanje?step=verify&is_newjob=0
    – Has to be linked with my jobs</blockquote>
    It is updated in version 1.0.6

    <blockquote>6. WHen I go to a resume that is shown in the latest resume module, it show this url: component/jajobboard/jaresumes/jaview/27 Can this be related to a menu item like resume search.</blockquote>
    Open the file:
    modules/mod_jalatest_resumes/helper.php

    Find the code line:
    $Itemid = JRequest::getVar(‘Itemid’);
    replace it with:
    [PHP]$Itemid = get_Itemid(array(‘option’=>’com_jajobboard’,’view’=>’jaresumes’, ‘layout’=>’jalist’));[/PHP]

    find the code line:
    [PHP]$lists[$i]->link = JRoute::_(‘index.php?option=com_jajobboard&view=jaresumes&layout=jaview&cid[]=’.$row->id.’&Itemid=1000′);[/PHP]

    And replace it with:
    [PHP]$lists[$i]->link = JRoute::_(‘index.php?option=com_jajobboard&view=jaresumes&layout=jaview&cid[]=’.$row->id.’&Itemid=’.$Itemid);[/PHP]

    timmieboy Friend
    #546037

    This issue is updated in version 1.0.6 of JA Jobboard, please check again.

    </blockquote>
    1. Sorry but still not updated – any help needed!

    timmieboy Friend
    #546041

    <em>@Dead Code 440094 wrote:</em><blockquote>Hello,

    I’m sorry about late response, somehow I missed this thread.

    Regarding your questions:

    This issue is updated in version 1.0.6 of JA Jobboard, please check again.

    If you want to redirect to Favorites jobs page after adding job to Favouriste list, please open the file
    components/com_jajobboard/controllers/jajobs.php

    Find the two code snippets below:
    [PHP]$this->setRedirect(JRoute::_(‘index.php?option=’ . JBCOMNAME . ‘&view=jajobs&layout=jalist’, false), $msg);[/PHP]
    And
    [PHP]$this->setRedirect(JRoute::_(‘index.php?option=’ . JBCOMNAME . ‘&view=jajobs&layout=jajobseekerlist’, false));[/PHP]

    And replace it with:
    [PHP]$itemid = get_Itemid(array(‘view’=>’jajobs’,’layout’=>’jajobseekerlist’));
    $this->setRedirect(JRoute::_(‘index.php?option=’ . JBCOMNAME . ‘&view=jajobs&layout=jajobseekerlist&Itemid=’.$itemid, false), $msg);[/PHP]

    Open the file: components/com_jajobboard/controllers/jaresumes.php

    – Find the code snippet below inside the function multi_starred
    [PHP]$Itemid = JRequest::getInt(‘Itemid’);

    if (!$Itemid) {
    $Itemid = get_Itemid(array(‘option’ => ‘com_jajobboard’, ‘view’ => ‘jaresumes’, ‘layout’ => ‘jalist’));
    }[/PHP]

    – And replace it with:
    [PHP]$Itemid = get_Itemid(array(‘option’ => ‘com_jajobboard’, ‘view’ => ‘jaresumes’, ‘layout’ => ‘jaemployerlist’));
    if (!$Itemid) {
    $Itemid = JRequest::getInt(‘Itemid’);
    }[/PHP]

    – And find the code line:
    [PHP]$this->setRedirect(JRoute::_(‘index.php?option=’ . JBCOMNAME . ‘&view=jaresumes&layout=jalist&Itemid=’ . $Itemid, false), $msg);[/PHP]

    – And replace it with:
    [PHP]$this->setRedirect(JRoute::_(‘index.php?option=’ . JBCOMNAME . ‘&view=jaresumes&layout=jaemployerlist&Itemid=’ . $Itemid, false), $msg);[/PHP]

    It is updated in version 1.0.6

    It is updated in version 1.0.6

    Open the file:
    modules/mod_jalatest_resumes/helper.php

    Find the code line:
    $Itemid = JRequest::getVar(‘Itemid’);
    replace it with:
    [PHP]$Itemid = get_Itemid(array(‘option’=>’com_jajobboard’,’view’=>’jaresumes’, ‘layout’=>’jalist’));[/PHP]

    find the code line:
    [PHP]$lists[$i]->link = JRoute::_(‘index.php?option=com_jajobboard&view=jaresumes&layout=jaview&cid[]=’.$row->id.’&Itemid=1000′);[/PHP]

    And replace it with:
    [PHP]$lists[$i]->link = JRoute::_(‘index.php?option=com_jajobboard&view=jaresumes&layout=jaview&cid[]=’.$row->id.’&Itemid=’.$Itemid);[/PHP]</blockquote>

    I have looked at this post but still not working:

    1. Sorry but still not updated – any help needed!
    2. YES this works
    3. I changed the code mentioned, but is not working
    4. Is not UPDATED in 1.0.6
    5. Is not UPDATED in 1.0.6
    6. I have changed the code but not working

    I like to add a few extra problems:

    7. I have 1 job in my favorites, when I delete this job I am getting a message that no jobs are in favorits and that I can search for job. The url for searching job goes to “component/jajobboard/jajobs/jails” can you tell me how I can change this to the url of the job list menu item.

    8. When I click on the menu item with jobseekers it gives me the list but when I click on a resume it goes to: component/jajobboard/jaresumes/jaview/24.

    – Also the category goes to: component/jajobboard/jaresumes/jalist?category_alias=Animatie / Entertainment&category=1
    – Also country goes to: component/jajobboard/jaresumes/jalist?location_id_alias=Diverse%20Landen&location_id=94

    These links need to be linked to menu item.

    9. When I click on applications list, there is a possibility to search for candidates, the url is going to the wrong part of the site: component/jajobboard/jajobs/jalist – It has to go to resume list and offcourse to the menu item and not component url.

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

This topic contains 4 replies, has 2 voices, and was last updated by  timmieboy 10 years, 5 months ago.

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