Stephanie Alexis
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Make] Error after UpdateI’m getting this message too and I’m not using Make Plus. Hopefully someone from the support team will see this thread.
Forum: Plugins
In reply to: [Genesis eNews Extended] Genesis eNews with BenchmarkThat’s too bad. I tried searching for plugins that could work with this service, but found nothing. Switching over to a more compatible service.
Thanks anyway!
Forum: Themes and Templates
In reply to: [Make] Convert main theme into a child themeI tried the plugin, inserted some custom CSS, and it worked! Beats having to convert everything to a child theme. Thank you so much. ??
Forum: Themes and Templates
In reply to: [Make] Convert main theme into a child themeThanks ?yvind!
What custom CSS plugin would you recommend me to use?
Hi Boris,
I added the URL but the error still occurs.
https://www.dropbox.com/s/858vodsmjjnjjsv/Screen%20Shot%202014-07-08%20at%205.06.46%20PM.png
I wonder what’s causing the problem. ??
It works! Though the fonts chosen aren’t displaying, but no big deal. Thank you. ??
After copying and pasting the code in the Custom CSS field and hitting the Save button, the code disappears from the Custom CSS field. Is this to be expected?
It worked! It looks even better now. Thank you so much for your help. ??
No problem! I love how easy it was to style and set up. I was wondering if it’s possible to add more fonts to the list? I’m using Lato and Lora (both Google fonts) as main fonts for my blog.
Hi Boris,
Here’s another link to the screenshot I posted: https://cl.ly/image/06141s1U0J3E
Let me know if you can or can’t view it. Thanks!
Ah, it works now! Thanks for the quick response. Hopefully it continues to work smoothly. ??
Forum: Themes and Templates
In reply to: [Writr] Featured image not displayingAwesome. It worked! Thanks Kathryn for your help. ??
Forum: Themes and Templates
In reply to: [Writr] Featured image not displayingI re-checked your post and realized that you only said to remove line 19 and 25.
I tried that as well but it still doesn’t work when you click on the actual post. I’m referring to https://betterworkph.com/hello-world/.
See code:
<?php /** * @package Writr */ $format = get_post_format(); $formats = get_theme_support( 'post-formats' ); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <?php if ( 'link' == $format ) : the_title( '<h1 class="entry-title"><a href="' . esc_url( writr_get_link_url() ) . '" rel="bookmark">', '</a></h1>' ); else : the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); endif; ?> <div class="entry-thumbnail"> <a>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'writr' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="<?php the_ID(); ?>"> <?php the_post_thumbnail( 'featured-image' ); ?> </a> </div><!-- .post-thumbnail --> <?php if ( is_sticky() && is_front_page() && ! is_paged() ) : ?> <span class="entry-format-badge genericon genericon-star"><span class="screen-reader-text"><?php _e( 'Sticky', 'writr' ); ?></span></span> <?php elseif ( $format && in_array( $format, $formats[0] ) ) : ?> <a>" href="<?php echo esc_url( get_post_format_link( $format ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'writr' ), get_post_format_string( $format ) ) ); ?>"><span class="screen-reader-text"><?php echo get_post_format_string( $format ); ?></span></a> <?php else : ?> <span class="entry-format-badge genericon genericon-standard"><span class="screen-reader-text"><?php _e( 'Standard', 'writr' ); ?></span></span> <?php endif; ?> </header><!-- .entry-header --> <?php if ( is_search() ) : // Only display Excerpts for Search ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?> <div class="entry-content"> <?php the_content( __( 'Continue reading', 'writr' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'writr' ), 'after' => '</div>', ) ); ?> </div><!-- .entry-content --> <?php endif; ?> <?php if ( 'post' == get_post_type() ) : // Hide meta for pages on Search ?> <footer class="entry-meta"> <ul class="clear"> <?php writr_meta(); ?> </footer><!-- .entry-meta --> <?php endif; ?> </article><!-- #post-## -->
Forum: Themes and Templates
In reply to: [Writr] Featured image not displayingI followed your instructions, but the featured image still doesn’t appear after removing those lines of code. This is what my child theme’s content.php looks like:
<?php /** * @package Writr */ $format = get_post_format(); $formats = get_theme_support( 'post-formats' ); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <?php if ( 'link' == $format ) : the_title( '<h1 class="entry-title"><a href="' . esc_url( writr_get_link_url() ) . '" rel="bookmark">', '</a></h1>' ); else : the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); endif; ?> <?php if ( is_sticky() && is_front_page() && ! is_paged() ) : ?> <span class="entry-format-badge genericon genericon-star"><span class="screen-reader-text"><?php _e( 'Sticky', 'writr' ); ?></span></span> <?php elseif ( $format && in_array( $format, $formats[0] ) ) : ?> <a class="entry-format-badge genericon genericon-<?php echo $format; ?>" href="<?php echo esc_url( get_post_format_link( $format ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'writr' ), get_post_format_string( $format ) ) ); ?>"><span class="screen-reader-text"><?php echo get_post_format_string( $format ); ?></span></a> <?php else : ?> <span class="entry-format-badge genericon genericon-standard"><span class="screen-reader-text"><?php _e( 'Standard', 'writr' ); ?></span></span> <?php endif; ?> </header><!-- .entry-header --> <?php if ( is_search() ) : // Only display Excerpts for Search ?> <div class="entry-summary"> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?> <div class="entry-content"> <?php the_content( __( 'Continue reading', 'writr' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'writr' ), 'after' => '</div>', ) ); ?> </div><!-- .entry-content --> <?php endif; ?> <?php if ( 'post' == get_post_type() ) : // Hide meta for pages on Search ?> <footer class="entry-meta"> <ul class="clear"> <?php writr_meta(); ?> </ul> </footer><!-- .entry-meta --> <?php endif; ?> </article><!-- #post-## -->
Let me know if I missed anything or if you need to see the actual content.php file.
Forum: Themes and Templates
In reply to: [Writr] Featured image not displayingJust confirming that you do have to switch your post format to Standard if you want to see the featured image.
Which leads me to my question: is it possible to have the featured image appear when using other post formats? My site (https://betterworkph.com) will be featuring audio from our podcast and I might decide to include a featured image to it. Let me know if this is possible and how.
Thanks!