• Resolved ujoshi333

    (@ujoshi333)


    I have seen massive issues in SEO after installing your plugin on two important client sites. Please could you fix this as no page should ever have more than one H1.

    1. The jobs page: /jobs have multiple H1’s
    2. Each vacancy job page has multiple H1’s
    3. /job-catagory/…’ job’…. has multiple H1’s
    4. /Job-type/full-time has multiple H1’s
    5/ /job-location/… has multiple H1’s

    I have created a video you can see the source code with 2x H1’s. https://recordit.co/GVTwYvgSZY

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Anantajit JG

    (@anantajitjg)

    Hi @ujoshi333

    This mainly happens when the theme generates page title in header.php file. So, duplicate page titles will be generated from the theme and our plugin. If you are a developer or you are familiar with PHP code you can easily fix this by overriding awsm_jobs_archive_title and awsm_jobs_single_title functions in your theme’s functions.php file(we recommend child theme so that even if you update the parent theme your changes won’t be lost) from the wp-content/plugins/wp-job-openings/inc/template-functions.php file.
    If you want to completely remove the headings generated by our plugin and want to use theme generated headings, then you can use the below code in your theme functions.php file to completely remove these titles:

    
    function remove_awsm_jobs_title() {
    	remove_action( 'before_awsm_jobs_listing', 'awsm_jobs_archive_title' );
    	remove_action( 'before_awsm_jobs_single_content', 'awsm_jobs_single_title' );
    }
    add_action( 'wp_loaded', 'remove_awsm_jobs_title' );
    

    Note: If your theme provides any option to remove the theme generated headings on certain pages you can use that also if you are not familiar with code customization.

    Thread Starter ujoshi333

    (@ujoshi333)

    On the contrary, it’s the theme’s job to provide the H1 so why does your plugin insert them knowing this will cause adverse effects. The plugin needs to be updated not the client environment.

    And why H1? Use H2-H4 !!

    Please update your plugin save all users the headache.

    Thread Starter ujoshi333

    (@ujoshi333)

    This is a high priority.

    Thread Starter ujoshi333

    (@ujoshi333)

    Also, the issue only exists on Your job pages which Your plugin creates. As you know it’s not a standard WordPress page. i.e Job pages are in the ‘Pages’ menu the page does not exist. Only under ‘Job Openings’ Therefore all the theme options to remove headings are Not available.

    The point is we cannot implement your workaround.

    It is a quick simple 1 character change (H(1)), Please adjust your plugin.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Duplicate H1 Tags | SEO | Priority 1’ is closed to new replies.