• Добрый вечер!
    Подскажите пожалуйста, в чем проблема. Все результаты поиска на сайте не кликабельны, т.е. если нажимаешь на название статьи или знак (…) ничего не происходит — они не активны. На страницах сайта статьи открываются нормально, проблемы только с результатами поиска. Спасибо

Просмотр 15 ответов — с 1 по 15 (всего 17)
  • копать в сторону кривого кода search.php в теме.

    Не могли бы вы подсказать, где ошибка, мне самой не справиться:

    
    <?php get_header(); ?>
    <div class="span-24" id="contentwrap">
    	<div class="span-16">
    		<div id="content">
    
    	<?php if (have_posts()) : ?>
    
    		<h2 class="pagetitle">Search Results</h2>
    
    		<?php while (have_posts()) : the_post(); ?>
    
    			<div <?php post_class() ?>>
                    <h2 class="title"><?php the_title(); ?></h2>
    				<div class="postdate">Posted by <strong><?php the_author() ?></strong> on  <?php the_time('F jS, Y') ?> <?php if (current_user_can('edit_post', $post->ID)) { ?> | <?php edit_post_link('Edit', '', ''); } ?></div>
    				<div class="entry">
                        <?php if ( function_exists("has_post_thumbnail") && has_post_thumbnail() ) { the_post_thumbnail(array(200,160), array("class" => "alignleft post_thumbnail")); } ?>
    					<?php the_excerpt() ?>
    				</div>
            	</div>
    
    		<?php endwhile; ?>
    
    		<div class="navigation">
    			<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?>
    			<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
    			<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
    			<?php } ?>
    		</div>
    
    	<?php else : ?>
    
    		<h2 class="pagetitle">No posts found. Try a different search?</h2>
    		<?php get_search_form(); ?>
    
    	<?php endif; ?>
    
    		</div>
    	</div>
    
    <?php get_sidebars(); ?>
    </div>
    <?php get_footer(); ?>
    • Ответ изменён 8 лет, 1 месяц назад пользователем Yui.

    замените код:

    
    <h2 class="title"><?php the_title(); ?></h2>
    

    на

    
    <h2 class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
    

    Flector, огромное спасибо, все получилось!

    • Ответ изменён 8 лет, 1 месяц назад пользователем afelina.
    Автор afelina

    (@afelina)

    У меня опять вылез косяк. Когда я поменяла код все исправилось, и все найденные в поисковике заглавия были клекабельны. Сегодня заметила, что клекабельны только верхние названия на каждой странице, все остальные, нижние заглавия статей — не отзываются(((

    нижние это какие?

    Автор afelina

    (@afelina)

    На одной странице 5 статей. Верхнее название клекабельно и по нему можно перейти к самой статье. остальные — не клекабельны. Причем у верхней статьи пишется два названия подряд, и одно из них (верхнее) активно. У нижних статей — название одно, не активное.
    Пример:

    Salted salmon
    Salted salmon
    Posted by admin on Ноябрь 6th, 2016 | Edit
    Salted salmon Salt and sugar will help you for pickling red fish; herbs, lemon peel and pepper isto emphasize and strengthen delicate fish taste. Recipe for 8 servings: Two pieces of salmon on 200 g, without skin and bones 1 tablespoon (heaping) salt large grinding 1 tablespoon (heaping) sugar Zest of half a lemon […]

    Baked salmon
    Posted by admin on Ноябрь 4th, 2016 | Edit
    Baked salmon World gripped by an epidemic of cardiovascular disease. In order to protect themselves from disease, doctors are advised to increase your intake of fiber and Omega-3 fatty acids. Execute recommendations-for dinner will be baked salmon! Recipe for 2 servings: 250 g salmon fillet 200 g of frozen green peas 1 teaspoon sesame seeds […]

    Salmon salad
    Posted by admin on Октябрь 13th, 2016 | Edit
    Ingredients: 1.5 cucumber (one for the base, the rest — cut) 1 large potato few slices of salmon or trout for layer 10 slices of salmon or trout for decoration on top of salad mayonnaise 100 g canned or boiled crab meat or mashed with a fork fried fish 1-2 eggs shrimp Cooking: Cucumber finely […]

    Автор afelina

    (@afelina)

    В самом начале после исправления везде было по два названия и одно из них активное

    вы код то правильно заменили?
    я просто не понимаю, где там еще может что-либо выводиться.

    Автор afelina

    (@afelina)

    Да, правильно. Во-первых, сразу-то все поправилось. Во-вторых, перед тем, как написать, я еще раз попробовала нужную строку заменить

    <?php if (have_posts()) : ?>

    <h2 class=»title»>«><?php the_title(); ?></h2>

    <?php while (have_posts()) : the_post(); ?>

    Модератор Denis Yanchevskiy

    (@denisco)

    WordPress-разработчик, denisco.pro

    Какую тему Вы используете? Из официального каталога?

    Автор afelina

    (@afelina)

    Да, Promeni Версия: 5.3

    Автор afelina

    (@afelina)

    В поисковике ее только что не нашла. Я ее не из каталога ставила

    • Ответ изменён 8 лет назад пользователем afelina.
    • Ответ изменён 8 лет назад пользователем afelina.
    Модератор Denis Yanchevskiy

    (@denisco)

    WordPress-разработчик, denisco.pro

    Посмотрел код. Ещё раз проверьте, что всё верно заменили.
    В файле search.php нужно заменить строку
    <h2 class="title"><?php the_title(); ?></h2>
    на
    <h2 class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
    Собственно, Вам это и посоветовал @flector.

    Все заголовки становятся кликабельными.

    Ещё один вариант, подобрать тему из каталога, в которой уже реализован данный функционал.

    • Ответ изменён 8 лет назад пользователем Denis Yanchevskiy.
    Автор afelina

    (@afelina)

    Увы… Еще раз заменила, результат тот-же, кликабельна только первая статья на странице:

    Spanakopita — spinach Pie
    Spanakopita — spinach Pie
    Posted by admin on Ноябрь 6th, 2016 | Edit
    Spanakopita — Spinach Pie The Greeks are famous for their high life expectancy, probably the reason and their thoughtful diet. We offer you national recipe Greek cuisine—spanakopitu. In one portion of the entire 160 kcal, which means it is still safe for your shape. Recipe for 8 servings: 500 g baby spinach leaves, washed only without […]

    Meat pie
    Posted by admin on Октябрь 29th, 2016 | Edit
    Recipe: dough—350 g beef (neck)—150 g pork (neck)—150 g mushrooms—200 g Carrot—1 piece Onion—1 piece oil—2 tbsp salt-1 teaspoon black pepper—½ TSP turmeric—1/3 teaspoon milk—1.5 tablespoons Cooking: Boil boiling pork and beef. Refrigerate the meat and then pass it through a smallGrill meat grinder. Saute in butter chopped small dice onions. Add the grated carrots […]

    Но все равно спасибо вам, что пытались помочь

    • Ответ изменён 8 лет назад пользователем afelina.
Просмотр 15 ответов — с 1 по 15 (всего 17)
  • Тема «Неклекабельные результаты поиска» закрыта для новых ответов.