doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Getting these deprecated notices after upgradeplichtenberg,
Try deactivating your plugins and see if the issue persists.
Forum: Fixing WordPress
In reply to: How to remove posted date and by…moserengineering,
Open the functions.php file and look for the following code. Just comment it out in case you want it later by using
/*and*/.if ( ! function_exists( 'twentyten_posted_on' ) ) : /** * Prints HTML with meta information for the current post—date/time and author. * * @since Twenty Ten 1.0 */ function twentyten_posted_on() { printf( __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'twentyten' ), 'meta-prep meta-prep-author', sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a>', get_permalink(), esc_attr( get_the_time() ), get_the_date() ), sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>', get_author_posts_url( get_the_author_meta( 'ID' ) ), sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ), get_the_author() ) ); } endif;Forum: Fixing WordPress
In reply to: Hiding table border in Arras themedillis,
It appears as though there is a little confusion between inline styles and css.
Try this:
<td style=”background-color: #FFF; border: none;” width=288 valign=”top”>Forum: Fixing WordPress
In reply to: Posts and commentsdjnthando,
Please send a link to you site and check that the comments code is linked to within the single.php.
Forum: Fixing WordPress
In reply to: WordPress – Blankv3r,
You might try re-doing the restore and see if that helps.
Forum: Fixing WordPress
In reply to: Google sitemapsPalabrapresser,
Is the site url to the sitemap correct?
Forum: Fixing WordPress
In reply to: New To WordPress- Help Q'sCapnSkye,
In case you don’t know how to set permissions. Once logged in via FTP, right-click on the folder needing permissions changes and select ‘get info’ then check all the boxes for 777.
Forum: Fixing WordPress
In reply to: Fontsdippyjones,
esmi is right, we need more specifics. Otherwise scan through your style.css file and look for the font names such as Times, Verdana, Lucida, Trebuchet, etc. and change them to something else.
Forum: Fixing WordPress
In reply to: Changing PermaLinks after blog has gone live?JVRudnick,
You would need to do some redirects to avoid the 404’s from any other incoming links. Take a look at this: http://www.tubetorial.com/change-wordpress-blog-links-without-breaking-them/
Forum: Fixing WordPress
In reply to: Title appears outside the title boxkriss_kringle,
Check the Settings > General > Site Title are and see if it is all one word there as well.
Forum: Fixing WordPress
In reply to: Getting these deprecated notices after upgradeplichtenberg,
Check your functions.php page and look for the register bits and print the here for us to see.
Forum: Fixing WordPress
In reply to: Author Name – TDO Mini FormsWISIIC,
Why not add a custom field within the WordPress post? Should be rather simple and straightforward. Let me know if you need further assistance.
Forum: Fixing WordPress
In reply to: I want to cut before 100 charactors of content of per postjammychen,
Try this plugin: http://www.doc4design.com/plugins/limit-post/
Forum: Fixing WordPress
In reply to: gettin rid of tagline in headerseonghoon52,
I’m showing this is working in Firefox. If you’re still having trouble try this:
#slogan-text { display: none; }Forum: Fixing WordPress
In reply to: homepage redirecting to deleted pagesunflowermom,
Check that the page isn’t still in the dashboard trash. Let me know if it has resolved once permanently deleted.