Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Alex

    (@alexhigh)

    Ok thanks for your help, that’s the bit I was just looking at myself actually so I’ll look into finding the proper code customization to get that bit working.

    Thanks again.
    Alex

    Thread Starter Alex

    (@alexhigh)

    Ahh ok, thanks for getting back so quick.

    Problem is I have hundreds of posts and the way my wordpress theme is setup I just have the source by default on my single post page. Do you suppose there is a way to edit my theme files so that the link is automatically supplied? I’ve looked into doing this in the past when I was trying to get a lightbox to work but couldn’t pull it off..

    I have this in my functions.php that automatically converts uploaded images into posts:

    function myprefix_change_afip_post_content( $post_content, $attachment_id ) {
    
        $my_uploaded_image = wp_get_attachment_image_src( $attachment_id );
        $post_content .= '<img src="' . $my_uploaded_image[0] . '">';
        return $post_content;
    }

    And this seems the relevant bit in Image Attachment Template (image.php):

    <div class="big_image">
    				  <?php echo wp_get_attachment_image( $post->ID, 'large' ); ?>
    				  <p class="caption"><?php if ( !empty($post->post_excerpt) ) the_excerpt(); // this is the "caption" ?></p>
            </div>

    I feel bad for asking as this isn’t your responsibility but I’m going to be stuck otherwise so I’d appreciate any help!

    I had the same issue but fixed it by changing the fonts for my theme in appearance –> customize. I set them both to the blank default option. Not sure if another selection will work yet but the issue seems resolved for me.

    I found the same issue. It does work… partially anyway. It doesn’t seem to schedule on days divisible by 10, i.e. the 10th, 20th and 30th of each month so they would have to be scheduled the old-fashioned way. Other than that it seems to work fine.

Viewing 4 replies - 1 through 4 (of 4 total)