Title: kfan21's Replies | WordPress.org

---

# kfan21

  [  ](https://wordpress.org/support/users/kfan21/)

 *   [Profile](https://wordpress.org/support/users/kfan21/)
 *   [Topics Started](https://wordpress.org/support/users/kfan21/topics/)
 *   [Replies Created](https://wordpress.org/support/users/kfan21/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/kfan21/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/kfan21/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/kfan21/engagements/)
 *   [Favorites](https://wordpress.org/support/users/kfan21/favorites/)

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Job Manager] Adding Custom Salary Field](https://wordpress.org/support/topic/adding-custom-salary-field/)
 *  Thread Starter [kfan21](https://wordpress.org/support/users/kfan21/)
 * (@kfan21)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/adding-custom-salary-field/#post-4344904)
 * I feel like I am so close, but still so far from getting this field to display
   on my Jobs. Can you hold my hand a little on this one?
 * I have changed content-job_listings.php to:
 *     ```
       <li class="date"><?php
       $job_salary_value = get_post_meta( get_the_ID(), 'job_salary', true );
       // check if the custom field has a value
       if( ! empty( $job_salary_value ) ) {
         echo $job_salary_value;
       }
       ?>
        </li>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Job Manager] Adding Custom Salary Field](https://wordpress.org/support/topic/adding-custom-salary-field/)
 *  Thread Starter [kfan21](https://wordpress.org/support/users/kfan21/)
 * (@kfan21)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/adding-custom-salary-field/#post-4344898)
 * Thank you, I had not previously seen those instructions. It is now added to the
   front end. It is not showing in the admin area.
 * Now, I am working on showing the new salary on the content-job_listing.php template.
   The salary is not showing.
 * I added this code to my themes functions.php
 *     ```
       function get_the_job_salary( $post = null ) {
       	$post = get_post( $post );
   
       	if ( $post->post_type !== 'job_listing' )
       		return;
   
       	return apply_filters( 'the_job_salary', $post->_job_salary, $post );
       }
       ```
   
 * Then I added this line to show it on the content-job_listing.php
 *  `<li class="date"><?php echo the_job_salary(); ?></li>`
 * What I am doing wrong that it is not showing? Thank you for your help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Job Manager] edit/remove fields in job form](https://wordpress.org/support/topic/editremove-fields-in-job-form/)
 *  [kfan21](https://wordpress.org/support/users/kfan21/)
 * (@kfan21)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/editremove-fields-in-job-form/#post-4321594)
 * Hi,
    I too am trying to do remove fields from both the back and front end as 
   well. More detailed steps would be so very helpful.
 * Thank you in advance for your time!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Vimeography: Vimeo Video Gallery WordPress Plugin] Autoplay on Journey Theme](https://wordpress.org/support/topic/autoplay-on-journey-theme/)
 *  [kfan21](https://wordpress.org/support/users/kfan21/)
 * (@kfan21)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/autoplay-on-journey-theme/#post-3386196)
 * Thanks Brant!
 * If anyone else has figured out how to have the thumbnail video play automically
   when clicked, I would love to hear how you did it!
 * Kate
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Vimeography: Vimeo Video Gallery WordPress Plugin] Autoplay on Journey Theme](https://wordpress.org/support/topic/autoplay-on-journey-theme/)
 *  [kfan21](https://wordpress.org/support/users/kfan21/)
 * (@kfan21)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/autoplay-on-journey-theme/#post-3386194)
 * Hi Brant,
    I am trying to do the same thing with the Journey theme, can you share
   how you did it?
 * Also, I want to be able to click on a thumbnail and have the video play automatically
   like it does with Bugsauce.
 * Thanks!
    Kate

Viewing 5 replies - 1 through 5 (of 5 total)