Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Home Page taking ~ 5minutes to loadIF you can log into the admin, deactivate all the plugins and test again. If faster, reactivate plugin one at a time and see if there is one plugin causing issue.
Forum: Fixing WordPress
In reply to: How to create a Thankyou page and Download page using WordPressTHis depends on your theme. If your theme supports WP 3.0 menus then just go to ‘Pages -> ‘Add New’ and that’s it.
If your theme does NOT support WP 3.0 menus, then you need to create the pages as above, and then find a way to hide them in the header.php file (so like ‘show menu but exclude page ID x, x, x, etc’).
If you’re not experienced with PHP, you can hide via CSS or via a plugin.
Forum: Fixing WordPress
In reply to: Error in moving wordpressCheck that site_name and Site_url in database table ‘WP-Options’ are the updated folder.
Forum: Fixing WordPress
In reply to: How to change menubar textIt’s in ddsmoothmenu.css stylesheet (line 18):
#menu ul.ddsmoothmenu li li { font: 11px Arial,Helvetica,sans-serif !important; text-transform: capitalize; }remove the
text-transform: capitalize;…and it should work how you want.
Phil
Forum: Fixing WordPress
In reply to: Show Pinterest button when you hover imagesForum: Fixing WordPress
In reply to: Changing permalinks in WordPressSettings -> Permalinks
Forum: Fixing WordPress
In reply to: Home Page taking ~ 5minutes to loadIf you have access to the server, upload a html page with some images etc and test if it too also takes a while. If it does, it is most likely the server so contact the host. If not, it could be the WP install so try changing themes or disabling plugins to test if theme/install/plugin causing the issue.
Forum: Fixing WordPress
In reply to: Excluding featured posts from showing up in google searchesUsing noindex is really the only solution really as that’s what you need doing.
If your theme uses images from a category, you need to block the category from indexing. There’s plenty of lightweight plugins which will do this for you.
Forum: Fixing WordPress
In reply to: Creating a seperate blog withing my site1. Maybe need to find another plugin (like this: http://wordpress.org/extend/plugins/advanced-recent-posts-widget/) as the default widget will pull all posts from all categories.
2. To remove the category from urls, ‘Open Settings’ -> ‘Permalinks’ and set as custom, with /%postname%/
Forum: Fixing WordPress
In reply to: Disabling image crunching????
Forum: Fixing WordPress
In reply to: creating vertical menu's in a page1. Nope.
2. Javascript menus are not bad for SEO. Why not create a menu in Appearance -> Menus, then add a ‘custom menu’ widget to your sidebar from Appearance -> Widgets.
Forum: Fixing WordPress
In reply to: Disabling image crunching???Have you tried increasing PHP memory limit in your server? Check your php.ini file to see what it is set as and try increasing it to 256M or 512M. I’ve had issues before when it was set at 32M by default. Rather than modifying WordPress core files (which will only reappear when you update WP), try tackling this from the other way.
Forum: Fixing WordPress
In reply to: Disabling image crunching???Have you tried improving image quality of resized images via the functions.php file (BACKUP this file before trying):
function ajx_sharpen_resized_files( $resized_file ) { $image = wp_load_image( $resized_file ); if ( !is_resource( $image ) ) return new WP_Error( 'error_loading_image', $image, $file ); $size = @getimagesize( $resized_file ); if ( !$size ) return new WP_Error('invalid_image', __('Could not read image size'), $file); list($orig_w, $orig_h, $orig_type) = $size; switch ( $orig_type ) { case IMAGETYPE_JPEG: $matrix = array( array(-1, -1, -1), array(-1, 16, -1), array(-1, -1, -1), ); $divisor = array_sum(array_map('array_sum', $matrix)); $offset = 0; imageconvolution($image, $matrix, $divisor, $offset); imagejpeg($image, $resized_file,apply_filters( 'jpeg_quality', 90, 'edit_image' )); break; case IMAGETYPE_PNG: return $resized_file; case IMAGETYPE_GIF: return $resized_file; } return $resized_file; } add_filter('image_make_intermediate_size', 'ajx_sharpen_resized_files',900);Forum: Fixing WordPress
In reply to: Creating a seperate blog withing my siteWhen you are in your Menus editor (Appearance -> Menus), you want to add in the category into the menu NOT a page.
So if you’ve created a page called IronMan, you need to delete it and create a category called Ironman. You then add the category to the menu (on menu page, scroll right to the bottom and you’ll see the cats).
This means that by saving the category, it should automatically pull in the posts from that category as an archive list.
Phil
Forum: Fixing WordPress
In reply to: Creating a seperate blog withing my siteYep, you can either have it like this:
Blog category
– sub-category 1
– sub-category 2
– sub-category 3or just ‘Blog category’ and all posts in there.
Creating the new blog category will auto create a /blog slug (if thats what you call the slug when you create it)
You can then create a menu item in ‘Appearance’ -> ‘Menus’, create a custom Menu item with blog as the url and order it wherever you want in the menu.