• I just joined wordpress.org to run my website through them but I have already created a background and header that I’d like to use with my website in wordpress. I’ve checked the codex for help and quite frankly it’s NOT user friendly and anything I have tried is not helping. I’m close to giving up wordpress but I want to try and see if I can get some help from the forums.

    I just need help with how to add my background image for all my pages and my header as well as how to remove the following:
    # Blogroll

    * Development Blog
    * Documentation
    * Plugins
    * Suggest Ideas
    * Support Forum
    * Themes
    * WordPress Planet

    # Categories:

    * No categories

    Powered by WordPress

    Slidingdoor theme by Wayne

    I would really appreciate any help I can get.

    Thanks!

Viewing 15 replies - 1 through 15 (of 20 total)
  • WordPress.org (that’s here) doesn’t ‘run’ any subscriber websites. It is the home of a piece of software called ‘WordPress’ that you download and install on your own server. WordPress.com does host blogs. Are you sure you are in the right place?

    Thread Starter 12paws

    (@12paws)

    yes it’s wordpress.com. Sorry about that, thanks for correcting me. I guess apparently I need to use FTP?

    You should really go to the WordPress.com forums for help. Not to be rude, its just that that is the best place for you to get help with a WordPress.com blog.

    Thread Starter 12paws

    (@12paws)

    It’s frustrating enough that I can’t get a straight answer from someone else so resorted to a forum that I feel is not doing the same as well. I don’t see why wordpress.org/com are any different considering they’re from the same company. Sigh. Thanks anyway.

    12paws, they are different. It isn’t the software so much as it is the hosting environment. I install/modify/manage WordPress on servers that are paid for by companies/clients. I can do just about anything I want with WordPress. I can install any plugin or theme I feel like. I can add and edit and hack until I run out of ideas. That is not the case with the blogs hosted at WordPress.com. That software is installed by WordPress.com on WordPress.com servers. What you can and cannot do in that environment is different. You will have better luck talking to people who operate in that other environment.

    To answer an earlier question, no you don’t need to use FTP. You can’t use FTP at WordPress.com.

    Thread Starter 12paws

    (@12paws)

    Hi apljdi-

    I looked in Dashboard, and HELP then checked the documentation as well as Support Forums. It takes me back to wordpress.org main page and forums so I’m assuming I have and am using wordpress.org. That being said, does that mean I can manipulate my wordpress website?

    As for FTP, I went ahead and used it and so far, I’m able to get (somehow) part of the background image as well as the header. Please see, http://embracingphotography.com/ again, I’m assuming this is wordpress.org related and therefore I can manipulate my website, is this correct? If so, what’s the EASIEST way to do so by removing the extra part I had copied off my website in the initial posting? And perhaps which theme would you recommend best that easiest to manipulate my full background image with the full header visible than the preset of that particular theme? All I’m asking is for help. I know it seems a lot but I want to so badly get this to work. Blogger is so much easier but I don’t want to use blogger for my business. Thanks again for hearing me out.

    Thread Starter 12paws

    (@12paws)

    Oh not sure if this matters or not but I can tell between the wordpress.com and wordpress.org favicons. wordpress.com is blue whereas wordpress.org is gray which is what I have.

    That being said, does that mean I can manipulate my wordpress website?

    Yes. Yes it does. Now that we’ve sorted out that you have in fact installed WordPress on your own host, it does mean that there is more you can do.

    By this– ‘# Blogroll’– I’m guessing you mean the ‘Links’ widget. Look in wp-admin->Appearance->widgets and just drag the widget out of the sidebar. You will have to edit the theme if this is hardcoded. Try the widget thing first. The ‘# Categories:’ one might also be a widget. If not, you’ll have to edit some theme files. Or maybe that is some text that shows in assosiation with each post? Either way, theme edit. With WordPress, you have to have at least one category, but you don’t have to show it anywhere if you don’t want to.

    These…

    * Development Blog
    * Documentation
    * Plugins
    * Suggest Ideas
    * Support Forum
    * Themes
    * WordPress Planet

    … look like the dashboard widgets. See if this page helps.

    The ‘WordPress’ and ‘Slidingdoor’ taglines are probably in ‘wp-content/themes/<yourthemename>/footer.php’

    Thread Starter 12paws

    (@12paws)

    you are amazing! thank you!!! i just happened to figure out the footer portion of it haha i’ll keep working on it. 🙂 Thanks again!

    Thread Starter 12paws

    (@12paws)

    apljdi-

    Hi again, I hope you’re still around 🙂

    I tried the link you suggested to remove the extra link junk etc and I can’t seem to find it/understand it what not …

    any other suggestions?

    Thanks again.

    You are given a function right at the bottom of the page. It starts with // Create the function to use in the action hook.

    What you need to do is copy that function and paste it into your theme’s functions.php. The function given removes two dashboard widgets– the lines starting with ‘unset’. You need to add similar ‘unset’ lines to remove any other widgets you don’t want. Look a paragraph or so above the functions for the string to use in the unset().

    Thread Starter 12paws

    (@12paws)

    I know this is going to sound dumb but I’ve copied that function and placed it in theme’s functions.php and because I’m not sure where to place it, as I’ve tried several locations, It’s still not working. I even tried making adjustments and that didn’t work either. I know it has to be a user error. It’s annoying to see that extra stuff on the side of my page. =) Please HELP!!! 🙂

    p.s. how do you hide “Posted in Uncategorized” after every posting? I read that it can’t be deleted.

    The function works for me. All you should have to do is paste the function somewhere between the existing <?php and ?> tags. Right at the top after <?php should word fine. The following removes everything from the Dashboard, except the left-hand nav panel.

    function example_remove_dashboard_widgets() {
            global $wp_meta_boxes;
            unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']);
            unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);
            unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']);
            unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']);
            unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);
            unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts']);
            unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);
            unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);
    }
    add_action('wp_dashboard_setup', 'example_remove_dashboard_widgets' );

    p.s. how do you hide “Posted in Uncategorized” after every posting? I read that it can’t be deleted.

    What do you mean? On the front end? That’s a simple theme edit.

    Thread Starter 12paws

    (@12paws)

    Ok I’ll try that right now and see if that works. 🙂

    THanks! as for the question. that shows up everything I put up a new posting. I rather not see the “posted in uncategorized”.

    take a look at my website again and you’ll see it.

    http://www.embracingphotography.com

    Thread Starter 12paws

    (@12paws)

    sigh i screwed up something and now i can’t access onto wordpress to make any changes. i’ll have to wait for my husband to come home and reinstall it so i can try it again. 🙁

Viewing 15 replies - 1 through 15 (of 20 total)
  • The topic ‘Frustrated – need assistance’ is closed to new replies.