Помогите исправить ошибку в коде - Visavi.net
https://visavi.net/
RSS - Visavi.nethttps://visavi.net/assets/img/images/logo_small.pngRSS - Visavi.net
https://visavi.net/
[email protected] (admin)[email protected] (admin)Mon, 23 Dec 2024 18:27:47 +03007. <strong>Shutak</strong>, тут все прям рвались помочь, 80% плевать хотели на твои просьбы, 15% не знают о чем речь, 4% проходили мимо и только 1% реально тебе поможет))
https://visavi.net/topics/41462/672147
Помогите исправить ошибку в коде АнтонMon, 20 Oct 2014 20:56:41 +0400Сообщенияhttps://visavi.net/topics/41462/672147Да, точно в стилях, к троеточию не применен был стиль и поэтому оно показывалось в конце. Добал строчку .emm-gap, в css и все стало где положено. Спасибо всем.
https://visavi.net/topics/41462/672146
Помогите исправить ошибку в коде ИванMon, 20 Oct 2014 20:25:11 +0400Сообщенияhttps://visavi.net/topics/41462/6721461. <strong>Shutak</strong>, дело не в коде, а в стилях. По коду видно что они указываются там где следует.<br>
<br>
<em><span style="font-size:x-small">Добавлено через 01:37 сек.</span></em><br>
Попробуй заменить<br>
<pre class="prettyprint">$ellipsis = "<span class='emm-gap'>...</span>"; </pre>
На<br>
<pre class="prettyprint">$ellipsis = "..."; </pre>
https://visavi.net/topics/41462/672143
Помогите исправить ошибку в коде АнтонMon, 20 Oct 2014 19:00:01 +0400Сообщенияhttps://visavi.net/topics/41462/6721434. <strong>Shutak</strong>, привет , а просто убрать их не судьба ?
https://visavi.net/topics/41462/672134
Помогите исправить ошибку в коде СергейMon, 20 Oct 2014 14:09:35 +0400Сообщенияhttps://visavi.net/topics/41462/672134код страницы pagination.php которую надо исправить Продолжение:<br>
<pre class="prettyprint">/**
* Helper function for pagination which builds the page links.
*
* @access private
*
* @author Eric Martin <eric@ericmmartin.com>
* @copyright Copyright (c) 2009, Eric Martin
* @version 1.0
*
* @param int $start The first link page.
* @param int $max The last link page.
* @return int $page Optional, default is 0. The current page.
*/
function emm_paginate_loop($start, $max, $page = 0) {
$output = "";
for ($i = $start; $i <= $max; $i++) {
$output .= ($page === intval($i))
? "<span class='emm-page emm-current'>$i</span>"
: "<a href='" . get_pagenum_link($i) . "' class='emm-page'>$i</a>";
}
return $output;
}
function post_is_in_descendant_category( $cats, $_post = null )
{
foreach ( (array) $cats as $cat ) {
// get_term_children() accepts integer ID only
$descendants = get_term_children( (int) $cat, 'category');
if ( $descendants && in_category( $descendants, $_post ) )
return true;
}
return false;
}
?></pre>
Конец.
https://visavi.net/topics/41462/672133
Помогите исправить ошибку в коде ИванMon, 20 Oct 2014 13:32:56 +0400Сообщенияhttps://visavi.net/topics/41462/672133код страницы pagination.php которую надо исправить Продолжение:<br>
<br>
<pre class="prettyprint">$output = "";
if ($pages > 1) {
$output .= "$before<span class='emm-title'>$title</span>";
$ellipsis = "<span class='emm-gap'>...</span>";
if ($page > 1 && !empty($previouspage)) {
$output .= "<a href='" . get_pagenum_link($page - 1) . "' class='emm-prev'>$previouspage</a>";
}
$min_links = $range * 2 + 1;
$block_min = min($page - $range, $pages - $min_links);
$block_high = max($page + $range, $min_links);
$left_gap = (($block_min - $anchor - $gap) > 0) ? true : false;
$right_gap = (($block_high + $anchor + $gap) < $pages) ? true : false;
if ($left_gap && !$right_gap) {
$output .= sprintf('%s%s%s',
emm_paginate_loop(1, $anchor),
$ellipsis,
emm_paginate_loop($block_min, $pages, $page)
);
}
else if ($left_gap && $right_gap) {
$output .= sprintf('%s%s%s%s%s',
emm_paginate_loop(1, $anchor),
$ellipsis,
emm_paginate_loop($block_min, $block_high, $page),
$ellipsis,
emm_paginate_loop(($pages - $anchor + 1), $pages)
);
}
else if ($right_gap && !$left_gap) {
$output .= sprintf('%s%s%s',
emm_paginate_loop(1, $block_high, $page),
$ellipsis,
emm_paginate_loop(($pages - $anchor + 1), $pages)
);
}
else {
$output .= emm_paginate_loop(1, $pages, $page);
}
if ($page < $pages && !empty($nextpage)) {
$output .= "<a href='" . get_pagenum_link($page + 1) . "' class='emm-next'>$nextpage</a>";
}
$output .= $after;
}
if ($echo) {
echo $output;
}
return $output;
}</pre>
https://visavi.net/topics/41462/672132
Помогите исправить ошибку в коде ИванMon, 20 Oct 2014 13:30:51 +0400Сообщенияhttps://visavi.net/topics/41462/672132А вот код страницы pagination.php которую надо исправить:<br>
<pre class="prettyprint"><?php
/*******************************
PAGINATION
********************************
* Retrieve or display pagination code.
*
* The defaults for overwriting are:
* 'page' - Default is null (int). The current page. This function will
* automatically determine the value.
* 'pages' - Default is null (int). The total number of pages. This function will
* automatically determine the value.
* 'range' - Default is 3 (int). The number of page links to show before and after
* the current page.
* 'gap' - Default is 3 (int). The minimum number of pages before a gap is
* replaced with ellipses (...).
* 'anchor' - Default is 1 (int). The number of links to always show at begining
* and end of pagination
* 'before' - Default is '<div class="emm-paginate">' (string). The html or text
* to add before the pagination links.
* 'after' - Default is '</div>' (string). The html or text to add after the
* pagination links.
* 'title' - Default is '__('Pages:')' (string). The text to display before the
* pagination links.
* 'next_page' - Default is '__('&raquo;')' (string). The text to use for the
* next page link.
* 'previous_page' - Default is '__('&laquo')' (string). The text to use for the
* previous page link.
* 'echo' - Default is 1 (int). To return the code instead of echo'ing, set this
* to 0 (zero).
*
* @author Eric Martin <eric@ericmmartin.com>
* @copyright Copyright (c) 2009, Eric Martin
* @version 1.0
*
* @param array|string $args Optional. Override default arguments.
* @return string HTML content, if not displaying.
*/
function emm_paginate($args = null) {
$defaults = array(
'page' => null, 'pages' => null,
'range' => 3, 'gap' => 3, 'anchor' => 1,
'before' => '<div class="emm-paginate">', 'after' => '</div>',
'title' => __('Pages:'),
'nextpage' => __('&rsaquo;'), 'previouspage' => __('&lsaquo;'),
'echo' => 1
);
$r = wp_parse_args($args, $defaults);
extract($r, EXTR_SKIP);
if (!$page && !$pages) {
global $wp_query;
$page = get_query_var('paged');
$page = !empty($page) ? intval($page) : 1;
$posts_per_page = intval(get_query_var('posts_per_page'));
$pages = intval(ceil($wp_query->found_posts / $posts_per_page));
}</pre>
https://visavi.net/topics/41462/672131
Помогите исправить ошибку в коде ИванMon, 20 Oct 2014 13:27:46 +0400Сообщенияhttps://visavi.net/topics/41462/672131Добрый день! Вот в шаблоне Veecard для Wordpress есть проблема в отображении навигации, троеточие отображается не там где положено. Вот скрины: <br>
Скрин 1:<br>
<a href="http://shutak.com.ua/Skrin.png" target="_blank" rel="nofollow">http://shutak.com.ua/Skrin.png</a><br>
Скрин 2:<br>
<a href="http://shutak.com.ua/Skrin2.png" target="_blank" rel="nofollow">http://shutak.com.ua/Skrin2.png</a><br>
<br>
Подскажите пожалуйста что сменить в этом коде чтоб троеточие отображалось как надо, после 7 на первом скрине и после 1 на втором соответственно а не так как сейчас. Очень надеюсь на ваше понимание и помощь. Зарание БОЛЬШОЕ СПАСИБО!
https://visavi.net/topics/41462/672130
Помогите исправить ошибку в коде ИванMon, 20 Oct 2014 13:25:56 +0400Сообщенияhttps://visavi.net/topics/41462/672130