kellyputty
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Default Configuration of WordPressI did use the Role Manager and enabled Publish_Post for subscriber. (It needs to stay subscriber if possible) But it didn’t seem like anything changed. I just want subscribers to publish new posts.
thanks for the guidance
Forum: Fixing WordPress
In reply to: Default Configuration of WordPressI added the accessiblility “edit post” but that didn’t seem to do anything (role: subscriber). I don’t see a “write post” or write anything?
Forum: Fixing WordPress
In reply to: Changing the auto emailsperfect. thx
Forum: Fixing WordPress
In reply to: Changing the auto emailsNo it can’t be in the wp-options table. Right now I get emails that from my test blog that say [email protected] and I would like it to be from [email protected]
Forum: Fixing WordPress
In reply to: style.css problemin the themes function.php i commented out the following
function kubrick_head() {
$head = “<style type=’text/css’>\n<!–“;
$output = ”;
//if ( kubrick_header_image() ) {
//$url = kubrick_header_image_url() ;
//$output .= “#header { background: url(‘$url’) no-repeat bottom center; }\n”;
//}
//if ( false !== ( $color = kubrick_header_color() ) ) {
//$output .= “#headerimg h1 a, #headerimg h1 a:visited, #headerimg .description { color: $color; }\n”;
//}
//if ( false !== ( $display = kubrick_header_display() ) ) {
//$output .= “#headerimg { display: $display }\n”;
//}
$foot = “–></style>\n”;
if ( ” != $output )
echo $head . $output . $foot;
}//add_action(‘wp_head’, ‘kubrick_head’);
function kubrick_header_image() {
//return apply_filters(‘kubrick_header_image’, get_settings(‘kubrick_header_image’));
}That worked! Thanks for the insight.
Forum: Fixing WordPress
In reply to: Port my test blog to make a live blogOnce again you are a wonderful, smart, helpful person!
Forum: Fixing WordPress
In reply to: Port my test blog to make a live blogDoes the rest of it look correct?
Thanks again,
moshuForum: Fixing WordPress
In reply to: Port my test blog to make a live bloghttps://eecf.org/wordpress/ probably to
https://www.fgbmfamerica.com/blogI haven’t actually ported yet.
Forum: Fixing WordPress
In reply to: remove Profileadmin_header.php
Forum: Fixing WordPress
In reply to: Added a new Category but it isn’t showing upThanks again Moshu.
For everyone else, the answer to the above issue is that for many themes especially if you are modifying the default theme you need to insert a post into your new category or it won’t show up.
Have fun,
KelForum: Fixing WordPress
In reply to: Added a new Category but it isn’t showing upcontinued from above: instead of three uncategorized,blogroll, and “new category”
Forum: Fixing WordPress
In reply to: Sidebar disappears when adding commentsThanks! I wasn’t sure if I messed it up or if that was indeed the way it was supposed to be.
Forum: Fixing WordPress
In reply to: Sidebar disappears when adding commentsthanks,
KelForum: Fixing WordPress
In reply to: remove dashboardadd this to the very top of /wp-admin/index.php:
header(‘Location: post.php’);
exit();Then open up /wp-admin/menu.php and add // in front of this line:
$menu[0] = array(__(‘Dashboard’), ‘read’, ‘index.php’);
——————————
do both the above and this to get rid of dashboard and profile for non admin users
Forum: Fixing WordPress
In reply to: remove dashboardhttps://www.deepwave.net/articles/hide_dashboard/
removes the tabs, however the dashboard is still really there