Support » Plugin: Regions for WP Job Manager » Formatting on the Job listing page is not working correct.

Viewing 1 replies (of 1 total)
  • Hey,

    I also noticed this issue.
    It happens because anchor tag is inside anchor tag. You can strip it with strip_tags function.

    • Open plugins/wp-job-manager-locations/includes/class-template.php
    • Change this
      return get_the_term_list( $post->ID, 'job_listing_region', '', ', ', '' );
      to this
      return strip_tags ( get_the_term_list( $post->ID, 'job_listing_region', '', ', ', '' ) );

    Cheers!

Viewing 1 replies (of 1 total)
  • The topic ‘Formatting on the Job listing page is not working correct.’ is closed to new replies.