acosmin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [JustWrite] how to decrease indent of post titlesWith CSS:
.post-template-1 .title, .single-template-1 .title { font-size: 45px }Where 45 is the font size.
Forum: Themes and Templates
In reply to: [JustWrite] Latin-ext fontsAny luck with this fix?
Forum: Themes and Templates
In reply to: [JustWrite] Latin-ext fontsThe theme doesn’t support latin-ext at the moment. As for the translation issue, you could try opening
functions.phpand changing this line:load_theme_textdomain( 'justwrite', FALSE, basename( dirname( __FILE__ ) ) . '/languages' );to:
load_theme_textdomain( 'justwrite', get_template_directory() . '/languages' );After you change this try and deactivate/activate the theme back.
I can’t replicate the error with debug mode enabled, did you change the code in any way?
Forum: Themes and Templates
In reply to: [JustWrite] Help to inject Social Share codeDepending on where you want to add those social sharing icons you need to open
./post-templates/content-single.phpand:1. To display above the post content, find:
<div class="single-content<?php if( $show_thumbnail) { echo ' featured-image'; } ?>">
add after it:
<?php do_quickshare_output( $url, $title, $source, $description, $imgurl ); ?>2. To display below the post content, find:
</div><!-- END .single-content -->
add before it:
<?php do_quickshare_output( $url, $title, $source, $description, $imgurl ); ?>You should ask the plugin developer ho to change those variables: $url, $title and so on…
Forum: Themes and Templates
In reply to: [JustWrite] Posts EditorNow I understand, if only you posted an image like this before 🙂
Ok, you can open
/assets/css/editor-style.css, find:html .mceContentBody { font-size: 18px; width: 100%; max-width: 1150px; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }change with:
html .mceContentBody { font-size: 18px; max-width: 1150px; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }I’ll try and add it in the next patch
Forum: Themes and Templates
In reply to: [JustWrite] Pages to HomeYou can try adding this:
<?php $args = array( 'post_type' => 'page','posts_per_page' => 5, 'include' => '2, 4' ); $myposts = get_posts( $args ); foreach ( $myposts as $post ) : setup_postdata( $post ); get_template_part( 'post-templates/content' ); endforeach; wp_reset_postdata();?>where 2 and 4 are your page’s ids, the ones you want to display.
in index.php, above:
<?php if ( have_posts() ) :I checked your website on a Mac and PC, both Firefox and Chrome. Icons show up…
It might be a plugin, try deactivating all of them and see if it works. If it does then you should activate your plugins one by one until you find the one causing issues.
Can you see Jetpack’s “Share this” icons?
Forum: Themes and Templates
In reply to: [JustWrite] Pages to HomeSorry, no… Unless you want a static front page.
Icons show up on my end. Try deleting your browser’s cache…
Forum: Themes and Templates
In reply to: [JustWrite] Posts EditorIf you are talking about this space (with red): http://imgur.com/5SzqSO7 that is how it’s supposed to look…
Forum: Themes and Templates
In reply to: [JustWrite] Posts EditorSorry, but I don’t understand the issue. It looks normal to me. Could you take a screenshot and use Paint (or other photo editing tools) to draw/write exactly what you think is wrong with the text editor.
Thank you!
Forum: Themes and Templates
In reply to: [JustWrite] Latin-ext fontsIt’s a little complicated with subsets, it needs a little bit of hacking. I’ll try and integrate it in a few weeks.
Open Sans is used in Style #6 & #9, you could try them until I patch things up.
Forum: Themes and Templates
In reply to: [JustWrite] Add Code to FooterInstead of:
<li><a href="YOUR WEIBO URL" class="social-btn right flikr"><?php ac_icon('weibo'); ?></a></li>
try:
<li><a href="YOUR WEIBO URL" class="social-btn right flickr"><?php ac_icon('weibo'); ?></a></li>You are trying to do a lot of custom work and I think you need a web developer. I really appreciate the thought that you like the theme and I am sorry it doesn’t work for you.
This forum is mostly for bugs. I sometimes help users with custom work but in some cases there are a lot of factors that make it hard.
Forum: Themes and Templates
In reply to: [JustWrite] Latin-ext fontsAre you using the default font family, Style #5?