tedtalk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Redirect pageI’m asking a question. I must have not put it on there, it is “What should I do?”
Forum: Fixing WordPress
In reply to: Intro/welcome pageI don’t understand the tutorial at http://www.chrisjdavis.org/2005/06/13/secrets-pt-3/. I just simply want to make an intro page for my website (powered by WordPress).
Forum: Fixing WordPress
In reply to: Intro/welcome pageI just named index.php to index2.php (wordpress main page) and did the intro page..everything works.
Forum: Fixing WordPress
In reply to: Page CodeForum: Fixing WordPress
In reply to: Page CodeThe code is in the page they attached for me..no need to install some special things, or add that is.
Forum: Fixing WordPress
In reply to: Page CodeMarketing as in: Tuneup/Optimization (Includes Professional Keyword Research, Search Engine Tune-Up, Deluxe Search Engine Submission and 5,000 Guaranteed Visitors)….
..The code is supposed to be getting me in search engines, etc.
Forum: Fixing WordPress
In reply to: RSS, Comments RSS, Atom Buttonspodz,
i can get to the feed, but after taking out “feed:” in feed:http://www.tedtalk.com/?feed=rss2
feed:http://www.tedtalk.com/?feed=comments-rss2
feed:http://www.tedtalk.com/?feed=atomForum: Fixing WordPress
In reply to: Disable recording of IPs in postsWould I save the following plugin code, Hide IP in Admin, as noip.php and upload it to my plugins folder?
<?php
/*
Plugin Name: Hide IP in Admin
Plugin URI: http://wordpress.org/support/topic/37363
Description: This plugin will prevent Comment IP addresses from being displayed in your admin panels.
Author: WP-Forums
Author URI: http://wordpress.org/support/
Version: 0.1
*/function hide_ip($ip) {
return ( strstr($_SERVER[‘PHP_SELF’], ‘wp-admin/’) ) ? ‘hidden’ : $ip;
}add_filter(‘get_comment_author_IP’, ‘hide_ip’);
?>Forum: Fixing WordPress
In reply to: Forms on WPHow would I customize the form (add fields, take away)? If I cant, is there a form plugin that will let me?
Forum: Fixing WordPress
In reply to: Forms on WPThanks!