• Resolved Jordi

    (@kukat)


    Hi!

    I want to optimize the towns of my website. I use since 2012 the plugin Event Organiser.

    How can I add the Rank Math SEO BOX and Rank Math functionality to this Venues post type?

    The “Title” is working automatically from “Seo Titles y Meta” configuration, but no description appears.

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

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Rank Math

    (@rankmath)

    Hello @kukat,

    Thank you for contacting the support and sorry for any inconvenience that might have been caused due to that.

    Can you please get in touch with the plugin developer and request them to add the compatibility for the SEO plugins for their Venues? As we tried other SEO plugins as well and they are also not showing up on those pages.

    As it doesn’t seem like a CPT.

    They will be in a better position to help.

    Thread Starter Jordi

    (@kukat)

    Thanks!!!

    Unfortunately I think the developer is not active at all ??

    There are a method for insert code manually on Venue template for Rank Math?

    Thanks a lot.

    Thread Starter Jordi

    (@kukat)

    VENUE is a template. This template:

    <?php
    /**
     * The template for displaying the venue page
     *
     ***************** NOTICE: *****************
     *  Do not make changes to this file. Any changes made to this file
     * will be overwritten if the plug-in is updated.
     *
     * To overwrite this template with your own, make a copy of it (with the same name)
     * in your theme directory. See https://docs.wp-event-organiser.com/theme-integration for more information
     *
     * WordPress will automatically prioritise the template in your theme directory.
     ***************** NOTICE: *****************
     *
     * @package Event Organiser (plug-in)
     * @since 1.0.0
     */
    
    //Call the template header
    get_header(); ?>
    
    <div id="primary" role="main" class="content-area">
    
    	<!-- Page header, display venue title-->
    	<header class="page-header">
    		
    		<?php $venue_id = get_queried_object_id(); ?>
    		
    		<h1 class="page-title">
    			<?php printf( __( 'Events at: %s', 'eventorganiser' ), '<span>' . eo_get_venue_name( $venue_id ) . '</span>' );?>
    		</h1>
    	
    		<?php
    		if ( $venue_description = eo_get_venue_description( $venue_id ) ) {
    			echo '<div class="venue-archive-meta">' . $venue_description . '</div>';
    		}
    		?>
    
    		<!-- Display the venue map. If you specify a class, ensure that class has height/width dimensions-->
    		<?php
    		if ( eo_venue_has_latlng( $venue_id ) ) {
    			echo eo_get_venue_map( $venue_id, array( 'width' => '100%' ) );
    		}
    		?>
    	
    	</header>
    		
    	<?php eo_get_template_part( 'eo-loop-events' ); //Lists the events ?>
    
    </div><!-- #primary -->
    
    <!-- Call template sidebar and footer -->
    <?php get_sidebar(); ?>
    <?php get_footer();
    Plugin Author Rank Math

    (@rankmath)

    Hello @kukat

    We checked the Event Organiser plugin on our setup. The Venue Post type which you are referring to is not a post type it’s an admin page, the plugin shows its data on the frontend using rewrite rules.

    Even other SEO plugins do not show any description on such pages. The Event Organiser plugin author will have to make the plugin compatible with Rank Math SEO.

    The plugin was last updated 2 weeks ago so the author is still maintaining it.

    For now, you can use our description filter to add a custom description on these dynamic pages:
    https://rankmath.com/kb/filters-hooks-api-developer/#change-meta-description

    Hope that helps. Thank you.

    Thread Starter Jordi

    (@kukat)

    Thanks!

    Plugin Author Rank Math

    (@rankmath)

    Hello @kukat

    Happy to help!

    If it isn’t too much to ask for – would you mind leaving us a review here?
    https://www.ads-software.com/support/plugin/seo-by-rank-math/reviews/#new-post

    It only takes a couple of minutes but helps us tremendously.

    It would mean so much to us and would go a really long way.

    Thank you.??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Rank Math SEO on Event Organiser Venues’ is closed to new replies.