Radices
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Proper Setting for WordPress in sub-dirWhere is the domain pointed in terms of a folder? Is it the only domain on the hosting package or an add-on domain?
BTW I manage several Running sites.
http://girlsgonegazelle.com/
http://epicdartmouth.com
http://solesistersrace.com/
http://lucky7relay.com/Cheers,
Glenn
Forum: Installing WordPress
In reply to: WordPress 4.1 Update 404 Error Return on PagesTry setting permalinks to default as a test.
Forum: Fixing WordPress
In reply to: 900px wide attachments not displaying correctlyI did a text search across all the theme files for 198 and that’s how I found that function. So are you saying that an image of 901 or 899 wide does not get cropped?
I understand you have a work around I just hate not finding the root cause 🙂
Forum: Installing WordPress
In reply to: WP 4.0.1 upgrade from Dashboard hangs4.1 Just released.
https://wordpress.org/download/Forum: Installing WordPress
In reply to: WP 4.0.1 upgrade from Dashboard hangsI’d try it again. Please note that there is a newer version 4.1 going to be released today so perhaps you should just wait a bit.
Forum: Fixing WordPress
In reply to: Proper Setting for WordPress in sub-dirLook at this and work through the examples … you need to copy and move a couple of files and edit the index.php file.
http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory
Forum: Fixing WordPress
In reply to: Home page nameExplain exactly what you are trying to do and post the site URL please.
Forum: Fixing WordPress
In reply to: changing footer in 3.9.1If there are no options in the dashboard to change footer text then you will have to edit the footer.php file in your theme folder.
Check in Appearance>Widgets and see if there is a sidebar-9 widget area.
What do you want to change?
Forum: Fixing WordPress
In reply to: 900px wide attachments not displaying correctlyI found this filter in the Functions.php on line 120
'width' => apply_filters( 'twentyten_header_image_width', 940 ), /** * Filter the Twenty Ten defaul header image height. * * @since Twenty Ten 1.0 * * @param int The default header image height in pixels. Default 198. */ 'height' => apply_filters( 'twentyten_header_image_height', 198 ),I’d change it to see if it changes your cropping. I think the root issue is that if you upload any image larger than the default image width then it gets cropped. Its 940 in this version …whats your say?
Forum: Fixing WordPress
In reply to: Increasing Post SizeIn cPanel there is a menu icon for PHP where you can, depending on the server set-up, pick different versions of PHP eg. 5.2 / 5.4 to run and choose to use your own php.ini or use the systems one.
Good luck!
Forum: Fixing WordPress
In reply to: 900px wide attachments not displaying correctlyLook in the header.php file around line 82.
// Check if this is a post or page, if it has a thumbnail, and if it's a big one if ( is_singular() && current_theme_supports( 'post-thumbnails' ) && has_post_thumbnail( $post->ID ) && ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) ) && $image[1] >= $header_image_width ) : // Houston, we have a new header image! echo get_the_post_thumbnail( $post->ID ); elseif ( get_header_image() ) : // Compatibility with versions of WordPress prior to 3.4. if ( function_exists( 'get_custom_header' ) ) { $header_image_width = get_custom_header()->width; $header_image_height = get_custom_header()->height; } else { $header_image_width = HEADER_IMAGE_WIDTH; $header_image_height = HEADER_IMAGE_HEIGHT; } ?> <img src="<?php header_image(); ?>" width="<?php echo $header_image_width; ?>" height="<?php echo $header_image_height; ?>" alt="" /> <?php endif; ?>Forum: Fixing WordPress
In reply to: Increasing Post SizeWhere did you find the php5.ini file? Does it contain a complete php.ini code?
The first post you said it was set to
Max file upload size : 12800M,That’s kind of weird isn’t it ..it should be 8M or 10M etc.
; Maximum allowed size for uploaded files. upload_max_filesize = 10MForum: Fixing WordPress
In reply to: 900px wide attachments not displaying correctlyHow up-to-date is your theme?
/* * We'll be using post thumbnails for custom header images on posts and pages. * We want them to be 940 pixels wide by 198 pixels tall. * Larger images will be auto-cropped to fit, smaller ones will be ignored. See header.php. */ set_post_thumbnail_size( $custom_header_support['width'], $custom_header_support['height'], true );Around Line 151 Functions.php
Forum: Fixing WordPress
In reply to: 900px wide attachments not displaying correctlyCheck out this one I think it’s the winner 🙂
https://wordpress.org/support/topic/post-thumbnail-amp-twenty-ten-theme?replies=14
Forum: Fixing WordPress
In reply to: 900px wide attachments not displaying correctlyHi Jimmy,
Confusing post. The http://awoodrailing.com/wp-content/uploads/2014/09/sunburst-railing-900×198.jpg file is 900×198 right?