bryceadams
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Want to Hide Some Field on Submit Form (Front End)@shashi8181 & @stoetzman – please open your own threads 🙂
Forum: Plugins
In reply to: [WP Job Manager] Job Description FieldBrother master – glad it’s working with
echo $job->job_description;! 🙂Forum: Plugins
In reply to: [Recipe Hero] Error message on installHey Marshaclark,
Yep, you just need Recipe Hero to fix it 🙂
Forum: Plugins
In reply to: [Recipe Hero] Recipe Hero working with Themes?Hey!
Normally I recommend setting the home page to be the recipes page but yeah, I can understand you’d want to show posts mixed with recipes. I’m working on a solution for this but in the meantime, one easy way is to use the [recipe] shortcode for each of the recipes you want to include in a single post.
Will look into responsive ingredient formatting too 🙂
Forum: Plugins
In reply to: [Recipe Hero] Recipes do not showHey! 🙂 Hmm, have you tried re-saving your permalinks under Settings > Permalinks?
If that doesn’t work, feel free to contact me through http://recipehero.in with some admin login details and I’ll take a closer look for you.
Forum: Plugins
In reply to: [WP Job Manager] Job Description Field@master buldog like Mike said, please make your own thread.
Forum: Plugins
In reply to: [WP Job Manager] No Style On My Custom Theme?Hey Owen,
I’d recommend taking a look at the CSS of the Unite theme and trying to copy the way that
ullists are styled. It may be easier to copy and paste the CSS from another theme and then modify it from there.Forum: Plugins
In reply to: [WP Job Manager] No Style On My Custom Theme?Hey Owen,
What’s your site and what theme were you using in picture 1, and then what’s your theme in picture 2?
Forum: Plugins
In reply to: [WP Job Manager] Sidebar on Single Job Post is BlankHey Matt,
Maybe try using WooSidebars to create a custom sidebar for Single Job Listings and then add some widgets to it under Appearance > Widgets?
Forum: Plugins
In reply to: [Recipe Hero] Recipe Hero working with Themes?Hey,
Yeah I noticed that issue with the footer – just a limitation of how they’ve set up their theme. I think I have a solution I will work on later in the week when I get some free time 🙂
Opened issue here – https://github.com/Recipe-Hero/Recipe-Hero/issues/120
Forum: Plugins
In reply to: [WP Job Manager] the_author() not workingWhat kind of PHP?
You could do:
'option1' => admin_url(),For example.
Forum: Plugins
In reply to: [Recipe Hero] Recipe Hero working with Themes?Great! There are a couple issues I’m still working on but it’s hard due to the theme’s structure. For now, hope it’s ok and let me know if there’s anything else I can help with!
Forum: Plugins
In reply to: [WP Job Manager] the_author() not workingHey!
Do you want to add a custom field to the Application form dropdown or the Submit Job form?
For the application form, here’s an example of adding a telephone field – https://wpjobmanager.com/document/applications-adding-telephone-field/ – you could easily change the field type to be select (dropdown) though, and add a new options field like so:
$fields[ 'tel' ] = array( 'label' => 'My Dropdown', 'type' => 'select', 'options' => array( 'option1' => 'Option 1', 'option2' => 'Option 2', 'option3' => 'Option 3', ), 'required' => true, 'priority' => 2, 'value' => isset( $_POST['tel'] ) ? sanitize_text_field( $_POST['tel'] ) : '' );More on editing Application fields here – https://wpjobmanager.com/document/applications-customising-application-form-fields/
Similarly you can do the same for the submit job fields – https://wpjobmanager.com/document/editing-job-submission-fields/
Here’s a detailed tutorial adding a text field to the submit job form – https://wpjobmanager.com/document/tutorial-adding-a-salary-field-for-jobs/
I hope this helps you out! 🙂
Forum: Plugins
In reply to: [WP Job Manager] VariousHey Faith!
Thanks for using WP Job Manager! I’ll answer these one-by-one for you:
1. Depending on your settings, users will have to be logged in to post a job. You can configure this setting under Job Listings > Settings > Job Submission – setting.
2. You can definitely remove it from the menu, by going to Appearance > Menus and creating a custom menu that doesn’t have it. Another cool thing you could do is only show the link to logged in users, by using a plugin like Nav Menu Roles.
3. It’s technically a WordPress login/registration. The users are the same as ‘WordPress’ users, but you can optionally configure under the WP Job Manager settings to give users a certain ‘role’ when registering through the form, like Employer, that may give them different privileges. They are still a normal WordPress user though.
I hope this helps you out! 🙂
Forum: Reviews
In reply to: [Recipe Hero] Very clearThank you so much!