TinyGiantStudios
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Custom fieldsHey Remi,
Nice one – I was toying around with building one as well, but I reckon you’re much better suited to develop it. Look forward to seeing what it looks like. I’m sure it’ll be a hit!
Forum: Plugins
In reply to: [WP Job Manager] WP Job Manager, Single Job listing is Empty.Does it work when you disable all your other plugins and switch to your default theme?
Forum: Plugins
In reply to: [WP Job Manager] Template Overrides via PluginTo give you some more insight – the following function:
function tgs_job_manager_locate_template($template_name, $template_path, $default_path) { $default_path = plugin_dir_path( __FILE__ ) . 'templates/'; $template = trailingslashit( $template_path ) . $template_name; print_r($template); return $template; }give me this:
job-submit.php/C:\wamp\www\wordpress\wp-content\plugins\wp-job-manager/templates/job-submit.phpThis:
function tgs_job_manager_locate_template($template_name, $template_path, $default_path) { $default_path = plugin_dir_path( __FILE__ ) . 'templates/'; $template = trailingslashit( $default_path ) . $template_name; print_r($template); return $template; }gives me this:
C:\wamp\www\wordpress\wp-content\plugins\wpjm-field-editor/templates/C:\wamp\www\wordpress\wp-content\plugins\wp-job-manager/templates/job-submit.phpAnd finally, this:
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; print_r($template); return $template; }Gives me this:
C:\wamp\www\wordpress\wp-content\plugins\wpjm-field-editor/templates/job-submit.phpThe first two examples above gives me fatal errors, while the last one means that I have to copy the files from the “form-fields” directory into the “templates” directory otherwise the job submission doesn’t work. Lastly, some templates does seem impervious to change (e.g. content-single-job_listing.php) with my $end method above π
Forum: Plugins
In reply to: [WP Job Manager] Template Overrides via PluginThe issue that I have with $template_name (and the reason why I used that $end bit) is that when I used $template_name in the override plugin, it adds the entire path as well, not just the name of the template.
The file_exists is a good idea! Will look into that more π
Forum: Plugins
In reply to: [WP Job Manager] For delivery serviceI’m with Mike; Your needs are for something else than a Job Board…
Forum: Plugins
In reply to: [WP Job Manager] Display Jobs by TagNot that I know of…
Forum: Plugins
In reply to: [WP Job Manager] Remove Company Info SectionIf using CSS, use the following in your stylesheet:
.single_job_listing .company { display: none; }Forum: Plugins
In reply to: [WP Job Manager] Package selection as first step – cart as last stepHey alexsef05,
If you figure that out, it might be a killer plugin to sell π
Forum: Plugins
In reply to: [WP Job Manager] Remove Company Info SectionUsing CSS I can send through the code to hide; It’ll still show up in the code but the user won’t be able to see it…
Mike might have a more permanent solution though – which would you prefer?
Forum: Plugins
In reply to: [WooCommerce] Woocommerce 2.1.2 Update ErrorDo you get the same error when only the default theme is active?
Forum: Plugins
In reply to: [WP Job Manager] Is it possible to show "selected jobs" in home?Doh, my bad.
Forum: Plugins
In reply to: [WP Job Manager] Seekers and recruitersThat’s the way I interpreted it – almost like a “Looking for work” kind of listing (which makes me think it’s more suited to a classifieds approach)…
Forum: Plugins
In reply to: [WP Job Manager] Is it possible to show "selected jobs" in home?Hi CarmineXX,
WP Job Manager already makes allowances for job listings to be marked as featured. These job listing will then appear at the very top of the board.
In addition, you can also purchase one of the plugins (either WooCommerce Payments or Simple Paid Listings) to set up a payment package whereby you can specify charges for marking a job as featured.
Hope it helps π
Forum: Plugins
In reply to: [WP Job Manager] Seekers and recruitersHi kkriss,
There’s no option like at the moment; Mike might have some feedback as whether such an option is under development…
Forum: Plugins
In reply to: [WP Job Manager] Conflict with (Buddypress Like 0.1.7)Hi aaronkin,
That’s likely more an indication of the BP Like plugin than with WP Job Manager, seeing as the change in version numbers is one BP Like’s side.
That being said, have you got a link to look at?