tiaurus
Forum Replies Created
-
Forum: Plugins
In reply to: [NonverBlaster:hover] How to add a teaser image to the videoСпасибо за замечательный плагин!
Оригинальный скрипт поддерживает проигрывание плейлиста. Как это сделать в этом плагине?Forum: Plugins
In reply to: [WP Tiles] PaginationPersonally, I have pagination does not work – all the time only shows the first 20 positions. Index.php code is:
<?php get_header(); ?> <div class="tiled-posts-div"> <?php query_posts("cat=&paged=$paged"); if (have_posts()) : ?> <?php if ( function_exists ( 'the_loop_wp_tiles' ) ) : the_loop_wp_tiles(); endif; ?> <?php else : ?> <?php endif; ?> </div> <?php get_footer(); ?>Forum: Plugins
In reply to: [WP Tiles] PaginationGenerally, of course, the plugin is great. Based on it, you can create a variety of themes, templates. Thank you!
Sorry for my bad English.Forum: Plugins
In reply to: [WP Tiles] PaginationRandomly change templates – is that possible?
Forum: Plugins
In reply to: [WP Tiles] PaginationIf I may ask, why not use the_loop_wp_tiles()?
Because the documentation on the use of plug-in is not provided with examples and detailed description of options. Thanks for the tip, now I will change the code templates.
Forum: Plugins
In reply to: [WP Tiles] PaginationThe correct code:
<?php $page_num = get_query_var('paged'); ?> <?php if ($page_num == 0) : ?> <?php $numposts = 20; $query = 'numberposts='. $numposts; if ( function_exists ( 'the_wp_tiles' ) ) the_wp_tiles(array('posts_query'=>$query)); wp_reset_query(); ?> <?php else : ?> <?php $numposts = 20; $offset_plus = $page_num-1; $offset = $offset_plus*$numposts; $query = 'offset=' . $offset; if ( function_exists ( 'the_wp_tiles' ) ) the_wp_tiles(array('posts_query'=>$query)); wp_reset_query(); ?> <?php endif; ?>Forum: Plugins
In reply to: [WP Tiles] PaginationMy pagination idea:
<?php $page_num = get_query_var('paged'); $numposts = 20; $offset_plus = $page_num-1; $offset = $offset_plus*$numposts; $query = 'offset=' . $offset; if ( function_exists ( 'the_wp_tiles' ) ) the_wp_tiles(array('posts_query'=>$query)); ?>Forum: Plugins
In reply to: [WP Tiles] PaginationPage navigation – the only thing that’s missing this plugin.
I confirm. Once I acquire to add to Favorites, the current page is displayed within itself. It turns out porridge takes. Also download the picture gif disappears not be displayed at all times.
Forum: Themes and Templates
In reply to: [p2 theme] Hide comments home page onlyI use in js.php in line 166:
<?php if ( (int) $hide_threads ) : ?> <?php if ( is_single() ) : ?> showComments(); <?php else : ?> hideComments(); <?php endif; ?> <?php endif; ?>