kpelham
Forum Replies Created
-
Forum: Plugins
In reply to: [SEO Ultimate] [Plugin: SEO Ultimate] post seo entries all gone!Nothing. I looked in descriptions, keywords and rewriter. In modules everything is enabled except nofollow. Under plugins it is active.
(I do see some in the db using phpmyadmin _aioseop_title, _aioseop_keywords, _aioseop_description)
Forum: Plugins
In reply to: [SEO Ultimate] [Plugin: SEO Ultimate] post seo entries all gone!No. confirmed with them. No other SEO plgins installed.
Forum: Plugins
In reply to: [SEO Ultimate] [Plugin: SEO Ultimate] post seo entries all gone!Don’t think they did. I installed it fresh a couple years ago.
Forum: Plugins
In reply to: [SEO Ultimate] [Plugin: SEO Ultimate] post seo entries all gone!ok found a batch of them in the db but they are not showing when I open the post to edit.
Forum: Fixing WordPress
In reply to: Remove comment authorHey! I have a bad habit of fixing it until its broke… so here goes! LOL
<?php
if ( ! function_exists( ‘hide_comment_author’ ) ) :function hide_comment_author( $author ){
return ”;
}
add_filter( ‘get_comment_author’, ‘hide_comment_author’ );
add_filter( ‘comment_author_rss’, ‘hide_comment_author’ );endif;
?>
Forum: Fixing WordPress
In reply to: Remove comment authorAha!The first piece of code worked great. When I added the second piece to functions it made the page full browser in ie (shooooock!) and made no difference in appearance. Now it says
on June 19, 2012 at 5:18 pm
I can live with that! Thank you VERY much
Forum: Fixing WordPress
In reply to: Remove comment authoryes.. twenty eleven 3.4 child
I want the names to not show publically. Using css, they are still there…but not visible to the eye. (not good enough)
Thank you!!
Argh! That’s what I get for asking a question on the fly. In the frontend. I want to change the order they show when viewing the page as q visitor.
Forum: Plugins
In reply to: [HTML Import 2] [Plugin: HTML Import 2] Importing Static HTML PagesI had this problem too. I don’t do well with exact url’s so I uploaded a file I called t.php to the directory. On the file is:
<html><body><?php
echo getcwd();
?></body></html>Go to the page in your browser and it will give you the exact url! https://www.mysite.com/thefolder/t.php
I still had the problem. Figured out the copy/paste of the exact url added an “invisible” space at the end of the url. argh! Deleted the extra “invisibles” and taaadaaa! It works!! THANK YOU THANK YOU THANK YOU!