MiKapa
Forum Replies Created
-
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Calculations errorsHi Savvas. Works like a charm, thanks!
I’ll try and see what i can get, thanks for the thought ??
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Calculations errorsHi Savvas,
Sounds great, waiting for the fix for the rebounds ??
About the Efficiency total, my previous question about the average was wrong. I found out that the team’s efficiency is the sum of the players’ efficiency numbers. Maybe this fact changes something about the possibility to show the team’s efficiency?
Thanks again,
Manos
Forum: Plugins
In reply to: [SportsPress - Sports Club & League Manager] Calculations errorsHi Savvas,
Yes the problems still exist, any idea what could go wrong with the team’s total calculation of rebounds and efficiency rating? Please let me know if you need more info on my setup.
Thanks,
Manos
Hi Savvas,
Thanks for your reply. I’ve already seen these templates, but I was wondering if there is a specific template for basketball statistics (with columns like asists, fouls, turnovers etc). in the “Import Box Score” page there is this template but it is for football (soccer) statistics, with goals, cards etc. Can i use whatever columns i want for basketball or there is a particular template, columns’ order etc?
Regarding the Live scores for SportsPress plugin, I’ve already tested it but what i want is just a way of QUICK input of the statistics during the game (who did the foul, who took the rebound etc). This plugin is more for play by play showing in the website, which is not what I’m interested in. That’s why I asked if there is compatibility with iScout which does exactly that and exports the results in csv.
Thanks again,
Manos
Forum: Plugins
In reply to: [Car Demon] Search inventory module – Nothing found and multiple car istancesThanks for the comment intrepid32043. I ‘ve already checked that one, the two cars have a stock id of 0001 and 0002. I hope there isn’t any standard (eg. 8 characters long or something) about the format of stock #!
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Fancybox updateIt’s been a month from the last post here so i hope you’ve already found what you wanted, but in any case, here’s what works from me (live demo @ https://www.blogmag.gr)
Code:<div id="main-content" class="group"> <?php $cat_args=array( 'include' => '3,4,5,6,7,8', //for these categories, show posts--> , 'orderby' => 'name','order' => 'ASC' 'orderby' => 'id' ); $categories=get_categories($cat_args); foreach($categories as $category) { $args=array( 'showposts' => 4, 'category__in' => array($category->term_id) ); echo '<div class="front_category_box group">'; $posts=get_posts($args); if ($posts) { $count = 0; while (have_posts()) : the_post(); $count++; if ($count <= 1) : ?> <h2><?php the_category(', ') ?></h2> <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a> <p class="front_exerpt"><?php $excerpt = strip_tags(get_the_excerpt()); echo $excerpt; ?> </p> <p class="front_read_more"><a href="<?php the_permalink(); ?>">Διαβ?στε Περισσ?τερα</a></p> <p class="front_view_comments"><?php comments_popup_link('0 σχ?λια »', '1 Σχ?λιο »', '% Σχ?λια »'); ?></p> <h4>Τελευτα?α - <?php the_category(', ') ?></h4> <ul class="front_latest_news"> <?php else : ?> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"> <?php the_title(); ?></a></li> <?php endif; endwhile; } // if ($posts) else { } //else // if ($posts) echo "</ul></div>"; } // foreach($categories ?> </div><!-- END of main-content -->
The count check is for showing the first post of each category including the thumbnail and the rest three without one. Hope it helps somebody ??
Forum: Fixing WordPress
In reply to: head scripts/links showing up inside body tagJust made an account to say THANKS for the tip of copy paste… I had the same problems, padding on the top, misplaced links and scripts, no validation… horrible! All because of some %^$^%#^%&$ characters (i put the blame on notepad++ which i used for a while…)
thanx again!