Marc2412
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Application email recipient^ I would like to know this aswell since right now im using a dropdown to select which job you want to apply for. I quite don’t understand your ”fix” for this though scott ?? .
Forum: Plugins
In reply to: [WP Job Manager] Changing font colorHey hira,
I use a plugin called “WP Job Manager – Job Type Color” for this.
https://www.ads-software.com/plugins/wp-job-manager-colors/
Select the color of each existing job type in the Job Listings’ settings. Can set the color to be the background color, or text color.
Forum: Plugins
In reply to: [WP Job Manager] Open links in new window<a href="<?php the_job_permalink(); ?>" target="_blank">
target=blank opens the link in a new window entitled blank where target=_blank just opens it in a new window. So if u have two links with target=blank then they will both open up in the same new window but if u have the two links with target=_blank they will both open up in their own new window.
I would recommend using _blank instead of blank
Marc
Forum: Plugins
In reply to: [WP Job Manager] How to remove/hide the time the job was postedHey,
Is there a reason as to why you want it removed? If it’s a translation problem (which made me decide to delete it at first aswell) then I found a fix for it.
If not, do what Scott said ^^
Marc
Forum: Plugins
In reply to: [WP Job Manager] Dutch translateDownload a plugin called “CodeStyling Localization”
Once installed go to Extra -> Lokalisering
At the top check “inschakelen lage geheugen modus”
Scroll down to where it says WP Job manager
You will see “Nederlands / Nederland”, to the right click on “Inlezen” then click on “analyseren”
Once that’s done, click on “Bewerken”
Go to “Niet vertaald” and find the string you want to translate.
For example:
if you want to change “posted 1 month ago” the string would show up as “Posted %s ago”.
Let me know if this helped.
Forum: Plugins
In reply to: [WP Job Manager] Mobile device menu apperance inconsistencyThe input type of the Keywords area is a text.
Go to wp-content -> themes -> your theme -> open style.css -> ctrl + f -> search for ‘input’ or ‘input[type=”text”]’ -> add ‘input[type=”select”]’ so like:
input[type="text"], input[type="select"] { css stuff is shown here }
then you should have the same style as they keywords section. If this doesn’t work just try adding ‘select’ so:
input[type="text"], select { css stuff is shown here }
Forum: Themes and Templates
In reply to: [Simplify] How to edit my landing page? NSFWUnfortunately, since the landing page is a static page which is not modify-able through the pages section you will have to actually code it yourself or change themes.
Forum: Themes and Templates
In reply to: [Simplify] Simplify theme TitleAppearance -> theme options
Forum: Themes and Templates
In reply to: [Simplify] Why can't I see my sidebar?You, unfortunately, can’t do that with this theme.
Forum: Themes and Templates
In reply to: [Simplify] Multilanguage homepageAnd then go to -> Settings -> Languages -> Settings -> and then u see this:
Forum: Themes and Templates
In reply to: [Simplify] Multilanguage homepageAnother website with same theme/css but then with english installation.
Forum: Plugins
In reply to: [WP Job Manager] Move "Apply for job" ButtonOnce you click on Apply for Job the button vanishes once you click on it again and close it. Is this intended?
Forum: Plugins
In reply to: [WP Job Manager] Translating problem.
Forum: Plugins
In reply to: [WP Job Manager] Translating problemThis thread is now be marked as [RESOLVED]
Forum: Plugins
In reply to: [WP Job Manager] Translating problemGot it, worked! edited formatting.php file and added:
/* translators: min=minute */ $since = sprintf( _n( '%s minuut', '%s minuten', $mins ), $mins ); } elseif ( $diff < DAY_IN_SECONDS && $diff >= HOUR_IN_SECONDS ) { $hours = round( $diff / HOUR_IN_SECONDS ); if ( $hours <= 1 ) $hours = 1; $since = sprintf( _n( '%s uur', '%s uur', $hours ), $hours ); } elseif ( $diff < WEEK_IN_SECONDS && $diff >= DAY_IN_SECONDS ) { $days = round( $diff / DAY_IN_SECONDS ); if ( $days <= 1 ) $days = 1; $since = sprintf( _n( '%s dag', '%s dagen', $days ), $days ); } elseif ( $diff < 30 * DAY_IN_SECONDS && $diff >= WEEK_IN_SECONDS ) { $weeks = round( $diff / WEEK_IN_SECONDS ); if ( $weeks <= 1 ) $weeks = 1; $since = sprintf( _n( '%s week', '%s weken', $weeks ), $weeks ); } elseif ( $diff < YEAR_IN_SECONDS && $diff >= 30 * DAY_IN_SECONDS ) { $months = round( $diff / ( 30 * DAY_IN_SECONDS ) ); if ( $months <= 1 ) $months = 1; $since = sprintf( _n( '%s maand', '%s maanden', $months ), $months ); } elseif ( $diff >= YEAR_IN_SECONDS ) { $years = round( $diff / YEAR_IN_SECONDS ); if ( $years <= 1 ) $years = 1; $since = sprintf( _n( '%s year', '%s years', $years ), $years ); }