baalam
Forum Replies Created
-
I just commented that line and the slider is working again… seems like we have a bug to fix for the next update.
Worth mentioning that the slider has become unresponsive…
I will thank you
Forum: Plugins
In reply to: [Easy Responsive Tabs] WordPress 4.0 and system more slowSame problem here… the page that loads this plug in takes way longer than the rest of the pages where this plug in is not in use. Fix it please or I’m gonna have to use a different plug in.
Thank you,
Awesome!
Thank you,
Forum: Plugins
In reply to: [Sticky Header by ThematoSoup] When are sub-menus coming?We want child pages!
Forum: Plugins
In reply to: [Tiled Gallery Carousel Without JetPack] Not responsive on mobileSame thing… on mobile the galleries get squeezed.
When is this going to be fixed??
I just found the notice on my error_log file but I don’t see it under any page.
Hi Peter,
I have a similar notice but on line 960:
if ( is_object( $post_id ) )
$post_id = $post_id->ID;
$get_opts = $this->default_options( $location );Any ideas how to fix it?
Forum: Plugins
In reply to: [WP Publication Archive] PHP NoticeIs there a solution for this?
Forum: Plugins
In reply to: [LeagueManager] Zero in score results and edit bugFor all of you looking for the fix you need to go to your matches.php file under the admin folder and replace this line (71):
<?php echo (isset($match->home_points) ? $match->home_points : 0) ?>" /> : <input class="points" type="text" size="2" style="text-align: center;" id="away_points[<?php echo $match->id ?>]" name="away_points[<?php echo $match->id ?>]" value="<?php echo (isset($match->away_points) ? $match->away_points : 0) ?>" />With this one:
<?php echo (isset($match->home_points) ? $match->home_points : null) ?>" /> : <input class="points" type="text" size="2" style="text-align: center;" id="away_points[<?php echo $match->id ?>]" name="away_points[<?php echo $match->id ?>]" value="<?php echo (isset($match->away_points) ? $match->away_points : null) ?>" />You’re welcome
Forum: Plugins
In reply to: [LeagueManager] Error in played gamesFor all of you looking for the fix you need to go to your matches.php file under the admin folder and replace this line (71):
<?php echo (isset($match->home_points) ? $match->home_points : 0) ?>" /> : <input class="points" type="text" size="2" style="text-align: center;" id="away_points[<?php echo $match->id ?>]" name="away_points[<?php echo $match->id ?>]" value="<?php echo (isset($match->away_points) ? $match->away_points : 0) ?>" />With this one:
<?php echo (isset($match->home_points) ? $match->home_points : null) ?>" /> : <input class="points" type="text" size="2" style="text-align: center;" id="away_points[<?php echo $match->id ?>]" name="away_points[<?php echo $match->id ?>]" value="<?php echo (isset($match->away_points) ? $match->away_points : null) ?>" />You’re welcome
Forum: Plugins
In reply to: [Gallery Carousel Without JetPack] Add class to imageNevermind… I figured it out.
Forum: Fixing WordPress
In reply to: TimThumb & WordPress bugHi esmi,
Thank you for your response but my theme uses it to automatically create a feature post photo at the homepage and to list thumbnails of posts like you can see it here:
Featured post photo: http://mordenminorsoccer.com/
Archive list thumbnails: http://mordenminorsoccer.com/category/articlesWhat is the alternative for it then? TimThumb came with my theme and I never had security issues with it.
Thanks in advance…
Forum: Plugins
In reply to: [Sponsors Carousel] Warning Missing ArgumentIt worked!
Thank you!