Symphasia
Forum Replies Created
-
Sorry… Not working. I got this error message:
Fatal error: Call to a member function remove_cap() on a non-object in C:\xampp\htdocs\svdworp\wp-content\plugins\nextgen-gallery\products\photocrati_nextgen\modules\ngglegacy\admin\install.php on line 115
Oh… and i have other site with AAM installed and nextgen and it works perfectly. It is only on 1 website.
Hi,
I’m working on my own template of event-results.php. And I was wondering how do I get to display the result of the match? I have this:
$id = get_the_ID(); $teams = get_post_meta( $id, 'sp_team' ); $result = get_post_meta( $id, 'sp_results' ); echo '<div id="box-event"> <table> <tr> <td class="team-1">' . get_the_title( $teams[0] ) . '</td> <td class="result">' . $result . '</td> <td class="team-2">' . get_the_title( $teams[1] ) . '</td> </tr> </table> </div> <br>';
Where there is $result, there should be the score of the match.
Thx for your time and help.
grtzForum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] League tableI just received a mail from themeboy. Both of my question will be a new function in the next update.
So thank u Themboy! Keep up the good work. I like your plugin and I will recommend it!Forum: Plugins
In reply to: [WP Responsive Menu] Fail to workHi Nirmal,
I don’t know if the last update made a difference, but everything seems good now.
Thank you for your time AND for your great plugin!!Symph
Forum: Plugins
In reply to: [Event Organiser] [Plugin: Event Organiser] ckeditor not workingresolved
Forum: Plugins
In reply to: [WP Responsive Menu] Fail to workHey Nirmal,
I tried some things but still can’t make it to work.
I made some screenshots like you asked.screenshot 1
screenshot 2
screenshot 3Thanks for your help!
SymphForum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] League table@fitshase: I found a solution for my second question.
open sportspress/templates/league-table.php. The search for this line:
$output .= '<tr class="' . ( $i % 2 == 0 ? 'odd' : 'even' ) . '">';
replace it with this:
if ($name == "YOUR_TEAM_NAME_A" or $name == "YOUR_TEAM_NAME_B") { $output .= '<tr class="' . ( $i % 2 == 0 ? 'odd-highlight' : 'even-highlight' ) . '">'; } else { $output .= '<tr class="' . ( $i % 2 == 0 ? 'odd' : 'even' ) . '">'; }
Now op your css and give it a color.
This should work, it worked for me.
grtz