doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How many ping send wordpress ?Marcomail,
Are you not wanting to send a ping upon a post update?
Forum: Fixing WordPress
In reply to: please a little help!alekso,
Can you direct us to the theme you are using so we can take a look at the code?
Thanks
Forum: Fixing WordPress
In reply to: front page problemtorinschmitt,
The root is defaulting to the about us page. Double check your settings. The home page needs to be the Main Index Page ( index.php ) in order to be seen as the root home page.
Forum: Fixing WordPress
In reply to: Can I get a DIV auto inserted around IMG instead of Pjohnasp,
Are you inserting the images directly into the TinyMCE Editor? Removal of the <p> tag will also affect the paragraphs themselves. What you want to do is create a custom field and ask the user to type in the name of the image file. Something such as: myImage.jpg then add the proper div coding to your theme files. Here is an example:
<?php if( get_post_meta($post->ID, 'customFieldName', true) ) { ?> <div class="image"> <img src="<?php bloginfo('url'); ?>/wp-content/uploads/<?php echo get_post_meta($post->ID, 'customFieldName', $single=true) ?>"> </div> <?php } ?>The above code allows for the possibility that an image might not exist because we are checking for the image prior to publishing the code.
Forum: Fixing WordPress
In reply to: please a little help!alekso,
Install the wp-page-numbers plugin: http://wordpress.org/extend/plugins/wp-page-numbers/ This should give you what you are looking for. For an example: http://www.doc4design.com look under Web or Identities then toward the bottom of the page.
Forum: Fixing WordPress
In reply to: “More” Button vs. “More” as comment….nickaster,
Seems odd you would manually type the code instead of using the button, but that is neither here nor there. It seems you are typing the code incorrectly don’t add the spaces like so:
<!--more-->Forum: Fixing WordPress
In reply to: Question about spam.kjagen,
Akismet will keep the spam for a total of 15 days as a precaution that you consider a comment or trackback not spam. So no, you don’t necessarily need to remove them manually.
Forum: Fixing WordPress
In reply to: Image Alt Tags/Caption default to align left? I want them centeredjohnrbarringer,
Nice site. Try adding the following css style to your style.css file:
p.wp-caption-text { text-align: center; }The current issue is that all paragraph tags are justified because they are locked in the class post.
Forum: Fixing WordPress
In reply to: User Login for WordPress QuestoinWillPCG,
WordPress themes often include meta information such as a log-in button as well a registration button. As the Administrator of the site you have options which allow commenting without moderation from logged-in users. All of this can be done from the basic WordPress setup. Start by visiting Settings and going through the submenu options.
Forum: Fixing WordPress
In reply to: Images and Excerptnatecross,
This code includes the excerpt coding so you will just need to replace the excerpt code you currently have.
If there is no excerpt code currently put this new code within the WordPress loop where you would like it to appear.
For example:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <img src="<?php echo get_post_meta($post->ID, 'myCustomFieldName', $single=true) ?>" border="0" taget="blank"> <?php the_excerpt(); ?> <?php endwhile; endif; ?>Forum: Fixing WordPress
In reply to: Only Part Of A TitleDandelion Cake,
Not sure if I caught this a few days too late but I’m not seeing the updates on the main page. I assume this home page update was just a recent posts notice? If this is the case why not put all the Rubens Hollow posts under a Rubens Hollow category and allow the posts to display under it. I must be missing something else though.
Forum: Fixing WordPress
In reply to: Tried multiple things to move the sidebartakeovertokyo,
You are looking for the php include for the sidebars. Generally speaking if there were only a single sidebar I would expect it to be at the bottom of the Main Index Template. Because your theme has two sidebars you need to locate the first sidebar include ?php get_sidebar(); ?> and move it ( in the html/php ) code above the <div id=”content”> I would expect the div content code to be either at the top of the Main Index Template or at the bottom of the Header.
Hope this helps.
Forum: Fixing WordPress
In reply to: Tried multiple things to move the sidebartakeovertokyo,
Try moving the sidebar call above the <div id=”content”>. It appears the content, sidebar1 and sidebar2 are all floating left so this should work just fine.
Forum: Fixing WordPress
In reply to: Stuck at square one!gettingthere,
You will need to change the permissions through FTP in order to allow WordPress access through the dashboard. Once you get going it really is a lot easier than your typical web site.
Forum: Fixing WordPress
In reply to: How change template in admin menu (attributes) for web page?pol74,
This is sill a little confusing. To change themes visit the Appearance > Themes menu. To add additional pages with a new template you will need to create an additional php file with a new name, make sure it is writable and give it a new template name in the file. Using and FTP client to duplicate a template such as Default to create the new one will be the easiest way to start.
Hope this helps.