acosmin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [JustWrite] Image hover effect (class required).sc-thumbnail, .post-thumbnail { overflow: hidden; } .sc-thumbnail:hover img, .post-thumbnail:hover img { transform: scale(1.2); backface-visibility: hidden; } .sc-thumbnail img, .post-thumbnail img { transition: all 0.4s ease-in-out; } .st-overlay:hover, .sc-item:hover .st-overlay { background-color: transparent !important; }Forum: Themes and Templates
In reply to: [JustWrite] Remove Post Titles from SliderYou can open
../section-templates/section-slider.phpand remove these lines:<div class="st-title-wrap"> <?php if( $sco || $sda || $sca ) : ?> <aside class="s-info si-center clearfix"> <?php if( $sco ) : ?><a href="<?php comments_link(); ?>" rel="nofollow" class="com"><?php ac_icon('comment'); ?></a><?php endif; ?> <?php if( $sda ) : ?><time class="date" datetime="<?php echo get_the_date( 'Y-m-d' ); ?>"><?php echo get_the_date( 'M d, Y' ); ?></time><?php endif; ?> <?php if( $sca ) : ac_output_first_category( 'category' ); endif; ?> </aside> <?php endif; ?> <?php the_title( '<h3 class="section-title st-wrapped st-large st-bold"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h3>' ); ?> </div>Forum: Themes and Templates
In reply to: [JustWrite] How can I set a fixed page width?You can put the code as it was. Also, when you do modifications to a website disable any caching plugins. You will not be able to see changes in real time.
You can try something like:
body { width: 100%; max-width: 1500; margin: 0 auto; }Do your subcategories have articles in them? The select box will show only categories with articles in them.
Forum: Themes and Templates
In reply to: [JustWrite] How can I show "Related Posts"?Jetpack has a module called Related Posts, it does exactly what you want. Install the plugin and set it up 🙂
Forum: Themes and Templates
In reply to: [JustWrite] Remove "Category Archives: Name"You need to remove
<?php _e( 'Category Archives:', 'justwrite' ) ?>incategory.phpI strongly recommend you use a child theme. You can download one of free on our website.- http://www.acosmin.com/theme/justwrite/#theme-actions
Forum: Themes and Templates
In reply to: [JustWrite] Hide sidebar on mobile devices@media screen and (max-width: 1140px) { .sidebar { display: none !important; } }Forum: Themes and Templates
In reply to: [JustWrite] How to change displayed categoryYou have to change a lot more than that. I was planning on making this change in the next update, maybe in two or three weeks.
You’ll have wait a little 🙂
Forum: Themes and Templates
In reply to: [JustWrite] How to remove page title and white spacePlease use the support forum for the Pro version: http://www.acosmin.com/forums/forum/justwrite-pro/
Also, I am sorry to say but JustWrite Pro doesn’t have this functionality and it requires a lot of custom work to get it to that point.
You can use this feature instead: http://demo.acosmin.com/themes/justwrite-pro/slider-in-category-archive/
Forum: Themes and Templates
In reply to: [JustWrite] Front page recent posts excerpt length adjustment?Add this in functions.php at the bottom:
if ( ! function_exists( 'ac_new_custom_excerpt_length' ) ) { function ac_new_custom_excerpt_length( $length ) { $length = 0; return $length; } } add_filter( 'excerpt_length', 'ac_new_custom_excerpt_length', 999 );Forum: Themes and Templates
In reply to: [JustWrite] Change all existing posts from Billboard to Normal1. You can add
delete_post_meta_by_key( 'ac_post_layout_options' );infunctions.php, at the bottom. Then go refresh your websites homepage and after that remove that code fromfunctions.php2. You could open
../post-templates/content-single.php, findthe_content();and right above it add:echo '<p style="font-weight:bold; font-size: 1.122em;">' . get_the_excerpt() . '</p>';Hi! I am sorry but those two elements need a lot of custom work to be changed the way you want. It’s not only about how it looks in desktop view, it’s also about mobile (the styles are connected).
If I change something for desktop, I then need to change it for each device.
You could hire someone to do this work for you, for example on https://www.fiverr.com/
Forum: Themes and Templates
In reply to: [JustWrite] Making post featured image clickable.featured-image-wrap > a { float: left !important; z-index: 2 !important; position: relative !important; }Forum: Themes and Templates
In reply to: [JustWrite] Sidebar problem – the "ARCHIVES" won't go away!You’ll have to remove this from sidebar-browse.php:
<aside class="side-box"> <h3 class="sidebar-heading"><?php _e( 'Archives', 'justwrite' ); ?></h3> <nav class="sb-content clearfix"> <ul class="normal-list"> <?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12 ) ); ?> </ul> </nav><!-- END .sb-content --> </aside><!-- END .sidebox -->If you plan on updating the theme, use a child theme to make sure you don’t lose your changes. You’ll have to copy that file from the parent theme into the child theme’s folder and do those changes there.
Forum: Themes and Templates
In reply to: [JustWrite] Page with all posts ever written?Hi, thank you for the kind words!
Unfortunately the theme doesn’t have this capability and it’s a lot of custom work & tweaking to create such a page template.
I am sorry but I can’t help you with this. You could try fiverr.com, I think you can get it done for a few dollars.