Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: NextGen Gallery not loadingMake sure any code you have for different headers all contain the next gen gallery info calls in the header. It may only appear in the main header, so you may want to make sure you copy&paste it into every variation of header.php you use.
Forum: Fixing WordPress
In reply to: style sheet not foundYou have no header.php file. Check your site via ftp and make sure there is one in the theme folder.
Forum: Fixing WordPress
In reply to: Numeric entities displaying on home page/excerptsWeird one this, it’s like it’s not converting html symbols into text-alternatives. Some of the codes like ‘–’ should be converted to a ‘-‘ on the site, but they’re not.
I’m stumped on this one, but you could maybe hunt through the code to find where they are coming from and try manually adding in their html equivalent in your template files.
Forum: Fixing WordPress
In reply to: Menu Broken: Items disappearing/moving/changing typeIf your issue is that you can only ever have a maximum of x amount of menu items, this is a server issue.
Get your host to enable/increase suhosin on the server and your problems will disappear!
suhosin.post.max_vars = 5000 suhosin.request.max_vars = 5000Forum: Fixing WordPress
In reply to: Website running really slow!Potentially server memory. As you have a magazine-type wordpress blog with a lot of content, php memory and hardware memory can make a difference.
Forum: Fixing WordPress
In reply to: Hack affecting WordPress loginSounds like whoever hacked you added in a backdoor, so it’s like biting the head off a worm – the body remains and keeps going.
It may need a good look through your db for anything that shouldn’t be there and definately check your .htaccess file as this is a common way to enter your site.
Forum: Fixing WordPress
In reply to: Header File Hover Text ChangeLink to site?
Forum: Fixing WordPress
In reply to: Absolute Positioning/Sidebar IssueWe first make #main relatively positioned. This is required for positioning #primary after.
Then by making #primary absolutely positioned (but inside #main), we can then stipulate exactly where you want the sidebar to sit.
Forum: Fixing WordPress
In reply to: Absolute Positioning/Sidebar IssueOk. To solve this:
In style.css:
1. Add this to existing #main:
#main { postion: relative;2. Add this to styleweaver.css #primary (line 101):
#primary { background-color: #FFFFFF; margin-bottom: 5px; padding-left: 10px; padding-top: 10px; position: absolute; right: 0; top: 46px; }I added 46px to bring the top of the sidebar to the underline of the menu item on left, but you can decrease it to make it higher if required.
Hope this helps.
Phil
Forum: Fixing WordPress
In reply to: The Link URL not working with multiple images on a single pageLorem ipsum text is general text used by designers or developers for adding dummy text where real content should follow later.
Forum: Fixing WordPress
In reply to: The Link URL not working with multiple images on a single pageCan you provide a link to the site? You’ll get a better response from people if they can see it live.
Forum: Fixing WordPress
In reply to: Post pictures are NOT showing, help!Also, check to make sure all js files used by theme are present.
Forum: Fixing WordPress
In reply to: Post pictures are NOT showing, help!What version of php is your server running on?
Do you have GD Library installed on server?
It seems like the class that holds the image isn’t completing either:
you can see empty div class: <div class=””><div class="preview" style="height:110px;"> <div class=""> <div class="alpha"> </div> <span class="date">Sep 10, 2011</span> <span class="comment"><a href="http://thekillermeteor.com/?p=364#respond" class="commentslink" title="Comment on The Remodel State">0</a></span> </div> </div>I would check the developers of the theme or their forum if one exists. Is it compatible with the version of WordPress you’re using?
Forum: Fixing WordPress
In reply to: URL problem in Single.php when retrieve data from Custom FieldTry something like this:
For this example, let’s say the name of your custom field is ‘link_url‘.
<?php if ( get_post_meta($post->ID, 'link_url', true) ) { ?> <a class="someclass" href="<?php echo get_post_meta($post->ID, link_url, true); ?>"><?php echo get_post_meta($post->ID, link_url, true); ?></a> <?php } ?> <?php if ( get_post_meta($post->ID, 'link_url', false) ) { ?> <?php } ?>So in your custom field, you could add http://www.example.com and it will pull the link to where you insert this on the site.
I have used this on a couple of sites to pass links and it works well.
Forum: Fixing WordPress
In reply to: Post pictures are NOT showing, help!If you have a ‘cache’ folder in the theme, make sure that it’s chmod permissions are set to 777.