transpersonal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to display the tag cloud in list formatThanks a lot esmi it worked! Any idea how the tags assigned to the most popular posts can be shown at the top and those assigned to less popular posts shown towards the bottom? Or is that plugin territory…
Forum: Fixing WordPress
In reply to: how to upgrade from 2.6.1 to 2.8.2First backup your wordpress files and database in case anything goes wrong. Then go to tools >> upgrade and click upgrade automatically. wordpress will take care of the rest.
Forum: Fixing WordPress
In reply to: Add custom image header to wordpress?Oops I meant go to your style.css file to find those bits of code not header.php.
Forum: Fixing WordPress
In reply to: Add custom image header to wordpress?If you know CSS then just upload the custom header to your server and then go to your header.php file in the theme editor. Find these lines:
#header { -moz-background-clip:border; -moz-background-inline-policy:continuous; -moz-background-origin:padding; background:#1E1B1A none repeat scroll 0 0; border-bottom:5px solid #383332; padding:0 0 15px; }Replace this line:
background:#1E1B1A none repeat scroll 0 0;with:
background: url('PATH/TO/YOUR/IMAGE.JPG');You may need to add a height and width property to #header depending on the size of your image.
Forum: Fixing WordPress
In reply to: Active menu page tab not highlightedAlso put this in your stylesheet and style to your liking:
.current-cat { background #f00; }Forum: Fixing WordPress
In reply to: Active menu page tab not highlightedThis is what I use in my theme for that. Not sure it will work on yours but you can try it:
<li<?php if(!is_category() && !is_page() && !is_single()) { ?> class="current-cat"<?php } ?>></li>Forum: Fixing WordPress
In reply to: Switching “Home” link to say “HOME”Try what cais said. I looked at your style sheet and it doesn’t seem to have the text-transform property so the capital letters are probably from header.php. Also you may want to seriously consider decreasing the number of posts to show on the home page. It took me ages to load your site!
Forum: Fixing WordPress
In reply to: Tag Archive Pagination…It looks like your themes uses Lester Chan’s page naviplugin due to this line:
<?php if (function_exists('wp_pagenavi')) { ?><?php wp_pagenavi(); ?>Do you have that plugin activated?
Also if you don’t have enough posts under a tag the pagination won’t appear because there is no need for it to. For example if for the tag “Dog” and have three posts under it. And in your Settings >> Reading you have set atleast 10 posts to show per page then until you have 11 posts under the “Dog” tag – no pagination will appear. If you want to check if this is the case, go to settings >> reading and type 1 for “Blog pages show at most” and then click on a tag that you have at least two or more posts ascribed to. The pagination should be there now.
Forum: Fixing WordPress
In reply to: Dropdown menu without pluginparticlepat Try this:
<ul id="navNew" class="dropdown dropdown-horizontal"> <li id="n-shows"><a href="#">Pages</a> <ul> <li><?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?></li> </ul> </li> </ul> </ul> </ul>Keep the CSS the same.
Forum: Fixing WordPress
In reply to: How do I add Dofollow to my posts links?Don’t know if this will work but try pressing Control plus F to bring up the find field. Type therein the words no follow and search on your single.php, page.php, etc. If anything turns up paste the code here.
If the no follow is being brought up due to a functions.php code in your theme, then I wouldn’t know what to do there.
Forum: Fixing WordPress
In reply to: How do I add Dofollow to my posts links?The default is do follow, I’m pretty sure if the link doesn’t have anything it’s do follow. Maybe it’s a feature of the theme you’re using that adds no follow – just a thought?
Forum: Fixing WordPress
In reply to: Dropdown menu without pluginOops, maybe I should have read your post fully, I see now that you wanted the newly created posts to automatically reflect in the menu without having to manually add them to the code (Which is what the code I gave above cannot do). I actually use that code only as a categories drop down so I don;t have that issue. Maybe someone has the answer to your question…
Forum: Fixing WordPress
In reply to: Dropdown menu without pluginI don’t get all the plugins for this purpose either, there’s no need for them. Here’s what I use:
<ul id="navNew" class="dropdown dropdown-horizontal"> <li id="n-shows"><a href="#">Something</a> <ul> <li><a href="#">Item 1</a></li> <li><a href="#">Item 2</a></li> <li><a href="#">Item 3</a></li> <li><a href="#">Item 4</a></li> <li><a href="#">Item 5</a></li> </ul> </li> </ul> </ul> </ul>And the CSS:
ul.dropdown ul a { width: 133px; } ul.dropdown, ul.dropdown li, ul.dropdown ul { list-style: none; margin: 0; padding: 0; } ul.dropdown { position: relative; z-index: 597; float: left; } ul.dropdown li { float: left; line-height: 1.3em; vertical-align: middle; zoom: 1; } ul.dropdown li.hover, ul.dropdown li:hover { position: relative; z-index: 599; cursor: default; } ul.dropdown ul { visibility: hidden; position: absolute; top: 100%; left: 0; z-index: 598; width: 100%; } ul.dropdown ul li { float: none; } ul.dropdown ul ul { top: 1px; left: 99%; } ul.dropdown li:hover > ul { visibility: visible; } ul.dropdown li.rtl ul { top: 100%; right: 0; left: auto; } ul.dropdown li.rtl ul ul { top: 1px; right: 99%; left: auto; } ul.dropdown li a, ul.dropdown *.dir { border-style: solid; border: 1px; border-color: #404040; background: url(styles/default/img/pigs.png) repeat-x; } /* Without this the drop down is not marginalized to the left */ ul.dropdown ul { left: auto; right: 0; width: 150px; margin-top: -1px; border-top: 1px solid #1a1a1a; border-left: solid 1px #4c4c4c; font:; }Forum: Fixing WordPress
In reply to: I’m being blackmailed by Web Designer/AdministratorNext time work out a payment plan beforehand, like the exact deadline for when the money can be paid. In this case the designer himself is a victim, after all cash flow is very important to running a business. That been said, did you keep backups of your database and wordpress files from before they were hacked by the designer?
Forum: Fixing WordPress
In reply to: Moving DomainI have the same question, hope someone has the answer.