acosmin
Forum Replies Created
-
http://demo.acosmin.com/themes/justwrite/?s=post
Search works! It actually uses the default function that comes with every WP theme.
I am sure this problem isn’t caused by my theme.
Forum: Themes and Templates
In reply to: [JustWrite] Home PageMake sure in WP Administration Panel > Settings > Reading Settings you have “Your latest posts” selected as “Front page display”.
As for the slider you need at least 4 featured articles.
Forum: Themes and Templates
In reply to: [JustWrite] Home PageForum: Themes and Templates
In reply to: [JustWrite] Thumbnail and slider issues – Just WriteOpen
../post-templates/content.phpfind:echo '<img src="' . get_template_directory_uri() . '/images/no-thumbnail.png" alt="' . __( 'No Thumbnail', 'acosmin' ) . '" />';replace it with:
echo ' ';Forum: Themes and Templates
In reply to: [JustWrite] JustWrite Theme Slider sizeIt is possible if you know your way around customizing the theme.
To make the thumbnails square go in
functions.phpfind:add_image_size( 'ac-slide-thumbnail', 515, 300, true );replace it with:
add_image_size( 'ac-slide-thumbnail', 515, 515, true );You should also regenerate all your thumbnails or deactivate/activate the theme.
Forum: Themes and Templates
In reply to: [JustWrite] recommended sizes for header and logo imageslogo width: 180px (retina: 360px;)
logo height: 110px max (retina: 220px;)
header bg image: 1920x250px;Forum: Themes and Templates
In reply to: [JustWrite] WooCommerce Loop IntegrationMaybe look for it in
../page-templates/template-page.phpForum: Themes and Templates
In reply to: [JustWrite] slider option can't be foundhttp://www.acosmin.com/documentation/justwrite/
I think you need at least 3 featured posts selected.
Forum: Themes and Templates
In reply to: [JustWrite] social plugin in top menuThat’s how the theme was designed.
Forum: Themes and Templates
In reply to: [JustWrite] About the AuthorThat’s the only place where the “About the author” box appears. If you’ve updated the theme you should try and remove those lines again.
Forum: Themes and Templates
In reply to: [JustWrite] Requesthttp://changelog.acosmin.com/justwrite/
The link is in the documentation, read me file, theme release page.
Forum: Themes and Templates
In reply to: [JustWrite] child theme – justwrite makes me crazy – child theme– how can i delete rss in header-social-icon ?
In
header.phpthere is a line:<li><a href="<?php if( $header_rss != '' ) { echo esc_url( $header_rss ); } else { bloginfo( 'rss2_url' ); } ?>" class="social-btn right rss"><?php ac_icon('rss'); ?></a></li>Delete it.
– can i install widgets or/and menu in mini sidebar ?
You can’t add widgets. You can add menues, read the documentation, Menus section.
Forum: Themes and Templates
In reply to: [JustWrite] About the AuthorOpen
author.phpand delete these lines:<?php if ( have_posts() ) : ?> <header class="main-page-title"> <h1 class="page-title"><?php the_post(); printf( __( 'All posts by <span>%s</span>', 'acosmin' ), get_the_author() ) . ac_icon( 'angle-down' ) ?></h1> <aside class="about-share clearfix"> <div class="as-wrap clearfix"> <?php // Variables $author_id = get_the_author_meta( 'ID' ); $display_name = get_the_author_meta( 'display_name', $author_id ); $user_url = get_the_author_meta( 'user_url', $author_id ); ?> <div class="about-the-author clearfix"> <h2 class="title"><?php _e('About the author','acosmin'); ?> <span class="author"><?php echo $display_name; ?></span></h2> <div class="ata-wrap clearfix"> <figure class="avatar-wrap"> <?php echo get_avatar( $author_id, 58 ); ?> <?php if( $user_url ) { ?> <figcaption class="links"> <a href="<?php echo esc_url( $user_url ) ?>" class="author-link" title="<?php _e("Author's Link", 'acosmin'); ?>"><?php ac_icon('link');?></a> </figcaption> <?php } ?> </figure> <div class="info"> <?php echo esc_html( get_the_author_meta( 'description', $author_id ) ); ?> </div> </div> <div class="clear-border"></div> </div><!-- END .about-the-author --> </div><!-- END .as-wrap --> </aside><!-- END .about-share --> </header> <?php endif; ?>Forum: Themes and Templates
In reply to: [JustWrite] slider images too large, cannot resizeAll the images featured in the slider stretch to fit the space. If you resize your browser window, you will see that images resize as well. That’s how the theme was designe (responsive design)
Forum: Themes and Templates
In reply to: [JustWrite] child theme – justwrite makes me crazy – child themeI tried a child theme (with the latest parent theme version, v1.0.4) on a smartphone and tablet in works as it was intended, out of the box.
I don’t know what changes you’ve made or what plugins you have activated.
Here: https://www.dropbox.com/s/tgxyzmo3tk0mipc/justwrite-child.zip