@ross This might be a permalinks issue. Could you try flushing permalinks by going to Settings > Permalinks and clicking “Save Changes”?
If the issue persists, please send me a link to one of the articles that are returning a 404 error so that I can have a look.
ok now its working now but wasn’t earlier
Can u go to summer section three and click on one of the matches and tell me how i can get the titles of the info with less of a gap above the info itself.
Would also like to have the details box before the team results box
@ross Looks like there was a typo on our end. The class applied to table captions was affected, which caused the issue of large gaps between titles and tables. Updating to version 1.2.2 will fix this.
Please add this code to your theme’s functions.php. It will move event details to position 15, which would make it appear before the results.
remove_action( 'sportspress_single_event_content', 'sportspress_output_event_details', 30 );
add_action( 'sportspress_single_event_content', 'sportspress_output_event_details', 15 );
The code hasn’t changed anything
how do i get version 1.2.2
@ross Did you add it to your theme’s function.php?
Version 1.2.2 is available now via the plugin’s main page. It will also appear as an update in your dashboard shortly, but if it is not showing up yet you can remove SportsPress then add it again to get the latest version.
ok iv updated to the latest version, but want nice space between each info on the article pages as there isnt a gap now cos theyre too close lol,
Is there a way to choose what widgets i want on article pages or if i can make pages full width etc?
.sp-table-caption { margin-top: 20px; margin-bottom: 5px !important; }
You can insert shortcodes into any page, so you can display them as full width as long as your theme has a full width page template.
The plugin also support custom page templates, which is a good option for developers:
https://sportspresspro.com/docs/theme-integration-guide/
Widget Wrangler (https://wordpress.org/plugins/widget-wrangler/) might be useful if your theme doesn’t have support for per page widgets.