Uprootednut
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Broadbean] CV's not being sent as attachmentsI upgraded to the 2.0.4 version of the plugin but was having issues with applications going through to Broadbean, they are going into the WordPress backend but not to Broadbean.
Is this something you are aware of?
Forum: Plugins
In reply to: [WP Broadbean] CV's not being sent as attachmentsAlso duplicate jobs seem to be being posted daily with out any one actually publishing a job?
Forum: Plugins
In reply to: [WP Broadbean] CV's not being sent as attachmentsIt now seems to be when ever I send an application works the file shows in broadbean but when ever other people do it it doesn’t seem to work.
Got some odd error message behaviour.
Two sets of error messages and success messages even when the application is successfully sent.
Forum: Plugins
In reply to: [WP Broadbean] CV's not being sent as attachmentsYeah
Forum: Plugins
In reply to: [WP Broadbean] CV's not being sent as attachmentsOk I uploaded a couple of test applications I tried to view the application and it shows like this – https://bryan-armstrong.com/wp-content/uploads/2015/03/test.txt
I was under the impression the CV would be an attachment opposed to a link to the file in the browser?
Hope that makes sense.
Forum: Plugins
In reply to: [Membership Plugin - Restrict Content] Restricted page shows page not foundMm no I wasn’t I had the post set to private from a previous test and didn’t realise…
Thanks for your time.
Forum: Plugins
In reply to: [WP Broadbean] Adding another field to the pluginNever mind got it working!
Forum: Plugins
In reply to: [WP Broadbean] Adding another field to the pluginI have been talking with broadbean, they wanted me to send over a XML node so I sent them this –
<job_location_tags>Reading</job_location_tags>
They said that was fine and I needed to set up a free text field. So I figured if I copied the salary meta box –
'salary' => array( 'name' => 'Salary', 'id' => $wpbb_prefix . 'job_salary', 'type' => 'text', 'cols' => 4 ),
and replaced the id a renamed the field it might work, heres what I added:
` ‘location_tags’ => array(
‘name’ => ‘job_location_tags’,
‘id’ => $wpbb_prefix . ‘job_location_tags’,
‘type’ => ‘text’,
‘cols’ => 4
),I added this into the same array as salary, contact email and linkedin in metabox.php
I hoped it might work, Broadbean uploaded a test job this morning to test it but nothing came through to the field I set up. Was that a long the right lines?
I don’t mind waiting till V2 its more curiosity now than anything.
Forum: Plugins
In reply to: [WP Broadbean] Adding another field to the pluginSo it isn’t as simple as just adding the field to metaboxes.php, damn.
V2 looks exactly what I need. I look forward to its release.
Forum: Plugins
In reply to: [WP Broadbean] Bullet points being displayed as stars?Just to clarify as I feel I wasn’t very clear. I’ve been trying to understand how this all works, the XML is the template of the job we send to broadbean and they make the fields?
So if we wanted a blank location field (we current have loaction broken down into large areas) the blank field is so we can assign a town name to the jobs.
e.g. currently location is drop down menu with options including London, South East, South West.
We want a blank field below the drop down for location to specific the town as well as the region.
I wasn’t sure firstly how to add that to the XML, secondly I would presume I would need to make a new function to call that data into the jobs itself.
Thanks for your time.
Forum: Plugins
In reply to: [WP Broadbean] Bullet points being displayed as stars?Ah ok, thanks for the update.
I was also wander we just had a quick chat with Broadbean about adding another text field, but this time it would be a free text field.
They said we needed provide them with the XML node so they can update it, would you be able to give me any insight into how that is done?
Forum: Plugins
In reply to: [WP Job Manager] Missing application form (can be seen in inspector)Contacted theme developer, provided me with the following solution:
.job_application.application{
display: inline-block;
width: 100%;
}.single_job_listing .application .application_details{
overflow: hidden;
}Thanks
Forum: Plugins
In reply to: [WP Job Manager] Missing application form (can be seen in inspector)I though I linked it, apologies.
Forum: Networking WordPress
In reply to: Been having issues with my multi-site install for month nowHi thanks for the reply, this is what the console says :
Consider using ‘dppx’ units, as in CSS ‘dpi’ means dots-per-CSS-inch, not dots-per-physical-inch, so does not correspond to the actual ‘dpi’ of a screen. In media query expression: print, not all, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) widgets.php:1
JQMIGRATE: Logging is active jquery-migrate.js?ver=1.2.1:21Nothing about any JavaScript errors.
I have just tried changing /wp-admin/js file permission around it was 755 already and changing it didnt help.
I tried replacing the /js file just now with a fresh download.
If it was what you said above:
It could be a plugin or your theme has changed the default version of a js library like jquery or backbone js to a version its happier with but is not compatible with WP4.0 (more common than you’d think and very bad practice)
Would changing the plugin folder to plugins.bin be enough to test it or would I need to go through a delete them one by one till I find the culprit (if there is one)?
We do use cloudflare on a couple of the sites, but as we use WP Multisite and I can still see the issues on the actual network site.
Thanks
Forum: Plugins
In reply to: [WP Job Manager] Application email recipientHi Scott, thanks for the reply.
Not an expert at PHP either, so the code you linked to when added to functions.php will create a new function that will email what ever email address is in the Application email/URL?
What will be emailed – I see from the git hub this –
wp_mail( $canditate_email, 'The subject', 'The message' );
Will the email include only content of job itself?
if so (as I’m currently using Ninja forms) I presume I will need to make a form manually and then add the filled in field to the email?
I hope that make sense!