msdana
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Landing Page creates an Extra TabI would delete the entire plugin folder from your FTP, refresh your plugins page, and re-upload the folder. It’s possible that something went wacky (though unlikely).
I didn’t see that you were using 2.8. I haven’t upgraded yet, there could be a compatibility issue.
Here’s another plugin you can try also.
Forum: Themes and Templates
In reply to: Landing Page creates an Extra TabHi Breanna,
I recommend the Exclude Pages from navigation plugin. Looks like it will fit your needs.
Hope that helps!
Forum: Fixing WordPress
In reply to: Add 2 Extra Buttons in Main Navigation HeaderThat is interesting, you added the CSS part that I included to your style.css file, right? Let me know if you can’t figure it out
Forum: Fixing WordPress
In reply to: Add 2 Extra Buttons in Main Navigation HeaderOk, try this…
Change the code I gave you to this:
<li><span class="advertiser"><a href="<?php echo get_permalink(2); ?>" title="<?php _e('Advertisers'); ?>"><?php _e('Advertisers'); ?></a></span></li> <li><span class="business"><a href="<?php echo get_permalink(3); ?>" title="<?php _e('Businesses'); ?>"><?php _e('Businesses'); ?></a></span></li>
Then add the following to your CSS:
#menu li span.advertiser { background: url(images/bg/mail.gif) no-repeat; } #menu li span.business { background: url(images/bg/mail.gif) no-repeat; }
Don’t forget to change the numbers in parenthesis (2) and (3) to the correct page ID.
Forum: Fixing WordPress
In reply to: How to Delete Home Page IconLOL, you need to go to https://en.gravatar.com/ and create an account for your pic to show up here ??
If you want a little (free) help, send me an email at labsxtwo (at) gmail (dot) com.
Forum: Fixing WordPress
In reply to: Stop PermalinksSorry if I wasn’t clear. For each post, you need to disallow indexing.
User-Agent: * Disallow: /your_post_file_name_here
Perhaps someone else will come along and explain this better. I’ve never encountered this exact scenario before (i.e. not wanting single posts to show or be indexed).
Forum: Fixing WordPress
In reply to: How to Delete Home Page IconAre you coding the movies page to show just movies posts? and tvshows to show just tvshows posts?
Forum: Fixing WordPress
In reply to: How to Delete Home Page IconIt isn’t the header.php file that is in the theme folder, there is a header.php file in the sub-folder called “templates”. Check line 29.
Forum: Fixing WordPress
In reply to: Change API key for AkismetDid you try changing it under Plugins > Akismet Configuration?
Version 2.7 allows me to update my Akismet key that way…2.8 should do the same. Haven’t upgraded yet.
Forum: Fixing WordPress
In reply to: How to Delete Home Page IconYou need to edit the header.php that is located in the templates folder under your theme.
Remove this code:
<li class="<?php echo($home_menu); ?>"><a class="home" title="<?php _e('Home', 'inove'); ?>" href="<?php echo get_settings('home'); ?>/"><?php _e('Home', 'inove'); ?></a></li>
As for Movies being your home page, you need to select that page in Settings > Reading option
Hope that helps!
Forum: Plugins
In reply to: sharing articles from other websitesThey probably cut-and-paste. I don’t know of an automated way to do it.
Forum: Fixing WordPress
In reply to: Add 2 Extra Buttons in Main Navigation HeaderIt looks like your theme has those links hardcoded into the header.php file.
I would do put the following code:
<li><a href="<?php echo get_permalink(2); ?>" title="<?php _e('Advertisers'); ?>"><?php _e('Advertisers'); ?></a></li> <li><a href="<?php echo get_permalink(3); ?>" title="<?php _e('Businesses'); ?>"><?php _e('Businesses'); ?></a></li>
AFTER this code in your header.php file:
<li><span class="contact"><a href="#">Contact</a></span></li>
The items “should” wrap to the next line. I would do it a little differently, but that’s hard to explain in writing ??
Let me know…
Forum: Fixing WordPress
In reply to: Add 2 Extra Buttons in Main Navigation HeaderYou would need to edit the header.php file in your theme.
Without seeing your site, it’s hard to explain but you want to do something like this:
<ul> <li><a href="<?php echo get_permalink(2); ?>" title="<?php _e('Advertisers'); ?>"><?php _e('Advertisers'); ?></a></li> <li><a href="<?php echo get_permalink(3); ?>" title="<?php _e('Businesses'); ?>"><?php _e('Businesses'); ?></a></li>
Replace the 2 with the Advertisers page ID, etc. Then you want to style the menu in your CSS.
Hope that helps!
Forum: Fixing WordPress
In reply to: Stop PermalinksYou mean you don’t want the single pages to show up in search engines?
You could add the following to your robots.txt file, if you have one (or create one):
User-Agent: * Disallow: /FILE-NAME-HERE
Forum: Plugins
In reply to: adding multiple instances of widgetFrom the author’s comments:
You can have more than one widget. what you need to is rename the plugin name and the php file name. and it will work. regards daya
Have you tried this?