kanagarasu
Forum Replies Created
-
Forum: Plugins
In reply to: [Job Manager] Job List filter box default post valueHey Thomas,
I am sorry, Its my mistake.Please close this task
Thanks.
Forum: Plugins
In reply to: [WP Job Manager] How to Display Same style job list on category archives?Hi mike,
Is there any shortcode for load more listing or pagination for theme template.
Forum: Plugins
In reply to: [WP Job Manager] How to Display Same style job list on category archives?Hi Mike
Finally I got it.
One more question, I want to display related jobs on each post. How can I enable this?
Forum: Plugins
In reply to: [WP Job Manager] How to Display Same style job list on category archives?Here is the taxonomy-job_listing_category.php
<?php
/**
* post type archive template.
*
*///* Force full width content layout
add_filter( ‘genesis_pre_get_option_site_layout’, ‘__genesis_return_full_width_content’ );//* Remove the breadcrumb navigation
// remove_action( ‘genesis_before_loop’, ‘genesis_do_breadcrumbs’ );//* Remove the post info function
remove_action( ‘genesis_entry_header’, ‘genesis_post_info’, 12 );//* Remove the post content
add_action( ‘genesis_entry_content’, ‘genesis_do_post_content’ );//* Remove the post image
remove_action( ‘genesis_entry_content’, ‘genesis_do_post_image’, 8 );//* Add featured image below post title with
add_action( ‘genesis_entry_header’, ‘sk_portfolio_grid’ );
function sk_portfolio_grid() {<li <?php job_listing_class(); ?> data-longitude=”<?php echo esc_attr( $post->geolocation_lat ); ?>” data-latitude=”<?php echo esc_attr( $post->geolocation_long ); ?>”>
“>
<div class=”logo “>
<?php the_company_logo(); ?></div>
<div class=”position “>
<h3><?php the_title(); ?></h3></div>
<div class=”company”>
<?php the_company_name( ‘‘, ‘ ‘ ); ?>
</div>
<ul class=”meta “>
<?php do_action( ‘job_listing_meta_start’ ); ?><li class=”job-expire”><?php echo ( $expires = get_post_meta( $post->ID, ‘_job_expires’, true ) ) ? date_i18n( get_option( ‘date_format’ ), strtotime( $expires ) ) : ‘–’; ?>
<?php do_action( ‘job_listing_meta_end’ ); ?>
}
//* Remove the post meta function
remove_action( ‘genesis_entry_footer’, ‘genesis_post_meta’ );//* Modify the length of post excerpts
add_filter( ‘excerpt_length’, ‘genesis_post_excerpt_length’ );
function genesis_post_excerpt_length( $length ) {
return 50; // pull first 50 words
}add_filter( ‘get_the_content_more_link’, ‘child_read_more_link’ );
function child_read_more_link() { return ”; }genesis();
Forum: Plugins
In reply to: [WP Job Manager] How to Display Same style job list on category archives?Here is the taxonomy-job_listing_category.php
<?php
/**
* post type archive template.
*
*///* Force full width content layout
add_filter( ‘genesis_pre_get_option_site_layout’, ‘__genesis_return_full_width_content’ );//* Remove the breadcrumb navigation
// remove_action( ‘genesis_before_loop’, ‘genesis_do_breadcrumbs’ );//* Remove the post info function
remove_action( ‘genesis_entry_header’, ‘genesis_post_info’, 12 );//* Remove the post content
add_action( ‘genesis_entry_content’, ‘genesis_do_post_content’ );//* Remove the post image
remove_action( ‘genesis_entry_content’, ‘genesis_do_post_image’, 8 );//* Add featured image below post title with
add_action( ‘genesis_entry_header’, ‘sk_portfolio_grid’ );
function sk_portfolio_grid() {<li <?php job_listing_class(); ?> data-longitude=”<?php echo esc_attr( $post->geolocation_lat ); ?>” data-latitude=”<?php echo esc_attr( $post->geolocation_long ); ?>”>
“>
<div class=”logo “>
<?php the_company_logo(); ?></div>
<div class=”position “>
<h3><?php the_title(); ?></h3></div>
<div class=”company”>
<?php the_company_name( ‘‘, ‘ ‘ ); ?>
</div>
<ul class=”meta “>
<?php do_action( ‘job_listing_meta_start’ ); ?><li class=”job-expire”><?php echo ( $expires = get_post_meta( $post->ID, ‘_job_expires’, true ) ) ? date_i18n( get_option( ‘date_format’ ), strtotime( $expires ) ) : ‘–’; ?>
<?php do_action( ‘job_listing_meta_end’ ); ?>
}
//* Remove the post meta function
remove_action( ‘genesis_entry_footer’, ‘genesis_post_meta’ );//* Modify the length of post excerpts
add_filter( ‘excerpt_length’, ‘genesis_post_excerpt_length’ );
function genesis_post_excerpt_length( $length ) {
return 50; // pull first 50 words
}add_filter( ‘get_the_content_more_link’, ‘child_read_more_link’ );
function child_read_more_link() { return ”; }genesis();
I can not see any changes. what am I doing wrong?
Forum: Plugins
In reply to: [WP Job Manager] How to Display Same style job list on category archives?Hey mike,
Thanks for the help.
I am using this function to change the template on job category archive, But I can not see any changes. what am I doing wrong?
Here is the function
add_filter( ‘template_include’, ‘archive_page_template’, 99 );
function archive_page_template( $template ) {
if ( is_post_type_archive(job-category) ) {
$new_template = locate_template( array( ‘taxonomy-job_listing_category.php’ ) );
if ( ” != $new_template ) {
return $new_template ;
}
}return $template;
}Thanks,
kanagarasuForum: Plugins
In reply to: [WP Job Manager] How to Display Same style job list on category archives?Do you have any examples?
Can you please elaborate?
Forum: Plugins
In reply to: [WP Job Manager] How to Display a categories on nav menu?Hey Mike,
thank you so much..It’s working fine….