acosmin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [JustWrite] Recent posts and Popular postsThank you! I am marking this topic as resolved.
Forum: Themes and Templates
In reply to: [JustWrite] Recent posts and Popular postsYou will need to open
sidebar.phpandsidebar-posts.php. Find and remove:else { ac_return_inactive_widgets( 'sidebars' ); }Add the following lines instead in both files:
$ac_widgets_wrap_args = array( 'before_widget' => '', 'after_widget' => '', 'before_title' => '<h3 class="sidebar-heading">', 'after_title' => '</h3>' ); // Display social widget $ac_widget_rp_inst = array( 'title' => '', 'twitter' => 'YOUR TWITTER URL', 'twitter_anc' => __( 'Follow', 'justwrite' ), 'facebook' => 'YOUR FACEBOOK URL', 'facebook_anc' => __( 'Facebook', 'justwrite' ), 'google-plus' => 'YOUR G+ URL', 'google-plus_anc' => __( 'Google+', 'justwrite' ), 'linkedin' => 'YOUR LINKEDIN URL', 'linkedin_anc' => __( 'LinkedIn', 'justwrite' ) ); echo '<aside class="side-box clearfix widget ac-social-buttons-widget"><div class="sb-content clearfix">'; the_widget( 'AC_Social_Buttons_Widget', $ac_widget_rp_inst, $ac_widgets_wrap_args ); echo '</div></aside><!-- END .sidebox .widget -->'; // Display recent posts widget $ac_widget_rp_inst = array( 'title' => __( 'Recent Posts', 'justwrite' ), 'recent_posts_number' => 3, 'hide_recent_thumbs' => false ); echo '<aside class="side-box clearfix widget ac_recent_posts_widget"><div class="sb-content clearfix">'; the_widget( 'AC_Recent_Posts_Widget', $ac_widget_rp_inst, $ac_widgets_wrap_args ); echo '</div></aside><!-- END .sidebox .widget -->'; // Display popular posts widget $ac_widget_rp_inst = array( 'title' => __( 'Popular Posts', 'justwrite' ), 'popular_posts_number' => 3, ); echo '<aside class="side-box clearfix widget ac_popular_posts_widget"><div class="sb-content clearfix">'; the_widget( 'AC_Popular_Posts_Widget', $ac_widget_rp_inst, $ac_widgets_wrap_args ); echo '</div></aside><!-- END .sidebox .widget -->';Also, don’t forget to replace YOUR TWITTER URL with your social network urls.
Forum: Themes and Templates
In reply to: [JustWrite] ac_custom_excerpt_length( $length )It should work, nothing changed in the recent updates that would impact excerpts. Are you using a child theme?
Forum: Themes and Templates
In reply to: [JustWrite] Recent posts and Popular postsIt’s not really normal to use two themes on the same WP install, I think it might confuse some of the sidebars. Try adding your widgets from
WP Administration Panel > Appearance > Widgetsand use these two widgetized areas:Main SidebarandPosts Sidebar.If you want to add widgets manually, with code, please write which widgets you want and where. I will give you the code and where to place it.
Forum: Themes and Templates
In reply to: [JustWrite] Recent posts and Popular postsI don’t understand your question, could you please elaborate? Also, please post your website’s url.
Forum: Themes and Templates
In reply to: [JustWrite] Remove author and date from postsI am going to need to see your website… please leave a URL
Forum: Themes and Templates
In reply to: [JustWrite] Remove author and date from posts1. If you are using a child theme copy the “post-templates” folder from the “justwrite” folder. Now open all files and search for/remove these lines:
<time class="detail left index-post-date" datetime="<?php echo get_the_date( 'Y-m-d' ); ?>"><?php echo get_the_date( 'M d, Y' ); ?></time> <span class="detail left index-post-author"><em><?php _e( 'by', 'justwrite' ); ?></em> <?php the_author_posts_link(); ?></span>If you are not using a child theme just do the steps in the “justwrite” folder.
2. You can try the following CSS lines:
.st-wrapped.st-large { box-shadow: none; color: #fff !important;} .st-wrapped.st-small { box-shadow: none; color: #fff !important; }Forum: Themes and Templates
In reply to: [JustWrite] last versionHi! It works on my end…
Forum: Themes and Templates
In reply to: [JustWrite] Problem with a PluginI understand what you’re saying. It works with WP_DEBUG_DISPLAY as well.
May I ask why you are using debug mode on?
It might be in conflict with another plugin.
Forum: Themes and Templates
In reply to: [JustWrite] Problem with a PluginI’ve installed the plugin on a fresh WP install, with JustWrite v2.0.2, debug mode true and it doesn’t show any errors.
Forum: Themes and Templates
In reply to: [JustWrite] Problem with a PluginI am sorry but I am not going to check every plugin for compatibility. It might as well be a plugin vs plugin compatibility issue. JustWrite doesn’t add any JS to the default comments section.
You can leave your website’s URL so I can investigate the issue, I can’t promise anything at this point.
Forum: Themes and Templates
In reply to: [JustWrite] Widget Slider #1Selecting a category is available only in the Pro version. The only way that causes a error is if you removed the
disabledattribute…Forum: Themes and Templates
In reply to: [JustWrite] how to decrease indent of post titles.st-small { font-size: 18px; } .st-small-2nd { font-size: 22px; } .st-medium { font-size: 26px; } .st-large { font-size: 40px; }I wouldn’t change st-large 🙂 the Slider might look weird…
Forum: Themes and Templates
In reply to: [JustWrite] Latin-ext fontsYou can always leave a simple review 🙂 if you enjoy the theme 🙂
I am glad it worked out for you…
Forum: Themes and Templates
In reply to: [JustWrite] Latin-ext fontsYou can try to comment (put // in front of them) these lines out:
wp_register_style( 'ac_webfonts_' . ac_get_selected_ff(), ac_font_url( ac_get_selected_ff() ), array(), null);and:
add_action( 'wp_enqueue_scripts', 'ac_font_styles', 100 );Also, select ‘Style #1’ as your default font style in Customizer.
Now you can change fonts in style.css. Search for
/* Same Font - Source Sans Pro */ font-family: 'Source Sans Pro', sans-serif;In that area you also have a few more font families you might want to change to just sans-serif because you don’t have them loaded anymore.