Forum Replies Created
-
AuthorPosts
-
SimplyAAMember
It's just a general question on what size blog image is best for Aspire theme.
Angela
SimplyAAMemberWonderful! This is just the help I needed. Thank you so very much. I really appreciate the help.
Angela
April 27, 2016 at 5:21 pm in reply to: Images not showing up on all devices/computers for Altitude Pro Theme #184563SimplyAAMemberIt's so strange as she cleared her caches.
Angela
SimplyAAMemberHi Victor. That works great!
One question though: won't I lose the changes I make every time Genesis is updated?
Angela
SimplyAAMemberThanks Brad. Would I just copy that code into my functions.php?
Angela
SimplyAAMemberHI Victor,
I went into Genesis settings and changed the content archive and changed to entry content and limited the number of characters and now it works.
Thanks for your help!
Angela
SimplyAAMemberThanks Victor. I added the first one to my functions.php but nothing changed. Any other suggestions?
Angela
SimplyAAMemberThank you very much! it already had the auto width so I downloaded the theme again and went through all my changes and figured it out. I had another area set with a block setting that was messing it up.
Thank you very much. I never would have figured this out without the tip on going back to the original style.css.
Angela
SimplyAAMemberWonderful! I was able to add it and it worked perfectly.
Thank you very much for the tip.
Angela
September 16, 2015 at 8:58 pm in reply to: Font in Navigation Different on Firefox and Chrome #165825SimplyAAMemberWow! You guys are brilliant. Thank you all. I took the easy route and did Phil's suggestion. Once I added that one line of code it was 100% better. That is amazing!
Thank you again. I really appreciate it.
Angela
September 14, 2015 at 6:33 pm in reply to: Font in Navigation Different on Firefox and Chrome #165514SimplyAAMemberHi guys,
Thank you for the feedback.. I really appreciate it. I've never used the webkit can you tell me I put that in my CSS and exactly how?
Thank you
Angela
SimplyAAMemberAnybody have any ideas?
Angela
SimplyAAMemberUpdate: By adding a background picture I was able to see that this is actually working. But one issue: The email signup looks horrible on mobile devices. Any suggestions?
Angela
SimplyAAMemberThe page where I am trying to do this is here: http://www.loveasimple.life/lovedolphins/
Does anyone have any suggestions?
Angela
SimplyAAMemberThank you, thank you! That worked perfectly.
Angela
SimplyAAMemberI found a solution to this problem. I deactivated Jetpack share and installed the Genesis Simple Social Share plugin. There are tips on customized it here:
http://briangardner.com/genesis-simple-share/
Angela
SimplyAAMemberWow - I really should of thought of that. It worked great! Thank very much Victor.
Angela
SimplyAAMemberAnyone has a possible solution?
Angela
SimplyAAMemberI just checked. I do have page titles in all pages.
I looked in my functions.php and this is all that I've added:
<?php /* Do not remove this line. Add your functions below. */ add_action( 'wp_enqueue_scripts', 'prefix_enqueue_scripts' ); function prefix_enqueue_scripts() { wp_enqueue_script( 'prefix-typekit', '//use.typekit.net/skx1cir.js', array(), '1.0.0' ); } add_action( 'wp_head', 'prefix_typekit_inline' ); function prefix_typekit_inline() { if ( wp_script_is( 'prefix-typekit', 'enqueued' ) ) { echo '<script type="text/javascript">try{Typekit.load();}catch(e){}</script>'; } } //* Customize the credits remove_action( 'genesis_footer', 'genesis_do_footer' ); add_action( 'genesis_footer', 'sp_custom_footer' ); function sp_custom_footer() { echo '<div class="creds"><p>'; echo 'Copyright © '; echo date('Y'); echo ' · <a href="http://www.mysimpleuniverse.com">My Simple Universe</a> · Free Spirit LLC'; echo '</p></div>'; echo '<div class="creds-2"><p>'; echo ' <a href="http://www.mysimpleuniverse.com">Home</a>'; echo ' · <a href="http://www.mysimpleuniverse.com/privacy-policy/">Privacy Policy</a>'; echo ' · <a href="http://www.mysimpleuniverse.com/terms-conditions/">Terms of Use</a>'; echo '</p></div>'; } //* To Display Image before post title add_action( 'genesis_entry_header', 'single_post_featured_image', 15 ); function single_post_featured_image() { if ( ! is_singular( 'post' ) ) return; $img = genesis_get_image( array( 'format' => 'html', 'size' => genesis_get_option( 'image_size' ), 'attr' => array( 'class' => 'alignright' ) ) ); printf( '<a href="%s" title="%s">%s</a>', get_permalink(), the_title_attribute( 'echo=0' ), $img ); } //* Remove the header right widget area unregister_sidebar( 'header-right' ); //* Remove the default header remove_action( 'genesis_header', 'genesis_do_header' ); //* Add custom header add_action( 'genesis_header', 'sk_do_header' ); function sk_do_header() { echo '<a href="http://www.mysimpleuniverse.com/"><img src="http://www.mysimpleuniverse.com/images/MSU-header.png" /></a>'; } //* Display a custom favicon add_filter( 'genesis_pre_load_favicon', 'sp_favicon_filter' ); function sp_favicon_filter( $favicon_url ) { return 'http://www.mysimpleuniverse.com/favicon.ico'; } //* for Related Posts info without using Plugin add_image_size( 'related', 90, 70, true ); //for XHTML themes add_action( 'genesis_after_post_content', 'child_related_posts' ); //for HTML5 themes add_action( 'genesis_after_entry_content', 'child_related_posts' ); function child_related_posts() { if ( is_single ( ) ) { global $post; $count = 0; $postIDs = array( $post->ID ); $related = ''; $tags = wp_get_post_tags( $post->ID ); $cats = wp_get_post_categories( $post->ID ); if ( $tags ) { foreach ( $tags as $tag ) { $tagID[] = $tag->term_id; } $args = array( 'tag__in' => $tagID, 'post__not_in' => $postIDs, 'showposts' => 4, 'ignore_sticky_posts' => 1, 'tax_query' => array( array( 'taxonomy' => 'post_format', 'field' => 'slug', 'terms' => array( 'post-format-link', 'post-format-status', 'post-format-aside', 'post-format-quote' ), 'operator' => 'NOT IN' ) ) ); $tag_query = new WP_Query( $args ); if ( $tag_query->have_posts() ) { while ( $tag_query->have_posts() ) { $tag_query->the_post(); $img = genesis_get_image() ? genesis_get_image( array( 'size' => 'related' ) ) : '<img src="' . get_bloginfo( 'stylesheet_directory' ) . '/images/related.png" alt="' . get_the_title() . '" />'; $related .= '<li><a href="' . get_permalink() . '" rel="bookmark" title="Permanent Link to' . get_the_title() . '">' . $img . get_the_title() . '</a></li>'; $postIDs[] = $post->ID; $count++; } } } if ( $count <= 4 ) { $catIDs = array( ); foreach ( $cats as $cat ) { if ( 3 == $cat ) continue; $catIDs[] = $cat; } $showposts = 4 - $count; $args = array( 'category__in' => $catIDs, 'post__not_in' => $postIDs, 'showposts' => $showposts, 'ignore_sticky_posts' => 1, 'orderby' => 'rand', 'tax_query' => array( array( 'taxonomy' => 'post_format', 'field' => 'slug', 'terms' => array( 'post-format-link', 'post-format-status', 'post-format-aside', 'post-format-quote' ), 'operator' => 'NOT IN' ) ) ); $cat_query = new WP_Query( $args ); if ( $cat_query->have_posts() ) { while ( $cat_query->have_posts() ) { $cat_query->the_post(); $img = genesis_get_image() ? genesis_get_image( array( 'size' => 'related' ) ) : '<img src="' . get_bloginfo( 'stylesheet_directory' ) . '/images/related.png" alt="' . get_the_title() . '" />'; $related .= '<li><a href="' . get_permalink() . '" rel="bookmark" title="Permanent Link to' . get_the_title() . '">' . $img . get_the_title() . '</a></li>'; } } } if ( $related ) { printf( '<div class="related-posts"><h3 class="related-title">Related Posts</h3><ul class="related-list">%s</ul></div>', $related ); } wp_reset_query(); } } //* Remove post date and author add_filter( 'genesis_post_info', 'remove_post_info_exclude_news_category' ); function remove_post_info_exclude_news_category($post_info) { if ( is_category('web-design') ) { $post_info = '[post_comments] [post_edit]'; return $post_info; } } remove_action( 'genesis_entry_footer', 'genesis_post_meta' );
Angela
SimplyAAMemberI just found a solution. On this article it talks about multimedia trouble shooting and says Firefox basically doesn't play nice with mp3's. http://html5doctor.com/multimedia-troubleshooting/. So I went to this website http://www.online-convert.com/ and converted my mp3 to an ogg file, uploaded and it works. I left both links so hopefully one of them will work on any browser.
Angela
-
AuthorPosts