acosmin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [JustWrite] Size of screenHi! You can always disable the Mini Sidebar to make more space.
Custmozer > Mini-Sidebar > Disable Mini-Sidebar
Forum: Themes and Templates
In reply to: [JustWrite] PermalinksA list of plugins you have activated. Also try and use just /%postname%/ and see if it works…
Forum: Themes and Templates
In reply to: [JustWrite] PermalinksI can’t replicate the issue… I need more info than that.
Forum: Themes and Templates
In reply to: [JustWrite] Font Family not workingGo in the folder
/assets/css/, copyfont-style2.cssfile.Now go in your child themes folder, create a folder
assets, inside that folder create a foldercssand paste that file into it.Forum: Themes and Templates
In reply to: [JustWrite] Can't add social sharing icons in single viewSorry for that, put it bellow this line:
<aside class="share-pagination<?php if( $disable_about ) { echo ' about-disabled'; } ?> clearfix">You could try JetPack social sharing if it doesn’t work.
Forum: Themes and Templates
In reply to: [JustWrite] Posts EditorThe only files that use the editor are located in
functions.php:$selected_ff = ac_get_selected_ff(); add_editor_style( array( 'assets/css/editor-style.css', 'assets/css/es-' . $selected_ff . '.css', ac_font_url( $selected_ff ) ) );You can comment these lines out, or remove them until I can replicate this issue.
Forum: Themes and Templates
In reply to: [JustWrite] Posts EditorIn the WP Administration panel? JustWrite doesn’t use any html editor on the front end…
A screenshot would be great 🙂
Thank you!
Forum: Themes and Templates
In reply to: [JustWrite] Can't add social sharing icons in single viewAfter these lines:
<span class="post-small-button left p-read-more" id="share-<?php the_ID(); ?>-rm"> <a href="<?php echo esc_url( get_permalink() ); ?>" rel="nofollow" title="<?php _e( 'Read More...', 'acosmin' ) ?>"><i class="fa fa-ellipsis-h fa-lg"></i></a> </span>Forum: Themes and Templates
In reply to: [JustWrite] Posts EditorCould you please elaborate, what html editor are you talking about?
Forum: Themes and Templates
In reply to: [JustWrite] PHP 7 RC3I don’t have PHP7 at the moment but I will try and rewrite the code in the next update.
Thanks for pointing that out!
Forum: Themes and Templates
In reply to: [JustWrite] Social Connect Buttons near SearchbarHi! They appear only if you have the fixed menu option activated. If you don’t have it, you can use a custom css plugin or in your child theme’s style.css file add these lines:
.header-social-icons { display: block; padding: 0 0 0 35px; }No problem, glad it worked 🙂
Hi! Instead of:
add_action( 'wp_enqueue_scripts', 'myprefix_remove_styles' );try:
add_action( 'wp_footer', 'myprefix_remove_styles' );Forum: Themes and Templates
In reply to: [JustWrite] RSS feedIn
header.phpremove this:
<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>Forum: Themes and Templates
In reply to: [JustWrite] Main articles screen not showing correctly