Viewing 2 replies - 1 through 2 (of 2 total)
  • I have got the same issue.

    Results on the page never gets updated it says at 0-0 and o.P.

    I am using the following short code :

    [matches league_id=7 match_day=1]

    Suppport for this plugin is dead?

    You should remove 0-0 and leave all the boxes empty.

    You have 0-0 o.P. because you have 0-0 written on “penalty score”.

    In another post I published:

    check this file leaguemanager/sports/soccer.php
    
    If you have around #136 #137 and #138 this code
    ( isset($match->halftime['minus']) ? $match->halftime['minus'] : 0 )
    ( isset($match->overtime['away']) ? $match->overtime['away'] : 0 )
    ( isset($match->penalty['away']) ? $match->penalty['away'] : 0 )
    
    The code should be:
    ( isset($match->halftime['minus']) ? $match->halftime['minus'] : "" )
    ( isset($match->overtime['away']) ? $match->overtime['away'] : "" )
    ( isset($match->penalty['away']) ? $match->penalty['away'] : "" )
    
    The 0 can be replaced by "" or download here the file https://plugins.trac.www.ads-software.com/browser/leaguemanager/trunk/sports/soccer.php

    Isydee

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Matches league not working properly’ is closed to new replies.