kibus90
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Jobs shortcode for categories not workingHello,
You used it almost good! ??
Just use it like that:
[jobs categories="parks,cafes"]
- This reply was modified 6 years, 1 month ago by kibus90.
Forum: Plugins
In reply to: [WP Job Manager] Categories to pagesYou can do this with:
[jobs categories="slug-of-category"]
Forum: Plugins
In reply to: [WP Job Manager] Replacing “Post Date” with “Expiry Date”Hello @giantoctogon
We forgot add “echo” ??
Just use it:
<?php echo get_post_meta( $post->ID, '_job_expires', true );?>
- This reply was modified 6 years, 1 month ago by kibus90.
Hello,
I do not know. It is my solution what I can offer you. This is a lot of CSS, but I also fix you with it some part of the elements which could be a problem for normal using your website.
I do not know if they will solve this problem in next relase of WP Job Manager.This also has not to be them problem, but your theme. Maybe your theme does not support the newest version of WPJM.
Till this time they will not fix it, I will not update WPJM, because the currently version of WPJM brakes me whole site (job offers, submit resumes etc.)
- This reply was modified 6 years, 1 month ago by kibus90.
Forum: Plugins
In reply to: [WP Job Manager] Edit an expired listingYes, you have to add a custom code.
You can do it this code:
$actions['edit'] = array( 'label' => esc_html__( 'Edit', 'wp-job-manager' ), 'nonce' => false );
You have to add this code in line 63 after
case 'expired' :
:/wp-job-manager/templates/job-dashboard.php
Remember to any changes make in child-theme to avoid lost the changes after update your theme.
Forum: Plugins
In reply to: [WP Job Manager] company URLHello,
Do you want change a slug of name company or the slug company like “/company/”?
- This reply was modified 6 years, 1 month ago by kibus90.
Forum: Plugins
In reply to: [WP Job Manager] Replacing “Post Date” with “Expiry Date”Hello,
It should work.Try this:
get_post_meta( $post->ID, '_job_expires', true )
Hello,
Please add it anywhere where you add the Custom CSS..search_jobs .search_region,input.select2-search__field{ background-color: #fff; border-radius: 4px; padding: 7px 14px; line-height: 1.75; } .select2-container[class*="open"] { z-index: 9999; background: #fff; border: 1px solid #cccc; max-width: 100% !important } span#select2-search_region-container { display: inline-block; width: 95%; } span.select2-dropdown.select2-dropdown--below { display: inline-block; } .select2-search{ z-index:0 } span.select2-container.select2-container--default.select2-container--open .select2-search{ z-index:99999 } .select2-container { max-width: 100% !important; } .select2-results li{ cursor:pointer } body.wp-job-manager-categories-multi-enabled:not(.home) .search_jobs .search_categories{ margin-bottom:5px } ul.select2-selection__rendered { margin: 0; } .select2-search,.select2-results{ padding:0 } input.select2-search__field { padding-left: 1em; padding-right: 1em; width:100% !important } .select2-search input{ margin:0 } .select2-container[class*="open"] input.select2-search__field{ padding:5px } @media(min-width:768px){ body.wp-job-manager-categories-multi-enabled:not(.home) .search_jobs .search_categories{ margin-top: 10px } }
I hope it will be helpfull for you.
I fixed:
– the width of the containers element (now you can click for whole container and you can open drop-down list),
– the container of “select category”,
– z-index of elements drop-down, because they were under your content of listings.
– the general look.Forum: Plugins
In reply to: [WP Job Manager] Header colour change in job listingMaybe there is some bug in your theme. I see that on home page you have set the featured image, but on the job listing not Try to add the featured image of test job listing then check the header.
Forum: Plugins
In reply to: [WP Job Manager] Change user role upon job submissionHello,
You can change in WordPress Settings the defult role for registration users.
Settings -> General
“The default role of new users” and there you can set for “Employer” ??
I hope that you meant it.
Forum: Plugins
In reply to: [WP Job Manager] Jobs not expiring on or after expiration dateHi,
You can try:if ('preview' !== $post->post_status or 'expired' === $post->post_status):?> <?php esc_html_e( 'This job posting expired and applications are no longer accepted.', 'wp-job-manager' ); ?> <?php else:?> Full job offer <?php endif;
Forum: Plugins
In reply to: [WP Job Manager] Custom JS in content-job_listingTry this:
jQuery(document).ajaxComplete(function($) { jQuery(document).ready(function($){ $(".open-vlist").click(function(){ var container = $(this).parents(".vlist"); var answer = container.find(".vlist-p"); var trigger = container.find(".vlist-t"); answer.slideToggle(200); if (trigger.hasClass("vlist-o")){ trigger.removeClass("vlist-o"); } else { trigger.addClass("vlist-o"); } if (container.hasClass("vlist-expanded")){ container.removeClass("vlist-expanded"); } else { container.addClass("vlist-expanded"); } }); }); });
If does not work – please provide me your URL where the code hast wo work. ?? I will check it for you.
- This reply was modified 6 years, 1 month ago by kibus90.
Forum: Plugins
In reply to: [WP Job Manager] Custom JS in content-job_listingHi,
This is cause the
content-job-listing.php
generates many times contents (depend how much you have the job offers).You can add the script it in template file named “
job-filters.php
” before <form>.Please let me know you solved your problem or you need more help.
Forum: Plugins
In reply to: [WP Job Manager] CSS for submit and dashboard pageHi,
Please let me know what do you want to change. I will try to help with it how to change it.
- This reply was modified 6 years, 1 month ago by kibus90.
Forum: Plugins
In reply to: [WP Job Manager] Hide Job Search unless loginCreativeWP – There is not this option, but you can do it verry easy with your custom code ?? If you need help, let me know.