Sportspress Pro

I'm trying to have the BeBuilder active on Sportspress Pro pages. I followed the documentation linked below, however it seems this isn't working. Are you able to advise if this can be added to the plugin at all - Its a widely used plugin for most sports team across the world so would be great if you can help activate the BeBuilder on these pages?

https://support.themeboy.com/article/58-theme-integration-guide

If i add the single template (duplicate of page.php names sportspress) it kind of works but doesn't let you edit using the bebuilder. I'm looking for it to work like normal pages where you can build sections in the bebuilder but it still shows standard wordpress content if loaded e.g. the player stats part.

Any help on this would be appreciated.

Comments

  • Hi,

    You can try the following filter:

    Add in child theme functions.php

    add_filter('bebuilder_post_types','my_post_types');
    
    function my_post_types($post_types){
    	$post_types[] = 'my-custom-post-type';
    	return $post_types;
    }
    

    Best regards

Sign In or Register to comment.