doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Which database does my blog usejdingman,
What jdingman said. Here is an example:
// ** MySQL settings - You can get this info from your web host ** // /** The name of the database for WordPress */ define('DB_NAME', 'my_databaseZ_name');TheMacFeed,
Show us your loop code for this page. The code is either within the loop or may have been copied into each post in which case it simply needs to be deleted.
Forum: Fixing WordPress
In reply to: Pretty Big Problem for me I Knowkeifoffa,
Show us your loop code for the index page. It seems Google Analyticator is adding it’s script by looping it over and over. Not that this will necessarily solve the problem but it’s worth investigation.
Forum: Plugins
In reply to: [Plugin: SEO Ultimate] Plugin Incompatibility IssuesJohnLamansky,
I’ve installed several versions since this post was started and it seems that the last version played well with Google Analyticator but this latest version doesn’t again. Just so you know I have disabled all plugins and this is the only one causing the problem. The strange thing is it seemed to occur sporadically but finally locks into a state of not working well with GA.
Thanks
Forum: Fixing WordPress
In reply to: Change default URL for author linkhpatoio,
Not a huge fan of altering the core but have you looked at wp-includes/author-template.php starting on line 166.
function the_author_posts_link($deprecated = '') { global $authordata; printf( '<a href="%1$s" title="%2$s">%3$s</a>', get_author_posts_url( $authordata->ID, $authordata->user_nicename ), sprintf( __( 'Posts by %s' ), esc_attr( get_the_author() ) ), get_the_author() ); }Perhaps altering “user_nicename” to “display_name” is what you are looking for. I don’t have time to test this right now but seems like a good start. Of course there are several other locations this will need to be altered as well: link-template.php, query.php and general-template.php.
Just a thought anyway.
Forum: Fixing WordPress
In reply to: Odd URLjack1998,
You might want to also read through this instructional on www vs. no-www:
http://www.doc4design.com/articles/building-blocks-great-website/
Forum: Fixing WordPress
In reply to: <?php the_excerpt(); ?> problemsvenke,
Another option is to stop using the_excerpt and upload the limit-posts plugin. This helps to avoid writing the post twice.
Forum: Fixing WordPress
In reply to: Adding your own logo/headergoodtakeaway,
You could swap out the kubrickheader.jpg in the images folder with your own image then alter the CSS below to reflect the new .jpg name:
#header { background:#73A0C5 url(images/MYFILENAMEHERE.jpg) no-repeat center bottom; }Finally, remove this line from index.php:
<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1> <div class="description"><?php bloginfo('description'); ?></div>Forum: Fixing WordPress
In reply to: I want to hide my site until complete!!!gorillasgocrazy,
As always I second Maintenance Mode.
Forum: Fixing WordPress
In reply to: How the heck do you create you own site?good one esmi
Adiscourseontheartsandsciences,
I see you’re experiencing what every coder on earth has been going through for years. Explorer is such a pain.
Forum: Fixing WordPress
In reply to: Pages: How to beat the spacing between lines?threethings,
Are you asking how to do a line break instead of a paragraph break? If so hold down the Alt key (Option on a Mac) and then press return for a break.
Forum: Fixing WordPress
In reply to: problem with my sitemapsfifthhouse,
I recommend submitting the sitemap to Google to get things started. Google, Yahoo, Bing, Ask.com etc will simply need to know where the files are located before the plugin can kick in.
Forum: Fixing WordPress
In reply to: How to remove band behind navbarkitkaplan,
Remove this style from your styles.php. The png name may be different.
html > body #menu { background-image:url(images/transparency/black-60.png); }Forum: Fixing WordPress
In reply to: Popular postsromanticcrafts,
What version of WordPress are you currently using?
Have you tried the alternate non-widgetized version:
Placing WordPress Popular Posts in your templates
If you want to use WordPress Popular Posts somewhere else in your templates, simply place <?php get_mostpopular(); ?> where you want your listing to be displayed. Easy, huh?.