flaquedeau
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Related Posts] Can't find plugin settings !Hey silvoslaf
good plug in quick support
Thanks so much ??Forum: Plugins
In reply to: [WordPress Related Posts] Can't find plugin settings !Hello silvoslaf
I’ve deleted the wp_random_posts function and it works fine ??
Thanks a lot for your quick help ??PS : by the way I didn’t find the css to edit the font family/size of the “Related Posts Title” displayed
Could you help ??Forum: Plugins
In reply to: [WordPress Related Posts] Can't find plugin settings !Hey Silvo
You’re right I didn’t see a Fatal Error when installing the Plug inFatal error: Cannot redeclare wp_random_posts() (previously declared in /home/users4/p/flaquedeau/www/wp-content/themes/sahifa/functions/theme-functions.php:908) in /home/users4/p/flaquedeau/www/wp-content/plugins/wordpress-23-related-posts-plugin/compatibility.php on line 48
I suspect my Sahifa Theme because it includes a related post setting (I’ve turned off) in its dashboard !
Probably a conflict between your plug in and the Sahifa related post setting “previously declared” in the function.php file
I must investigate further ??Forum: Plugins
In reply to: [WP-PageNavi] [Sahifa Theme WP-PageNavi] page 2 link to page 1I’ve FOUND myself thanks your note on Query post ??
In my .php blog page the code were wrong because of 2 query_posts:<?php query_posts('paged='.$paged.'&posts_per_page='. $cat_query); ?> <?php query_posts('cat=4'); ?>
I’ve edited the code and delete the second query :
<?php query_posts('paged='.$paged.'&posts_per_page='. '&cat=4'); ?> <?php get_template_part( 'loop', 'category' ); ?>
Good Plug in
ThanksForum: Plugins
In reply to: [WP-PageNavi] [Sahifa Theme WP-PageNavi] page 2 link to page 1sorry just have a look at your FAQ about Query post…
I think the issue is in it but where…??? same issue for these 3 pagesThe bloglist.php page (any categories of post) Query code is :
<?php query_posts('paged='.$paged.'&posts_per_page='. $cat_query); ?> <?php get_template_part( 'loop', 'category' ); ?> <?php if ($wp_query->max_num_pages > 1) tie_pagenavi(); ?>
The bloglistexterieur.php (only category exterieur ID=7) Query code is :
<?php query_posts('paged='.$paged.'&posts_per_page='. $cat_query); ?> <?php query_posts('cat=7'); ?> <?php get_template_part( 'loop', 'category' ); ?> <?php if ($wp_query->max_num_pages > 1) tie_pagenavi(); ?>
The bloglistinterieur.php (only category interieur ID=6) Query code is :
<?php query_posts('paged='.$paged.'&posts_per_page='. $cat_query); ?> <?php query_posts('cat=6'); ?> <?php get_template_part( 'loop', 'category' ); ?> <?php if ($wp_query->max_num_pages > 1) tie_pagenavi(); ?>