Hi there, thanks for your question.
I’m not able to reproduce the issue using Twenty Fourteen or Premier. Does this happen with all themes, or only a particular one?
Looks like I am only having this issue on my theme. It is strange because the space for the details is there but it is just blank.
I understand this is not your issue but any idea what would cause this strange behavior?
Here is a snapshot of what it looks like. http://sandlotdm.com/wp-content/uploads/Screen-Shot-2014-06-05-at-8.38.38-AM.png
Interesting. I suspect there is something in one of the theme’s register_sidebar functions that could be adding something that cancels out the player list. Is the site on a live server, or could you tell me the name of the theme you’re using?
Sorry, it is not live. Using Gameday Theme by ThemeForest
I had the same issue. I ended up adding a text widget with no title and putting the shortcode to the playerlist in the content of the text widget.
This forced it to work.
thanks for the feedback. Downside to using this method is then I can utilize the great sorting functions included in that Player List widget. Is there a way to tweek the shortcode to effect what is listed?
Thanks for your solution, @sinnerhp 🙂
Here are the Player List shortcode attributes for your reference:
array(
'id' => get_the_ID(),
'number' => -1,
'columns' => null,
'grouping' => null,
'orderby' => 'default',
'order' => 'ASC',
'show_all_players_link' => false,
'link_posts' => get_option( 'sportspress_list_link_players', 'yes' ) == 'yes' ? true : false,
'link_teams' => get_option( 'sportspress_list_link_teams', 'no' ) == 'yes' ? true : false,
'sortable' => get_option( 'sportspress_enable_sortable_tables', 'yes' ) == 'yes' ? true : false,
'responsive' => get_option( 'sportspress_enable_responsive_tables', 'yes' ) == 'yes' ? true : false,
'paginated' => get_option( 'sportspress_list_paginated', 'yes' ) == 'yes' ? true : false,
'rows' => get_option( 'sportspress_list_rows', 10 )
);
You could add orderby and order to the shortcode like this:
[player_list id="123" orderby="goals" order="DESC"]
Hope this helps 🙂