Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author ThemeBoy

    (@themeboy)

    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?

    Thread Starter jasond5

    (@jasond5)

    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. https://sandlotdm.com/wp-content/uploads/Screen-Shot-2014-06-05-at-8.38.38-AM.png

    Plugin Author ThemeBoy

    (@themeboy)

    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?

    Thread Starter jasond5

    (@jasond5)

    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.

    Thread Starter jasond5

    (@jasond5)

    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?

    Plugin Author ThemeBoy

    (@themeboy)

    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 ??

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Player List Widget’ is closed to new replies.