iddo12
Forum Replies Created
-
Nobody has any ideas?
As far as I know IP address should lead to the domain right?anybody? ideas?
Forum: Plugins
In reply to: Best way to uninstall a pluginm… do you have any idea if wordpress 2.8 or 3 (or any future version) is going to include a better/smarter way of generally handling plugin settings?
Forum: Plugins
In reply to: Best way to uninstall a pluginI see.
I have to say that a lot of the operation of wordpress seems very unintuitive. for example – some plugin are configured through the system “folder” and others through the settings (while still others have a link right from the plugin section and you even have a few that have there own icons) – too me this gives a headache – why isn’t there one organized place to configure every plugin (and remove it)?
Forum: Fixing WordPress
In reply to: Fatal error: can’t get into my userThank you so much – worked great – your videos are extremely useful.
I really have to ask – how come wordpress allow for such a thing to happen in the first place – the way I see it the internal interface should be accessible no matter what you do to the site and there should always be an option to “undo” the last thing you did (but than again I am not a programmer…).
2 other points:
1. I keep getting these two massages on the top of my admin panel:Advertising Manager has been upgraded from Adsense Manager. Enable auto optimisation? (RECOMMENDED)
AdSense Manager is now being developed as Advertising Manager for WordPress 2.5 and up. It is recommended you download and install today!How do I resolve this (this probobly had something to do with my recent problem as well as I now have 2 plugins for adsense – how do I uninstall a plugin (maybe I will simply uninstall both of them and install a new version.
2. I still need help configuring the adsense but let solve 1 first.
Again many thanks,
IddoForum: Themes and Templates
In reply to: clickable header in inove templateThank you – I will do that 🙂
Forum: Themes and Templates
In reply to: clickable header in inove templatesorry for linking the two sntences this isn’t exactly WYSIWYG.
This is the site.Forum: Themes and Templates
In reply to: clickable header in inove templateWow!
Not sure what you have done but it works – thank you so much.
Here you can see it working:
From my perspective this was the last problem (I just need to start adding much more content now) – maybe I will open a different post and ask if there are any other suggestions/problems people see on the site.
P.S. I really hope this will help other people solve this problem as well (why or why this isn’t built in into wordpress or at least as a plug-in which simply let you upload your own clickble header…).
Forum: Themes and Templates
In reply to: clickable header in inove templateI am a newbie so maybe everything is massed up – here is my entire index.php:
<?php get_header(); ?> <?php $options = get_option('inove_options'); ?> <?php if ($options['notice'] && $options['notice_content']) : ?> <div class="post" id="notice"> <div class="content"> <?php echo($options['notice_content']); ?> <div class="fixed"></div> </div> </div> <?php endif; ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); update_post_caches($posts); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><a class="title" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2> <div class="info"> <span class="date"><?php the_time(__('F jS, Y', 'inove')) ?></span> <div class="act"> <span class="comments"><?php comments_popup_link(__('No comments', 'inove'), __('1 comment', 'inove'), __('% comments', 'inove')); ?></span> <?php edit_post_link(__('Edit', 'inove'), '<span class="editpost">', '</span>'); ?> <div class="fixed"></div> </div> <div class="fixed"></div> </div> <div class="content"> <?php the_content(__('Read more...', 'inove')); ?> <div class="fixed"></div> </div> <div class="under"> <?php if ($options['author']) : ?><span class="author"><?php _e('Author: ', 'inove'); ?></span><span><?php the_author_posts_link(); ?></span><?php endif; ?> <?php if ($options['categories']) : ?><span class="categories"><?php _e('Categories: ', 'inove'); ?></span><span><?php the_category(', '); ?></span><?php endif; ?> <?php if ($options['tags']) : ?><span class="tags"><?php _e('Tags: ', 'inove'); ?></span><span><?php the_tags('', ', ', ''); ?></span><?php endif; ?> </div> </div> <?php endwhile; ?> <?php else : ?> <div class="errorbox"> <?php _e('Sorry, no posts matched your criteria.', 'inove'); ?> </div> <?php endif; ?> <div id="pagenavi"> <?php if(function_exists('wp_pagenavi')) : ?> <?php wp_pagenavi() ?> <?php else : ?> <span class="newer"><?php previous_posts_link(__('Newer Entries', 'inove')); ?></span> <span class="older"><?php next_posts_link(__('Older Entries', 'inove')); ?></span> <?php endif; ?> <div class="fixed"></div> </div> <?php get_footer(); ?>Forum: Themes and Templates
In reply to: clickable header in inove templateheader.php
is that o.k?
Forum: Themes and Templates
In reply to: clickable header in inove templateHi abovegrnd,
Well I changed it just the way you said – it did fix the dual header but now I am missing the entire search bar (with the home page and sections etc.).Ideas?
Forum: Themes and Templates
In reply to: clickable header in inove templateHi Fingaro,
First thanks for the quick response – I read a few post you did before and I can see you helped a lot of people.I watched the video and did what I think was mentioned in it and this is what happened:
http://zebradomain.com/So now I have the header twice but the clicable one is not in the right place…
My header.php file looks completely different than anything on the video so I am also not sure where to put the line I need to insert – it looks like this now:
<?php include('templates/start.php'); ?> <!-- container START --> <div id="container"> <?php include('templates/header.php'); ?> <!-- content START --> <div id="content"> <!-- main START --> <div id="main"> <div id="header" onclick="location.href='http://www.zebradomain.com/';" style="cursor: pointer;" title="home"></div>Any ideas?