TinyGiantStudios
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Template Overrides via PluginOkay, this is pretty messy. Bearing in mind I’m a front end dev, is there a better way of doing the following:
add_filter('job_manager_locate_template', 'tgs_job_manager_locate_template', 10, 3); function tgs_job_manager_locate_template($template_name, $template_path, $default_path) { $default_path = plugin_dir_path( __FILE__ ) . 'templates/'; $end = end((explode('/', $template_name))); $template = $default_path . $end; // Return what we found return $template; }It’s got some issues, but for the most part the filter does seem to make use of the template files located in the override plugin instead of looking into the core WP Job Manager plugin or the theme…
ANY help would be appreciated π
Forum: Plugins
In reply to: [WP Job Manager] Template Overrides via PluginOkay, I’m completely lost and I realise it doesn’t really fall inside the scope of support you’d offer…
Just wondering if there’s anyone out there that could give some more hands-on guidance π
Forum: Plugins
In reply to: [WP Job Manager] Widget not working properlyJust had another look,
There’s some structural changes to the HTML between the single page view and the single job view.
In the single page view, you’ve got an
<a>tag that wraps thediv.positionand aul.meta.In the single job view, you’ve the
<a>does not wrap thediv.positionnor theul.meta.This would account for differences in styling…
Forum: Plugins
In reply to: [WP Job Manager] Widget not working properlyI can’t – I’m not an administrator; Mike might be able to…
Would be best to wait for him to answer π
Forum: Plugins
In reply to: [WP Job Manager] Widget not working properlyHi uklightpainter,
Have you got a link to look at?
Forum: Plugins
In reply to: [WP Job Manager] Jobs Not ShowingHi joshdraba,
I’ve just had a look at your website – seems like everything is being loaded with AJAX and you’ve got an extremely slow website (for me the website took more than 10secs to load).
Eventually the jobs loaded for me on the homepage; However they didn’t load when I clicked on your menu and selected “Physician Opportunities”
Mike should have more insight into the problem as there’s no javascript errors in the console; But my suspicion is there’s some issues that’s coming into play when loading the page with Ajax – feel free to have a look at the “Network Tab” when loading the website – there’s a few times when the ajax calls are getting cancelled…
Forum: Plugins
In reply to: [WP Job Manager] Editor roleHi Bluenix,
Have you tried this plugin: http://wordpress.org/plugins/role-scoper/
Forum: Plugins
In reply to: [WP Job Manager] Location Appears limited in job listingHi Mike,
Just had a look at that link, doesn’t seem to be a wrapping issue (it’s on Jobify) as the location isn’t generated at all…
Forum: Plugins
In reply to: [WP Job Manager] Remove "Apply for job" buttonHi narcisoj,
Just to add to Mike’s answer – if you want to hide the button through CSS (option 1), you can use the following code in your theme’s style.css file:
.single_job_listing .application .application_button { display: none; }Hope it helps
Forum: Plugins
In reply to: [WP Job Manager] Need to Disable Google Map Link with LocationAgreed
+1
Forum: Plugins
In reply to: [WP Job Manager] Issue with the get_the_company_website shortcode.Hey brinkerink,
The error doesn’t seem consistent though – if you look at http://www.vakantiebaaninhetbuitenland.nl/job/begeleider-sportkampen/ , you’ll see that the href renders without issue π
Forum: Plugins
In reply to: [WP Job Manager] Search Box WidgetIt’s a bit of a roundabout way of doing things seeing as there’s no widget that will allow only the search box to be displayed…
You could use the following shortcode in a text widget in a sidebar:
[jobs per_page=”1″ show_filters=”true”]The downside is that if you use “0” in the per_page paramater, it’ll render all the job listings. By restricting it to “1”, only one job will be shown…
If you’re keen to then hide that one job via CSS, you could use the following code in your themes’ style.css
.widget_text .job_filters .showing_jobs, .widget_text .job_listings, .widget_text .load_more_jobs { display: none; }Note this approach will still render the job in the code, but it’ll be hidden from the user.
Mike might have another trick up his sleeve that’s more efficient π
Hope it helps
Forum: Plugins
In reply to: [WP Job Manager] Need to Disable Google Map Link with LocationHi ansh.shan
As a front end developer – I can take away the styling of the link: meaning people won’t know they can click on it (effectively masking it).
Mike would need to comment though if you want to take away the link entirely via PHP.
If you’re keen to go my route (which will only affect the front-end), try the following code in your theme style.css:
.single_job_listing .meta .google_map_link { cursor: default; text-decoration: none; }Hope it helps…
Forum: Plugins
In reply to: [WP Job Manager] Search Box WidgetHi uklightpainter,
Using the [jobs] shortcode should render that search box; Or do you mean that it should render ONLY the search box and nothing else?
Forum: Plugins
In reply to: [WP Job Manager] Need to Disable Google Map Link with LocationHi ansh.shan,
As far as I know there’s no Google Map functionality that comes packaged with WP Job manager – are you sure it’s not part of the theme you’re using?