Forum Replies Created

Viewing 15 replies - 31 through 45 (of 46 total)
  • Sorry, adrenalis, I can’t help you there as I’m not using multisite.
    When you get some free time, try inserting the ShareThis code manually. Hopefully that’ll work for you as well.

    Solution:

    Instead of choosing “automatically add ShareThis icons/buttons to your posts,” choose NO.

    Then manually insert the ShareThis html code (it’s right there on the ShareThis plugin page) where you want it to go in your single.php file.

    Pretty simple, really.

    Following adrenalis’ advice, I’ve filled in the secondary title description (no need for head description) for one post.

    Voila! ShareThis buttons were back — but for that one post ONLY.

    We have nearly 8,000 posts. Oy…

    (I’ve also emptied the SuperCache cache. No luck.)

    I’m having the same problem. Once I activated Greg’s High Performance SEO plugin a few minutes ago, the ShareThis icons disappeared from individual posts — though they have remained in place on the home page.

    I’m sure all this needs is some minor tweaking, but what??

    Any assistance would be greatly appreciated…

    Thread Starter altfgcom

    (@altfgcom)

    Thanks for the response. However, I’d already been to that page.

    I’m not a “code person.” Unless I missed something on that page, there are no detailed explanations about how to removed Content:Encoded from RSS 2 feeds. (I wish there were a “checkbox” option for that on the WP panel. So much simpler…)

    Anyhow, I appreciate the guidance but I’ve no idea how to come up with a functions.php code that would remove Content: Encoded formatting from the site’s RSS 2 feed. Or what to change/remove from the feed-rss2.php file.

    Could anyone help me? Many thanks.

    Thread Starter altfgcom

    (@altfgcom)

    I haven’t heard from the IMDb yet. It may take them a week for them to respond. Would anyone here know what this issue might be?

    That would be much appreciated…

    Thread Starter altfgcom

    (@altfgcom)

    Many thanks for letting me know.

    Thread Starter altfgcom

    (@altfgcom)

    I’ll stay tuned. Thank you for your reply.

    Thread Starter altfgcom

    (@altfgcom)

    For those who may one day run into this problem:

    A media library file (gd) was missing from the server and the php install.

    They’ve since performed the installation and thumbnails once again can be created. What a relief…

    Thread Starter altfgcom

    (@altfgcom)

    Addendum:

    I’ve just tried installing the Auto Generate Thumbnails plugin to see if that’d help. It didn’t.

    Instead of generating a thumbnail (150×150 as specified in functions.php), the featured image came out broken. The uploaded image was, once again, a full-sized image.

    This is driving me nuts…and it has become a serious problem because I’ve been refraining from uploading new posts with the full-sized thumbnails because they’re dramatically slowing down the homepage (www.altfg.com) and several tag-archive pages.

    Also, I’ve noticed that even though I have “functions” set up to crop thumbnails to 150×150, those are being bypassed in the posts with full-sized thumbs. Remember, as I explain in my first post (see above) this issue began after my site was transferred from one hosting company to another this past Tuesday. Before that, everything was working just fine.

    Any suggestion on how I can solve this problem?? That’d be ***much*** appreciated.

    Thread Starter altfgcom

    (@altfgcom)

    Unfortunately, the problem continues even though I’ve purged the SuperCache/Cloud Flare caches.

    Only full-size images are uploaded after they’re “crunched.” No option for choosing other sizes. No option for editing the images.

    This is the current code I have in the site’s functions.php:

    if ( !function_exists( 'my_theme_support' ) ) :
    function my_theme_support() {
      add_theme_support( 'post-thumbnails' );
      add_image_size( 'custom_thumb', 150, 150, true);
    }
    endif;
    add_action( 'after_setup_theme', 'my_theme_support' );
    
    add_filter( 'post_thumbnail_size', 'my_post_image_size' );
    function my_post_image_size( $size ) {
    	$size = 'custom_thumb';
    	return $size;
    }
    
    if (function_exists('add_filter'))
    add_filter( 'the_excerpt', 'excerpt_thumbnail' );
    function excerpt_thumbnail($excerpt){
        if(is_single()) return $excerpt;
        global $post;
        if ( has_post_thumbnail() ) {
            $img .= '<a href="'.get_permalink($post->ID).'">'.get_the_post_thumbnail($post->ID, 'custom_thumb').'</a>';
        } else {
            $img = '';
        }
        return $img.$excerpt;
    }

    Any other suggestions/possible solutions?
    That would be **much** appreciated.

    Thread Starter altfgcom

    (@altfgcom)

    Thank you again, Esmi.

    What is the new code supposed to do?
    I applied it, saved it, but WP continues to load only full-sized images.

    I have SuperCache/CloudFlare caching installed. Should I purge the cache(s) of both to see the new rule implemented? Please let me know when you get a chance.

    Thanks again.

    Thread Starter altfgcom

    (@altfgcom)

    esmi,

    Thank you for your response. I’ll be contacting the hosting company right away.

    Also, if you don’t mind, any ideas regarding my questions a), b), and c)?

    Questions a) & b): The featured image *is* being created, but only in full-size mode. Is there a way to force it to create the featured image as a thumbnail? And ONLY as a thumbnail of a SINGLE, specific size?

    Question c) relates to something else: Last night I found out that wp-uploads now has three (or four?) copies of each image on the site, in various sizes. Is there a way for me to get rid of ALL those images EXCEPT for the small thumbnails?? (I already have the full-sized images located elsewhere on the site’s root folder.)

    Your assistance — and that of anybody else’s — would be MUCH appreciated.

    Thread Starter altfgcom

    (@altfgcom)

    I was also wondering if anyone has any idea if this could be server configuration issue.

    A couple of WordPress functions stopped working after the move, but once the hosting company increased the memory available for the site, those issues were taken care of.

    Any ideas?

    That would be MUCH appreciated. This has been a major headache.

    Thread Starter altfgcom

    (@altfgcom)

    All plugins were deactivated.

    As expected, the thumbnail problem continued…

    I’ve since reactivated all of them (about ten).

Viewing 15 replies - 31 through 45 (of 46 total)