doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Formatted truncated news feed on static homepage?andyssummerplayhouse,
Take a look at this plugin ‘Limit-Posts’ this will truncate the text to a desired length and provide a simple, alterable “read more . . .” text. http://www.doc4design.com/plugins/limit-post/
Forum: Fixing WordPress
In reply to: Template seems to have a default date format which I want to changemduzair,
Look for the following php in your theme files and change it from:
<?php the_time('M d Y'); ?>to this:
<?php the_time('m.d.y'); ?>Please refer to the PHP date manual for variations on this. http://us3.php.net/manual/en/function.date.php
Forum: Fixing WordPress
In reply to: No links are workingTheOrganicSister,
Working over here. Firefox 3.6.2 Mac OSX. No errors.
Forum: Fixing WordPress
In reply to: 「Q」have question about including PHP code to PAGEkimdofa,
Try the code below:
<phpcode> <?php include ('http://gomgom.net/diary/index.htm'); ?> </phpcode>Forum: Fixing WordPress
In reply to: Adding a css class to list items in my navigation baratlanteavila,
Because each line item generated by WordPRess is already classed by “page_item” why not change “sliding-element” to “page_item” instead?
Forum: Fixing WordPress
In reply to: An “” appearing before each double space.Wej00,
If this character is showing within the post you might double check the post itself.
- Try copying the content into a plain text editor and copy it back into the post.
- Check the HTML tab and look for any oddities where the character is showing as well
Forum: Fixing WordPress
In reply to: Space between links in blogroll too largercgibbons1,
The blogroll links have a good deal of padding on them so even if you reduce the bottom margin they will still be set apart quite a bit. I suggest removing the padding from the following two styles:
#sidebar ul li, #sidebar ul li b #sidebar ul li, #sidebar ul li aOr at least reduce the top and bottom padding. Then adjust the margin-bottom to a lower number.
Forum: Fixing WordPress
In reply to: Can i prevent wordpress from removing paragraphs?rwilki,
You might try downloading the tinymce-advanced plugin which has an option to maintain
<p>and<br />tags.Forum: Fixing WordPress
In reply to: Red font in firefox!englishlangprof,
This looks to be hard-coded inline styles. Check through your posts and page text in HTML mode and look for the following:
font color="red"Then delete it.
Forum: Fixing WordPress
In reply to: Permissionskylepoyser,
To add a little more to esmi’s instructions. Changing permissions is generally done by using an FTP program such as Transmit. Right click on a folder/image/etc and select ‘Get Info’.
Forum: Fixing WordPress
In reply to: Display Title of Post Depending on Time of DaySollyNZ,
Try something like the following where you are setting an expiration and beginning time:
<?php if( get_post_meta($post->ID, 'custom-field-name', true) ) { ?> <?php $exp_date = get('expired'); $todays_date = date("Y m d"); $today = strtotime($todays_date); $expiration_date = strtotime($exp_date); if ($expiration_date < $today) { echo ""; } else { echo "Your Content"; echo get('custom-field-name'); } ?> <?php } ?>Forum: Fixing WordPress
In reply to: Truncated long blog entiresmustangviper,
I’m curious if this is built into your functions.php file. What theme are you currently using?
Forum: Fixing WordPress
In reply to: adding a headersmartmove5,
For this particular question we would need a URL or the theme you are currently using. Because every WordPress site is different it’s difficult to answer this type of question.
Forum: Fixing WordPress
In reply to: No Comments on postsrachjay,
It seems you have this working now.
Forum: Fixing WordPress
In reply to: Completely block comments with too many linksyihui,
This is not something I have heard of but I would be interested in hearing other opinions on the subject.