dave101
Forum Replies Created
-
Forum: Plugins
In reply to: [Football Pool] AvatarSorry AntonieH
The code that came out to me was
define(‘FOOTBALLPOOL_NO_AVATAR’, false);
But the quotes were wrong, they did not define a variable. That damn ‘ ‘ that’s confusing in programming.I’m still going to see that the 2.0 of the plugin changes.
Greetings and resolved
Forum: Plugins
In reply to: [Football Pool] AvatarAntonieH
I have the information here. I’m going to try this
https://www.ads-software.com/support/topic/how-are-equal-rankings-sorted/
Forum: Plugins
In reply to: [Football Pool] AvatarThe version I have installed is:
/**
* Plugin Name: Football Pool Ranking Score Breakdown
* Description: Show score breakdown in the ranking table (full points, toto points, goal bonus, goal difference, question points).
* Version: 1.1
?* Author: Antoine Hurkmans
* License: MIT
*/
If you need the code I’ll upload it to you. And yes there is the comments option.
Forum: Plugins
In reply to: [Football Pool] AvatarI entered it before that line and it still doesn’t work.
I had version 2.10.3 and updated to the latest one and there my avatars disappeared. If that helps to see where the problem may be.Forum: Plugins
In reply to: [Football Pool] AvatarHi, AntoineH
Yes I added it after that line.
Maybe I have to change some code to that external shortcode? I mean the one in “Football Pool Ranking Score Breakdown”
Thank youForum: Plugins
In reply to: [Football Pool] Show initial in last nameExcelent!!! Thank you AntonieH
Forum: Plugins
In reply to: [Football Pool] Can’t see the avatarThank you!!
Forum: Plugins
In reply to: [Football Pool] Ranking teamThank you AntoineH
Forum: Plugins
In reply to: [Football Pool] Last time the scoreThank you!
Forum: Plugins
In reply to: [Football Pool] AyudaHola pasega, para que te funcione al horario de partidos, tenes que poner 3 horas más del encuentro. Si por ejemplo el partido es a las 19:30hs. Pone el partido a las 22:30hs.
A mi me resulta así.—–
Hi, Pasega, for the match schedule to work, you have to put in 3 more hours of the match. If, for example, the game is at 7:30 p.m. Set the game at 10:30 p.m.
It seems like this to me.Forum: Plugins
In reply to: [Football Pool] Auto get score from rss feedThis program can work. https://code.google.com/archive/p/rssingest/
Forum: Plugins
In reply to: [Football Pool] List of Participants of competitionIf that proves it, but when leagues are not used. Is there any shortcode?
Forum: Plugins
In reply to: [Football Pool] Used only show football resultsThank you!
Forum: Plugins
In reply to: [Football Pool] User AvatarThank you! excelent!
Forum: Plugins
In reply to: [Football Pool] Add Flags to Groups TableMy contribution will add the following to the code:
add_filter ('footballpool_group_table_start_template', array (__CLASS__, 'change_group_start_template'), null, 2); public static function change_group_start_template ($ template_start, $ layout) { $ template_start = '<div class = "ranking group-ranking -'. $ layout. '% css_class%"> <h2>% group_name% </ h2> <table class = "ranking group-ranking"> <thead> '; if ($ layout == 'wide') { $ template_start. = '<tr> <th class = "team"> Teams </ th> <th class = "wins"> <span title = "Played"> JUG </ span> </ th> <th class = "wins"> <span title = "% wins_expl%">% wins_thead% </ span> </ th> <th class = "draws"> <span title = "% draws_expl%">% draws_thead% </ span> </ th> <th class = "losses"> <span title = "% losses_expl%">% losses_thead% </ span> </ th> <th class = "wins"> <span title = "points"> PTS </ span> </ th> <th class = "goals"> <span title = "Goals for and find"> GF-GC </ span> </ th> </ tr> </ thead> <tbody> '; } return $ template_start; }
Thanks, and I hope another user can use it.