distrikt
Forum Replies Created
-
No, MediaTemple hasn’t experienced this before. Which is why they are suggesting it is a WP issue.
Hi Sage. Thank you kindly for the reply. To respond to your questions:
1. My various sites use different themes and plugins, no duplicates
2. Yes, even after a clean WP install it does the same
3. It only changed recently. Perhaps in the last couple of weeks. I can’t recall if it happened exactly when WP updated or not.Yes, it seems to be an issue on the side of the hosting/server and not the theme, however it is specifically related to a fault in the functionality of WordPress, and the host/server MediaTemple refuses to offer support for WordPress, stating that such issues would originate from permissions changes that WP imposes on the server.
Thanks again, looking forward to any help I can get from you and the community.
Is this not a public forum where users can exchange techniques and fixes for WordPress in all it’s forms?
Perhaps there is a different thread within the Forum where I can submit this?
Thanks for the reply. What php file do I need to edit?
And yes, I do have a element-content.php file…
But there is no ‘more’ text that I can find.
<!-- THE POST CONTENT (copied from the excerpt) --> <div class="the_content post type-post hentry excerpt clearfix" id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <hr class="partial-bottom" /> <div class="my-avatar"> <a href="<?php the_permalink(); ?>"> <?php echo get_avatar( get_the_author_meta('email'), '32' ); ?> </a> </div> <h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4> <div class="date"> <?php _e('Posted on', 'skeleton') ?> <?php the_time(__ ('F', 'skeleton'));?> <?php the_time(__ ('jS', 'skeleton'));?>, <?php _e('by', 'skeleton')?> <?php the_author(); ?> <?php _e('in', 'skeleton')?> <?php the_category(', ') ?>. <?php comments_popup_link(__ ('No Comments', 'skeleton'), __ ('1 Comment', 'skeleton'), __ngettext ('% comment', '% comments', get_comments_number (),'skeleton')); ?> </div> <!-- Grab the image path and set our variables --> <?php if (has_post_thumbnail( $post->ID )) { // Grab the URL for the thumbnail (featured image) $thumb = get_post_thumbnail_id(); $image_full = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' ); if (ot_get_option('default_image_height')) : $imgheight = ot_get_option('default_image_height', $theme_options, false, true, 0 ); $image = vt_resize( $thumb, '', 700, $imgheight, true ); else : $image = vt_resize( $thumb, '', 700, 2000, false ); endif; // Check for a lightbox link, if it exists, use that as the value. // If it doesn't, use the featured image URL from above. if(get_custom_field('lightbox_link')) { $lightbox_link = get_custom_field('lightbox_link'); } else { $lightbox_link = $image_full[0]; } ?> <div class="three columns alpha"> <div class="aside"> <a href="<?php if (get_option_tree('open_as_lightbox') == 'Yes') { echo $lightbox_link; } else { the_permalink(); } ?>" <?php if (get_option_tree('open_as_lightbox') == 'Yes') { ?>data-rel="prettyPhoto[Gallery]"<?php } ?>> <img src="<?php echo $image[url]; ?>" width="<?php echo $image[width]; ?>" height="<?php echo $image[height]; ?>" alt="<?php the_title(); ?>" /> </a> </div> </div> <div class="eight columns omega"> <?php the_content(); ?> </div> <br class="clearfix" /> <?php } else { ?> <div> <?php the_content(); ?> </div> <?php } ?> <!-- META AREA --> <div class="meta-space"> <div class="tags clearfix <?php echo get_option_tree('tags_color'); ?>"> <img src="<?php echo WP_THEME_URL; ?>/assets/images/theme/tag.png" class="tag_icon" /> <?php the_tags(' ',' '); ?> </div> </div> <!-- /META AREA --> </div> <!-- /THE POST CONTENT -->