ekajuan
Forum Replies Created
-
Forum: Plugins
In reply to: [Relevanssi - A Better Search] How to add more elements?On the default settings, it has 4 or 5 elements with weight, such as title.
So I want to add more element that I can give weight onto.Forum: Plugins
In reply to: [WP Job Manager] Following the Remove Preview Instruction but..If I do that, the form went missing.
Forum: Plugins
In reply to: [WP Job Manager] Following the Remove Preview Instruction but..dapur-uang.com
Plugins:
Account Locker Lite
Ad Inserter
Advanced Custom Fields
Akismet
All In One WP Security
Category Icon
Customify
Custom Post Type UI
Disqus Comment SystemEmail Login
Heartbeat Control
Hide This
Jetpack oleh WordPress.com
Nav Menu Roles
Newscodes
PixTypes
Post Status Notifier
Pretty Link Lite
Relevanssi
Resize Image After Upload
Search & Filter Pro
Super Socializer
Theme My Login
Thrive Leads
User Role Editor
WooCommerce
WooCommerce Konfirmasi Pembayaran
WordPress Password Policy Manager
WP Job Manager
WP Job Manager – WooCommerce Paid Listings
WP Job Manager Field Editor
WP User Frontend Pro
WP-Mail-SMTP
Yoast SEO
Yuzo – Related PostsForum: Plugins
In reply to: [WP Job Manager] Following the Remove Preview Instruction but..I’ve figured out, it’s because the translation. I need to make adjustment with the word ‘preview’.
But then when I hit submit job button, it still goes to preview mode, where people need to hit submit or edit listing button.
Forum: Plugins
In reply to: [WP Job Manager] Search ImprovementI’ve bought search and filter plugin from codedesign. But I don’t know how to override the functionality.
FacetWP is too expensive for my pocket.
Forum: Plugins
In reply to: [WP Job Manager] Search ImprovementI tried to use twenty themes. But the result is still exactly the same. So the theme doesn’t override it. And I tried to delete the function you show me, but the search query still works (irrelevantly)
My question:
1. Is it the right function you gave me? Because if I delete it, it should throws error.
2. How to override it.Forum: Plugins
In reply to: [Search & Filter] Can it do conditonal logic?I mean field appear/disappear based on certain value of another field.
Forum: Plugins
In reply to: [WP Job Manager] How to add rejected status on a listingAdd something like this:
add_filter( 'job_listing_post_statuses', 'reject_status'); function reject_status($a){ $a['tidak_lolos'] = _x( 'Tidak Lolos', 'post status', 'wp-job-manager' ); return $a; }
change ‘tidak lolos’ with ‘rejected’
Forum: Plugins
In reply to: [WP Job Manager] How to remove the listings data meta box ?Yep, add_meta_boxes works…
Thank you.How do you mean by it will be fine? Could you explain it a bit more.
Forum: Plugins
In reply to: [WP Job Manager] How to add rejected status on a listingOk, I’ve figured out
add_filter ('job_manager_get_dashboard_jobs_args', 'tambah_status_iklan_yang_ditampilkan'); function tambah_status_iklan_yang_ditampilkan($x) { $x['post_status' ] = array( 'publish', 'expired', 'pending', 'rejected' ); return $x; }
Forum: Plugins
In reply to: [WP Job Manager] How to add rejected status on a listingSo, I’ve figured out all the backend problem.
But still don’t know how to show it on the frontend.
add_action( 'init', 'custom_post_status', 0 ); function custom_post_status() { $args = array( 'label' => _x( 'Rejected', 'post status', 'wp_job_manager' ), 'public' => true, 'protected' => true, 'exclude_from_search' => true, 'show_in_admin_all_list' => true, 'show_in_admin_status_list' => true, 'label_count' => _n_noop( 'Rejected <span class="count">(%s)</span>', 'Rejected <span class="count">(%s)</span>', 'wp-job-manager' ), ); register_post_status( 'Rejected', $args ); }
Forum: Plugins
In reply to: [WP Job Manager] How to add rejected status on a listingUp to certain degree I have managed to make the post status to change and saved.
But I can’t seems to add a label above the listings list on the backend.
And the listing whose status I’ve changed doesn’t appear on the frontend, when user see his listings list.
Here’s the code I use. Any additional hint? ??
add_filter( 'job_listing_post_statuses', 'reject_status'); function reject_status($a){ $a['rejected'] = _x( 'Rejected', 'post status', 'wp-job-manager' ); return $a; } // Register Custom Status if ( ! function_exists('custom_post_status') ) { // Register Custom Status add_action( 'init', 'custom_post_status', 0 ); function custom_post_status() { $args = array( 'label' => _x( 'Rejected', 'Status General Name', 'wp_job_manager' ), 'label_count' => _n_noop( 'Rejected (%s)', 'Rejected (%s)', 'wp_job_manager' ), ); register_post_status( 'Rejected', $args ); }
`
Still works.