This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function listify_custom_autolocation() { | |
if ( ! ( is_front_page() ) ) { | |
return; | |
} | |
?> | |
<script> | |
jQuery(document).ready(function() { | |
var locate = jQuery( '.locate-me' ); | |
locate.trigger( 'click' ); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
*/ | |
global $post; | |
$skills = wp_get_object_terms( $post->ID, 'resume_skill', array( 'fields' => 'names' ) ); | |
$education = get_post_meta( $post->ID, '_candidate_education', true ); | |
$experience = get_post_meta( $post->ID, '_candidate_experience', true ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (min-width: 992px) { | |
.mega-category-list-wrapper { | |
max-width: 99% !important; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Set the color for star ratings throughout the site (except listing header) */ | |
.stars-rating .dashicons, .review-form-stars [class*="dashicon"] { | |
color: red !important; | |
} | |
/* Set the color for star ratings on the listings page header */ | |
.content-single-job_listing-hero.has-image .stars-rating .dashicons:before { | |
color: red !important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Change the word the color red to the color of your choice */ | |
ul.sub-menu > li > a { | |
color: red !important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.home-feature-media img { | |
width: 100%; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.homepage-cover .home-widget-description, .homepage-cover .home-widget-title { | |
color: white !important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.archive ul.job_listings .job_listing { | |
width: 33% !important; | |
} |