kentannenbaum
Forum Replies Created
-
Forum: Plugins
In reply to: [Gmedia Photo Gallery] GMedia settings available only to Admin?Thanks for the advice. Ken
Forum: Plugins
In reply to: [Gmedia Photo Gallery] GMedia settings available only to Admin?I thought I attached my site for reference. Don’t I do that by clicking “link”?
I’ll do it again here. Thanks.
http://kentannenbaum.comForum: Plugins
In reply to: [Gmedia Photo Gallery] GMedia settings available only to Admin?Hi, thanks for the response. My site’s attached. ONLY the homepage and the “Visions & Voices” gallery uses Gmedia and they look GREAT on computers. It’s on mobile that it falls apart, impossible to easily navigate. I’ve been experimenting with Nextgen on the other galleries, which looks fine on mobile but can’t get it to look good as Gmedia.
Forum: Plugins
In reply to: [Gmedia Photo Gallery] GMedia settings available only to Admin?Gmedia on my photography site looks terrific, exactly what I want, BUT on mobile it’s a disaster. Is a fix on the way?
Forum: Fixing WordPress
In reply to: need code to improve jpeg qualityThat is seriously gratifying on both counts…thanks very much.
Forum: Fixing WordPress
In reply to: need code to improve jpeg qualityOne of the issues, if not THE issue is that I’ve been running this iMac at a different resolution than the default, which is 1920×1080. I like a slightly larger feel for my retouching work so it’s been at 1600×900 for a long time and it’s made some of the images seem soft in looking at the site. FYI, I did upload the leading image on my homepage using both sets of code loaded into the child theme css and it made no difference. As mentioned, the goal was to eliminate the size attributes and see what would happen to sharpness. Even if one of the two solutions worked I wouldn’t know because of my apparent bone-head move of using a resolution that brings the images up above 100% probably causing the softness. Sorry for the inconvenience of looking into a problem that’s of my own doing.
Forum: Fixing WordPress
In reply to: need code to improve jpeg qualityHey Mike, no time because of the holiday…can’t get to my computer yet but will get it done ASAP. Believe me, I want to know. Thanks.
Forum: Fixing WordPress
In reply to: entering codeyes, thank you.
Forum: Themes and Templates
In reply to: Reduced sharpness of imagesThanks!
Forum: Fixing WordPress
In reply to: entering codeGood idea…I’ll do that. Thanks.
Forum: Fixing WordPress
In reply to: entering codeAgain, THANKS for the input. I’ll dig through it all. Back to my issue (besides the coding placement). What’s going on is a softness to SOME of my photos, all sized properly before upload at 600px x 72dpi. What’s been recommended in the forum are a couple of code solutions that remove the size attributes before upload which some coders think might solve the problem of softness. If anyone has a further opinion in this thread I’d love to hear it. Here are two suggestions I came across:
FIRST SOLUTION:
dd_filter( ‘post_thumbnail_html’, ‘remove_width_attribute’, 10 );
add_filter( ‘image_send_to_editor’, ‘remove_width_attribute’, 10 );function remove_width_attribute( $html ) {
$html = preg_replace( ‘/(width|height)=”\d*”\s/’, “”, $html );
return $html;
}SECOND SOLUTION:
function gpp_jpeg_quality_callback($arg)
{
return (int)100;
}add_filter(‘jpeg_quality’, ‘gpp_jpeg_quality_callback’);
HERE’S MY SITE: http://kentannenbaum.com
Forum: Fixing WordPress
In reply to: entering codeThanks very much. Ken
Forum: Themes and Templates
In reply to: [Hemingway] How to sharpen the header images in HemingwayI always resize my images to 600px x 72dpi and many of them become LESS sharp after importing to the site. I saw somewhere that removing the size attributes in the php code might solve the problem and can find almost anything….BUT, I don’t know precisely where to change the code OR what code to add. ANY help is appreciated.
I like the site and the theme but this is frustrating. Thanks.Forum: Themes and Templates
In reply to: Reduced sharpness of imagesMEANT TO SAY in 2nd paragraph:
THE OTHER thing I saw is to add…NOT “no add”.
Sorry!
Forum: Fixing WordPress
In reply to: image sharpnessI’ve got a strange situation. I’m a photographer and understand sharpness very well.
I’ve sized numerous images in Photoshop to 600px x 72dpi for inclusion in one of several galleries on my site. One, ONLY one image in ONE specific gallery is soft and I can’t spot why.Here’s the gallery I’m referring to and the image is the Junk Mail photo, as if I need to tell you.
http://kentannenbaum.com/simple-truths/
Any clue? Thanks very much Ken