Wendihihihi
Forum Replies Created
-
Forum: Plugins
In reply to: [Analytics Reduce Bounce Rate] Compatible with All in One SEO Pack?OK. Thanks
Forum: Reviews
In reply to: [Analytics Reduce Bounce Rate] Produces not the real Analytic statsOK
Forum: Plugins
In reply to: [SyntaxHighlighter Evolved] Copy button?No, neither in version 2 or 3 you have a button to copy the selected line. You must have seen it with another highlighter plugin.
Probably this one: https://www.ads-software.com/plugins/crayon-syntax-highlighter/
Suggestion:
404 error log. We now have the option to delete all 404s in one go. Please add check boxes so we can choose which one to delete and which ones stay for further monitoring.Thanks
Hi,
Question already asked 6 months ago.
https://www.ads-software.com/support/topic/search-query-2?replies=1
Better use a different plugin. No support with this on and very slow loading.
Forum: Plugins
In reply to: [Related Posts for WordPress] Is this plugin still supported?No
Forum: Fixing WordPress
In reply to: Sort comments in wordpress without using pluginsAnswer 1: No
Answer 2: NoForum: Plugins
In reply to: [Plugin: Keyword Statistics] Option to set description for homepage manuallySounds good. Thanks!
Forum: Plugins
In reply to: [Plugin: Keyword Statistics] BUG ALERTNOT A BUG ANYMORE FROM VERSION 1.3.4!!!
Forum: Plugins
In reply to: Yoast RemoveDone, in all my plugins, not in the options page of the plugins but on the widget itself, with its own setting, so you only have to do it once and not once for each plugin of mine you have installed.
Does anyone know where I can do this exactly in Analytics?
Forum: Fixing WordPress
In reply to: ‘endif’ for 2 ‘if’ functions but not wanting to end the first ‘if’Thanks for your reply.
This morning I woke up fresh and added the
$wp_query->is_home = true; ?>
. Suddenly it worked. It is a bit strange though, because according to me every page should get the homepage sidebar now, but it’s not. Well, I’m not going to touch it anymore. It works!Forum: Fixing WordPress
In reply to: ‘endif’ for 2 ‘if’ functions but not wanting to end the first ‘if’I started from scratch and created sidebar.php, sidebar-home.php and sidebar-other.php
It almost works except is_home is not working. I have tested it with
<?php $wp_query->is_home = true; ?>
and it nicely shows up, on every page of course… This is not what I want.It somehow doesn’t get the message that it’s the homepage.
Tried out is_front_page, but this is not what I want.
All the plugins are deactivated.Any idea?
These are the files.
sidebar.php<?php if ( is_home() ) { ?> <?php include (TEMPLATEPATH . '/sidebar-home.php'); ?> <?php } else { ?> <?php include (TEMPLATEPATH . '/sidebar-other.php'); ?> <?php }
sidebar-home.php
<div id="mainright"> <div id="sidebar" class="clearblock"> <ul> <li id="sidebartabs"> <?php include (TEMPLATEPATH . "/sidebartabs.php"); ?> </li> <li> <?php include (TEMPLATEPATH . '/sponsors.php'); ?> </li> <?php if ( function_exists('dynamic_sidebar') || dynamic_sidebar('Home Sidebar') ) : ?> <?php endif; ?> </ul> </div> </div>
sidebar-other.php
<div id="mainright"> <div id="sidebar" class="clearblock"> <ul> <li id="sidebartabs"> <?php include (TEMPLATEPATH . "/sidebartabs.php"); ?> </li> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Other Pages Sidebar') ) : ?> <?php endif; ?> </ul> </div> </div>
Forum: Fixing WordPress
In reply to: ‘endif’ for 2 ‘if’ functions but not wanting to end the first ‘if’Ya, I think you are right; I didn’t make myself clear enough. This is exactly what I want:
if is_home is true
do a couple of includes
AND include a dynamic sidebar for widgetselse
create another couple of includes
AND include a dynamic sidebar for widgetsI hope this is clearer.
Thanks for your replies
Forum: Fixing WordPress
In reply to: ‘endif’ for 2 ‘if’ functions but not wanting to end the first ‘if’I don’t get it. Why does
<?php } else { ?>
not close the is_home?How must I change it in order to make it work?
Forum: Fixing WordPress
In reply to: How to make the output of wp_get_archives clickable links?But this does…
<div class="sidebox"> <li><?php wp_get_archives('type=monthly&show_post_count=1'); ?></li> </div>