doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comment font needs changed and comments are jumbled?dbcjpc,
What theme is this? Can you post a link to where you found it?
Forum: Fixing WordPress
In reply to: Delete calender icon on posts?IchHeisseW,
Can you include a link to your site.
Forum: Everything else WordPress
In reply to: Where to sell advertising?cillian,
Have you considered buysellads.com?
Forum: Fixing WordPress
In reply to: WP 2.8.4 – Avatar option in profile missingneosin,
This is typically done through the use of Gravatar or another service. You’re saying in previous WordPress versions you were physically assigning an avatar to a user profile?
Forum: Fixing WordPress
In reply to: posts linking to home pageRocknation,
Same results as esmi, is there something more specific you are referring to?
Forum: Fixing WordPress
In reply to: Can’t get plugins to workchrishawbaker,
Specifically which plugins are you having trouble with? Typically the plugin page in WordPress Extend ( see top of this page ) will have an installation guide.
Forum: Fixing WordPress
In reply to: WordPress page headings all formatted left.dmagyar,
I’m not seeing the problem, is this browser specific or have you worked on the site since this post?
cpkid2,
There is’nt one provided for in the WordPress codex if that is what you are after. Lester Chan’s plugin is a perfect solution.
Forum: Fixing WordPress
In reply to: gap under navigationshaaawty,
You have an extended height on your “header” and your “content” has a padding-top of 30px. Reduce these two numbers and your problem is fixed.
#header { height: 360px; } #content { padding: 0 0 15px; }Forum: Fixing WordPress
In reply to: tiny mce advanced with real CSS in the Backend?sepp88,
This documentation note may be targeted toward the Style Dropdown. This is altered by changing the “tadv-mce.css” file. Once this file is uploaded it may take a few hard page reloads to see the changes in the dropdown.
Forum: Fixing WordPress
In reply to: How to move a plugin outside from the “settings”tomtom87,
Open the currentstatus.php file and look for the following function on line 34:
function CurrentStatus_Admin() { add_options_page('CurrentStatus Plugin Options', 'CurrentStatus', 8, __FILE__, 'CurrentStatus_Options'); }Change “8” to the more current WordPress role option “level_5” which is targeted toward Editors ( see: http://codex.wordpress.org/Roles_and_Capabilities ).
function CurrentStatus_Admin() { add_options_page('CurrentStatus Plugin Options', 'CurrentStatus', level_5, __FILE__, 'CurrentStatus_Options'); }You may want to adjust where the submenu is displayed by altering add_options_page as well ( see: http://codex.wordpress.org/Adding_Administration_Menus )
Forum: Fixing WordPress
In reply to: h1 conditional hack makes single post display wierdbbrody,
Try the seo-ultimate plugin which provides this feature and a whole lot more: http://www.seodesignsolutions.com/wordpress-seo/
Forum: Fixing WordPress
In reply to: How to manually add a javascript filesouthstrandbikes,
It is also possible to use the Google service:
<script src="http://www.google.com/jsapi"></script> <script> google.load("jquery", "1"); </script>Forum: Fixing WordPress
In reply to: Sidebar Ads Already in Themektankers,
Include a link to your site and we will take a look.
Forum: Fixing WordPress
In reply to: How do I put author profile info inside the loop?geezerd,
WordPress Template Tags: http://codex.wordpress.org/Template_Tags/the_author_meta look toward the footer for more on the author.