Gary Pendergast
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Job Manager] New category page template usageI’m planning on releasing the first 0.7 beta over the weekend, with the final release being early-mid April.
Forum: Plugins
In reply to: [Plugin: Job Manager] New category page template usageThis is an interesting idea, I’ll experiment to see if it’s possible in version 0.7.
Thanks for the suggestion!
Forum: Plugins
In reply to: [Plugin: Job Manager] Apply Page TemplateThe problem seems to be that you’re running an older version of PHP 4. PHP_EOL has been defined as of PHP 4.3.10 and PHP 5.0.2.
As a workaround for this, add the following code to your wp-config.php:
if( ! defined( 'PHP_EOL' ) ) define( 'PHP_EOL', "\n" );Please be aware that future versions of Job Manager are unlikely to be as simple to make work with PHP 4. Due to PHP 4 no longer receiving security fixes, and for the performance and feature benefits, you should encourage your host to upgrade to a recent PHP 5.
Forum: Plugins
In reply to: [Plugin: Job Manager] Apply Page TemplateOkay, let me know what the logs show up. Also, could I get you to try the following:
– Add this line of code to your
wp-config.phpfile:
define( 'WP_DEBUG', true );
– Submit a new applicationLet me know if you see any PHP warnings appear when submitting the application.
Forum: Plugins
In reply to: [Plugin: Job Manager] Apply Page TemplateThere are a handful of things to investigate, that may help us get to the bottom of this:
– Do email notifications work when new comments are posted? (Job Manager uses the WP email function.)
– Is there anything in your mail server log related to JM emails?
– Do emails send if you go to the Application Details page, and re-send it from there?
– Do you have a Default Email set in Admin Settings?Forum: Plugins
In reply to: [Plugin: Job Manager] Wrong email address. Go back.This is caused by the Newsletter plugin. I haven’t figured out why it’s interfering here, at the moment the only workaround is to disable that plugin. I’ll look into it further.
Forum: Plugins
In reply to: [Plugin: Job Manager] application form email autopopulatedIt auto-populates with the email address of the user, if they’re registered and logged in, or it will be blank if they are not.
Forum: Plugins
In reply to: [Plugin: Job Manager] Job listing ‘table’ w/ exerptsForum: Plugins
In reply to: [Plugin: Job Manager] Job listing ‘table’ w/ exerptsGlad I could help. 🙂
Let me know what you come up with – I like to see how people are customizing the look and feel of Job Manager!
Forum: Plugins
In reply to: [Plugin: Job Manager] Job listing ‘table’ w/ exerptsYou absolutely can. As HTML/CSS is more your thing, have a look in Job Manager Display Settings, at the Job Templates box. That explains all of the shortcodes you can use to insert data in to the job lists and individual job pages.
For the Job List Template, you should think of the HTML in 3 parts:
– The header part, appearing before the list of jobs
– The HTML for a single job in the list, that can be repeated for each job being shown
– The footer part, appearing after the list of jobsHere’s a basic template that isn’t exactly what you want, but should get you started:
<table class="jobs-table"> <tr class="heading"> <th>Title</th> <th>[job_field1_label]</th> <th>[job_field2_label]</th> <th>[job_field4_label]</th> </tr> [job_loop] <tr class="job[job_row_number] job[job_id] [if_job_highlighted]highlighted [/if_job_highlighted][job_odd_even]"> <td>[if_job_icon][job_icon]<br />[/if_job_icon] [job_link] [job_title] [/job_link]</td> <td>[job_field1]</td> <td>[job_field2]</td> <td>[job_field4]</td> <td>[job_link]More Info[/job_link]</td> </tr> [/job_loop] </table>Forum: Plugins
In reply to: post function problemIt’s a bit hard to tell, as you didn’t post the entire
socialize()function. I suspect what you want to do is replace:$message = "$tw_title $permalink";with:
$post = get_post( $post_ID ); $message = $post->post_content;Forum: Plugins
In reply to: post function problemThe following line of code will retrieve the entire post:
$post = get_post( $post_ID );You can then get the content from
$post->post_content.Forum: Plugins
In reply to: [Plugin: Job Manager] Apply Page TemplateIt’s not too tricky to make this change, just do the following:
– Write the HTML you want, then delete any new lines, so everything is all in one line.
– Make sure there are no single quotes in the HTML. ie: ‘
– Modify your HTML as so (similar to how you see in the rest of the file):$content .= 'your html';– Add this entire line to line 71 of frontend-user.php.
Let me know if you run into any problems.
Forum: Plugins
In reply to: [Plugin: Job Manager] Apply Page TemplateAh, I see what you’re after. I’ll add an option for that in 0.7, due out in April.
In the mean time, the easiest way to work around this would be to modify the
jobman_display_register()function, found in frontend-user.php, line 66.Forum: Plugins
In reply to: [Plugin: Job Manager] Multiple issuesNow that I’m back, I’ve fixed up 3) and 5), I’ll be release 0.6.4 shortly with these fixes included.