Forum Replies Created

Viewing 15 replies - 646 through 660 (of 703 total)
  • Phil

    (@owendevelopment)

    This should be easy to do:

    Open single.php from the ‘Appearance’ — > ‘editor’

    You’ll see where the content is being called, and after it you should find all the meta and sharing info. Just delete what you don’t want.

    Phil

    Phil

    (@owendevelopment)

    1. If you have a cache folder somewhere in your wp-content, then make it writeable by setting permissions to 777. Usually, when automatic thumbnails are used with a theme, they require cached versions of the images to be stored somewhere in their reduced sizes. Without the correct permissions, they can’t be called into the site.

    2. Check your index.php, as calling thumbnails usually looks like:

    <?php if(has_post_thumbnail()) { ?>
    <a href="<?php the_permalink();?>"><?php the_post_thumbnail('homeblog'); ?></a>
    <?php } ?>

    Is this theme meant to have thumbnails on the index by default as the demo preview doesn’t show any?

    Phil

    (@owendevelopment)

    Works fine for me in Firefox 4.

    I did notice that your permalinks are set up rather strange, as the posts use custom permalinks when you hover over them (eg, in your blog), yet your pages and categories are still showing the old standard method when you hover over them (eg, domain.com/page_id=21). Also, not good for SEO, as looking at the raw source, the old links are the ones being displayed to search engines – not the re-written ones.

    Once clicked, the url does appear to get re-written ok, but it’s very unusual for the links to appear on hover as the default permalink structure. It’s like the re-writing occurs once the link is clicked, not when the page is loaded.

    Make sure you check:

    Admin –> Settings –> Permalinks

    and make sure they are set to custom setting:
    /%category%/%postname%/

    Update your htaccess if prompted too as well:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    Hope this helps.

    Phil

    Phil

    (@owendevelopment)

    Without knowing the theme and a link to your site, it’s quite hard to guess.

    If you can provide these, someone may be able to help you.

    🙂

    Phil

    (@owendevelopment)

    Try this when you’re on the page and in HTML view:

    <?php wp_list_bookmarks( $args ); ?>

    If this doesn’t work, then you may need to install Exec-PHP plugin to enable the execution of PHP in your page.

    Hope this helps.

    Phil

    Phil

    (@owendevelopment)

    This looks like a cache error. Try removing the Cache plugin – either from the admin, or failing that, via FTP:

    wp-content –> plugins

    Phil

    (@owendevelopment)

    Try setting your permalinks to ‘custom’, then:

    /%category%/%postname%/

    Forum: Fixing WordPress
    In reply to: Image link to page
    Phil

    (@owendevelopment)

    Another way is via HTML.

    once you have selected the image and want to link it, switch to the HTML view in the post page and alter:

    FROM THIS:

    <img src="http://www.yourdomain.com/wp-content-uploads/image1.jpg" />

    TO THIS:
    <a href="http://www.yourdomain.com/targetpage"><img src="http://www.yourdomain.com/wp-content-uploads/image1.jpg" /></a>

    You notice the ‘a’ tag at the start and the end? This creates that image as a link to the ‘targetpage’.

    Hope this helps.

    Phil

    (@owendevelopment)

    Platinum SEO pack is almost identical to AIO:

    http://wordpress.org/extend/plugins/platinum-seo-pack/

    Still looks like only up to v3.0.5 as well, but give it a go and see if it solves your issue.

    Phil

    (@owendevelopment)

    Everything is centred for me. Try hard refreshing your browser and clear the cache.

    Phil

    (@owendevelopment)

    Follow the details above, you shouldn’t have to copy the whole wp-contents folder then – except for plugins – as the export/import also includes all images attachments and uploads.

    Phil

    (@owendevelopment)

    Have you got a link to your site?

    Phil

    (@owendevelopment)

    I see. The CSS for the bit off to the right isn’t in the CSS stylesheet, it looks like it’s in the header:

    <style type="text/css" media="all">
    /*<![CDATA[*/
    /* CSS inserted by theme options */
    body{font-family:'times new roman',times,serif;font-size:90%;}
    body div#container { float: right; margin: 0 0 2em -200px; }
    
    body div#content { margin: 3em 0 0 200px; } 
    
    body div.sidebar { float: left; }
    body div#content div.hentry{text-align:left;}
    body div#content h2,div#content h3,div#content h4,div#content h5,div#content h6{font-family:arial,helvetica,sans-serif;}
    body div#wrapper{max-width:55em;min-width:35em;width:80%;}
    body div.sidebar{text-align:center;}
    /*]]>*/
    </style>

    I’ve seperated the line above to show you where the issue is. As you can see, there is a margin on the left of 200px being added. To fix the problem, paste this in instead of it:

    body div#content { margin: 3em 0 0 0; }

    If you’re not able to do this, email me at philowen@psmdigital.com with an ‘admin’ login and I’ll do it for you.

    Phil

    Phil

    (@owendevelopment)

    Did you pay your hosting subscription? =P

    I’d call Hostgator to get them to check your account. If you can get FTP access, you can then remove .htaccess or modify it.

    Phil

    (@owendevelopment)

    😀

Viewing 15 replies - 646 through 660 (of 703 total)