Tom Morton
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: changing appearance of site title in twenty ten@nickwestwood, what do you mean?
If you are talking about the CSS, open the twentyten style.css file and search for “Site-title”. Then copy/paste the css above in there.
If you are asking where the actual site title is located, its in header.php. Just do a search for site-title again and you’ll find the code I mentioned above.
Forum: Fixing WordPress
In reply to: www. not displaying in search resultsI’m not a Google SEO Expert, but did you submit your site via google without the WWW?
Also, why are the WWW so important?
What kind of SEO Plugins are you using? Those also be causing that.
Forum: Fixing WordPress
In reply to: How to – divide and rate opinions in WordPress?There are various plugins for voting.
http://blog.jalenack.com/archives/democracy/
Those are two pretty good plugins, but search “Voting” or “Polling” plugin on the wordpress plugins page.
Forum: Fixing WordPress
In reply to: changing appearance of site title in twenty tenI think you will have to manually enter in the name of your site in the header.php file.
Open header.php and find this:
<span> <a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a> </span>And change the “bloginfo(‘name’)” to the name of your site, like this:
<span> <a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><span class="red">Amazing</span><span class="blue">blogname</span></a> </span>I’ve wrapped different parts of the word in different span tags, one labeled red and the other labeled blue. Then my CSS would look like this:
#site-title span.red{color:red;} #site-title span.blue{color:blue}Not tested, but it should work!
Forum: Fixing WordPress
In reply to: Assigning Specific ID's to Posts?But what are you trying to achieve?
Forum: Fixing WordPress
In reply to: Assigning Specific ID's to Posts?Pretty sure wordpress does that on its own, why do you want to do this? We may be able to find a different solution.
Forum: Fixing WordPress
In reply to: Private AttachmentsHow are they viewing those files? Are you talking about a direct link, or about an attachment page?
Forum: Fixing WordPress
In reply to: Ads Issue!Are you experienced in modifying theme files?
http://www.wprecipes.com/how-to-insert-adsense-after-the-first-post
Quick search turned this up, gotta love Wp Recipes and Smashing Magazine!
Forum: Fixing WordPress
In reply to: image alignment not working with child theme of twentytenNot sure what you are trying to do, give me more of an idea of what it should look like.
Forum: Fixing WordPress
In reply to: Super Admin User LevelWell I created a workaround.
I figured, for now, my Superadmin Account will be the only one that is accessing the sites, and all other users can have that page hidden. So I did the following:
function remove_the_dashboard () { global $current_user; get_currentuserinfo(); //Get Current Userinfo $user = $current_user->ID; //Find Users ID if ($user == '1') { //if the users ID is Tom's id (1) give him everything return; } else { //everyone else, remove the "My Sites" panel global $menu, $submenu, $user_ID; unset($submenu['index.php'][5]); // Removes 'My Sites'. } } add_action('admin_menu', 'remove_the_dashboard');A few Steps:
1. Check Userinfo
2. Get the Current User ID
3. Match it to my ID (1, in this case). If it is 1, then give me the Admin menu.
4. If it is not 1, remove the “my Sites” panel.A simple workaround, just won’t work if you have multiple superadmins. In that case, you would add their ID’s as well.
Resolved!
Forum: Fixing WordPress
In reply to: Image is on Right in Dashboard but on left on site???Hey All,
Let us know if you found a solution or what you are doing, and be sure to mark the topic “resolved” if it is!
Thanks,
Tom
Forum: Fixing WordPress
In reply to: Image is on Right in Dashboard but on left on site???Alright, I’ve taken a look around and I’m pretty sure the theme is modifying how the image is shown. I activated the default theme and saw that everything was working fine, so that narrows it down to something with the theme.
If you type in “img class=”test” it does not reflect that on the frontend when you save it. It still shows “img class=”alignleft”. This means the template is handling how the images are displayed.
I looked at the “editor” and saw that there are “theme-option.php” files that I cannot access without FTP. Furthermore, I went to the original Magazine Site (where you got your theme) and their images are handled a completely different way. Did you modify how the images are displayed in the code?
Forum: Fixing WordPress
In reply to: Image is on Right in Dashboard but on left on site???Copy and paste the code that you have in the post
Forum: Fixing WordPress
In reply to: Image is on Right in Dashboard but on left on site???Do you see the two tabs? I’ve highlighted the HTML tab. You can also visit my site and fire an email over with user credentials and I’ll login and look.
Twmorton.com
Forum: Fixing WordPress
In reply to: Image is on Right in Dashboard but on left on site???You have a css class (class=”alignleft”) that is making the image float left. I looked at your CSS file, and you have a class that is “alignright”.
Go to the editor, enter HTML mode and find the image. Change the class to alignright and everything should line up.