Digital experiences for all disciplines
Forum Replies Created
-
Posted in: We hit Power Elite.
-
May 27, 2014 at 3:20 pm in reply to: Header img and menu links not working on individual blog posts in mobile view #77903
Sorry for the delay. It seems to only affect the iPhone 5. It works fine on Android and older iOS devices. I’ve been able to reproduce the problem on other iPhone 5 phones.
May 15, 2014 at 8:44 pm in reply to: Header img and menu links not working on individual blog posts in mobile view #75432Correction: I meant the main menu, not top bar.
Open up the single.php file and copy/paste the code below after the closing tag for the show_social function. In this example, the last div class labeled linked-in actually just refers to the author link. We labeled it that way because the contributing authors use linkedin profile links so it was easy to reference for css.
<?php if ($show_author_info) { ?> <div class="author-info-wrap clearfix"> <div class="author-avatar"><?php if(function_exists('get_avatar')) { echo get_avatar(get_the_author_meta('ID'), '164'); } ?></div> <div class="post-info"> <div class="author-name"><span><?php _e("Posted by", "swiftframework"); ?></span><a><?php the_author_meta('display_name'); ?></a></div> <div class="post-date"><?php echo $post_date; ?></div> <div class="description"><?php echo get_the_author_meta('description'); ?></div> <div class="linked-in">Connect with <?php the_author_link(); ?></div></div></div> <?php } ?>
Thank you for your response, I meant to update the thread to solved. I recently found a plugin that modifies WordPress oEmbed properties that took care of the issue.
This reply has been marked as private.Nevermind, figured it out by modifying the single.php file.
Thank you. That worked.
-
Posted in: We hit Power Elite.