katesgasis
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Header graphic size and text underneath itPlease show some code or better yet put a link or url.
Forum: Themes and Templates
In reply to: Simple Problem with Borders (Simpler Version)try putting position:relative; in the #largecontainer
Forum: Fixing WordPress
In reply to: Sorry, but you are looking for something that isn’t hereYou can upload the original index.php to your webserver. If it doesn’t do the job, update your permalinks.
Forum: Plugins
In reply to: Custom Permalink structureAre adding rewrite rules or concatenating? return($rewrite + $keywords_rewrite) looks funny. Shouldn’t it be return($rewrite . $keywords_rewrite) ?
Forum: Installing WordPress
In reply to: You dont have permission to do that.What did you use to backup your db and how did you install your backup? Because if you use fantastico to install wp the 2nd time, it created a new database with new values in the usermeta able. Any new user that is entered into that table will have a default permission of subscriber.
Forum: Fixing WordPress
In reply to: How the change the “From” field in e-mail messagesThis page will help you. http://codex.wordpress.org/Pluggable_Functions
Forum: Plugins
In reply to: Sideblog Plugin v3.0Fixed it, thanks.
Forum: Fixing WordPress
In reply to: Search FeatureIt doesn’t include the comments.
Forum: Plugins
In reply to: Not letting subscribers use the admin backofficeCreate a plugin. The example below will show the Author & Users page under Profiles Menu only if you are the admin. Check in the admin/menu.php for the menu array you wish to restrict. Please do not hack the core files. Do everything in a plugin.
function restricted_pages(){
global $submenu;
if(!current_user_can(‘level_10’)){
unset($submenu[‘profile.php’][10]);
}}
add_action(‘admin_head’,’restricted_pages’);
Forum: Fixing WordPress
In reply to: Permalink Structure ErrorDo you have mod_rewrite on? It seems that your webserver doesn’t know where to point the request.
Forum: Fixing WordPress
In reply to: Changing String in All PostsYou need to have a plugin to do that. Use regular expression to loop over the posts in a function called by a post_content hook.
Forum: Themes and Templates
In reply to: WP with members area requires custom login and signup formOpps and then comment out
header(‘Content-Type: ‘.get_bloginfo(‘html_type’).’; charset=’.get_bloginfo(‘charset’));Forum: Themes and Templates
In reply to: WP with members area requires custom login and signup formDo you want something like this http://2talkabout.com/Honda/wp-login.php?
Just add require(‘./wp-blog-header.php’); Example below.
require( dirname(__FILE__) . ‘/wp-config.php’ );
require(‘./wp-blog-header.php’);
$action = $_REQUEST[‘action’];
$error = ”;Forum: Fixing WordPress
In reply to: Adding non-Page buttons/links to headerNore there is no easy way but to open your theme’s header.php and add <li class=”page_item”>Gallery2.
If your files are writable by the server you can do this in your admin->presentation->theme editor
Forum: Installing WordPress
In reply to: Upgrade script gives blanco webpageYou forgot to upload other wp files in the root directory.