Viewing 7 replies - 1 through 7 (of 7 total)
  • @emdied
    this is not the jobs dashboard, this is the page where the “jobs” shortcode is located.
    You need to override the following template:
    content-job_listing.php

    You have to switch lines 31-33 with line 44.

    The upload it to this directory on your server
    your_child_theme/job_manager/content-job_listing.php

    Thread Starter emdied

    (@emdied)

    Hey @braehler Thank You For the assistance!

    I have tried that as you said by overriding template file but it broke everything :/ kindly look at this screenshot and tell me what to do?

    Screenshot Link : https://i.postimg.cc/d3mvDRx1/Broked-Everything.png

    Thank You
    @emdied

    • This reply was modified 4 years, 1 month ago by emdied.
    • This reply was modified 4 years, 1 month ago by emdied.

    @emdied
    sorry a little bit to fast without checking it ??

    You have just to switch line 32(just the php code with job location) and the php code of line 44 (the job publish date)

    Thread Starter emdied

    (@emdied)

    Hey @braehler Thank You For the assistance!

    I have tried that as you said by overriding template file but it broke everything :/ kindly look at this screenshot and tell me what to do?

    Screenshot Link : https://i.postimg.cc/d3mvDRx1/Broked-Everything.png

    ==================================================
    Summary : What Actually i want to achieve !
    =================================================

    I wanted to Remove “Date/Time” on the page where the “jobs” shortcode is located.

    when i am using this line of code by using CSS

    time{
    display: none;
    }

    It remove the “Time/Date” on every other page but i don’t want that, instead i just wanted to remove it only on the page where the “jobs” shortcode is located.

    If you can tell How i can Just Place the “Location” at the place of “Time/date”

    I Hope You get the Point what actually i want ?? i just wanted to remove time/Date from that page and want to place “location” at the place of “Time/Date”

    Kindly Help Its Really very Important For me

    Thank You
    @emdied

    @emdied
    I just tested this on my staging site and works fine for me. Maybe your theme has its “own” template of the content-job_listing.php

    Maybe you take a look at the template at github
    https://github.com/Automattic/WP-Job-Manager/blob/master/templates/content-job_listing.php

    Fromt this cut line 32 <?php the_job_location( false ); ?>and insert this into line 44 <li class="date"><?php the_job_publish_date(); ?></li>
    Remove <?php the_job_publish_date(); ?> Just put the code between the li elements.
    And then isert <?php the_job_publish_date(); ?> between the div elements starting at line 32

    Thread Starter emdied

    (@emdied)

    @braehler Thank You very Much! ?? It Worked For Me,

    One last thing can i just simply remove <?php the_job_publish_date(); ?> If I don’t Want to show date/time on that page, is doing this can break something into the plugin funcationality? or i need it to hide by using some css. what you suggest.

    I dont want to show time/Date from that page.

    Thank You
    @emdied

    • This reply was modified 4 years, 1 month ago by emdied.

    @emdied
    glad to hear it works out for you.
    For sure, you can jsut remove the php code for the publsh date. This will jsut remove it on this template.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Wp Job Manager Dashboard Look’ is closed to new replies.