mailpop
Forum Replies Created
-
Forum: Plugins
In reply to: [Football Pool] Date format in Bonus QuestionMany Thank’s
That work fine.
Forum: Plugins
In reply to: [Football Pool] Top 5 on ranking pageHi,
Can I abuse, is it possible to display the top 5 only for one league?
And as a bonus, for the first league the top 5 and for a second league the top 3?Regards
Forum: Plugins
In reply to: [Football Pool] Top 5 on ranking pageThis is exactly what I wanted.
Thank you very much for your help.
Forum: Plugins
In reply to: [Football Pool] Golden ball end of timeThank’s for your response.
Forum: Plugins
In reply to: [Football Pool] Special points on toto scoreThank you for your answer,
I did see the joker example in the calc_score function.
But the difficulty is to know if the user is the only one to have found the exact score (or toto score).
I don’t have enough php skills to 😉
Thank you.
Forum: Plugins
In reply to: [Football Pool] Hour on mobile phoneHi Antoine,
Ok, i see :
td.home, td.away { font-size: 125%; padding: 0 2px; }
td.time, td.flag { display: none; }i will add in my custon css on my theme :
td.home, td.away, td.time { font-size: 125%; padding: 0 2px; }
td.flag { display: none; }Is there anything else to do that is not taken into account?
Patrice.
Forum: Plugins
In reply to: [Football Pool] Error calculationAfter create the table it’s ok now 🙂
Many thank’s
Forum: Plugins
In reply to: [Football Pool] Error calculationHi,
Thank’s for your response, in network tab i can see that pool_wp_xxxx_scorehistory_s1_t1 table does not exist.
But pool_wp_xxxx_scorehistory_s1_T2 exist.
Regards,
Patrice.Forum: Plugins
In reply to: [Football Pool] Ranking pageThank’s for your response.
Forum: Plugins
In reply to: [Football Pool] Export rankingThank’s for your response.
It’s ok for me with this table.
Forum: Plugins
In reply to: [Football Pool] User don't paidExcuse me, i find this thread: Email UnPaid Users
I will try it.
My apologies.
Forum: Plugins
In reply to: [Football Pool] Shoutbox in popupThank’s for your response.
Forum: Plugins
In reply to: [Football Pool] ranking empty befor beginingThank’s that works fine 🙂
Forum: Fixing WordPress
In reply to: Problem with php in pageIt’s ok you can close the thread.
My solution was to use do_shortcode in my shortocode:
add_shortcode('matchid', 'get_matchid'); function get_matchid() { IF (isset($_GET['matchid'])) { $mid = $_GET['matchid']; $retour = "[fp-predictionform match=$mid]"; } ELSE { $retour = "[fp-predictionform]"; } return do_shortcode($retour); }Forum: Fixing WordPress
In reply to: Problem with php in pagethank’s for your responses.
I make a shortcode and it’s works fine.
But shortcode in shortcode don’t work: [shortcode1 param1=[shortcode2]]
i test other possibilities:
[shortcode1 param1=[shortcode2][/shortocde2]]
[shortcode1 param1='[shortcode2][/Shortcode2]’]Nothing good, i insert do_short in my plugin and that’s work.
many thank’s