Forum Replies Created

Viewing 15 replies - 196 through 210 (of 639 total)
  • Theme Author acosmin

    (@acosmin)

    Thank you! I am marking this topic as resolved.

    Theme Author acosmin

    (@acosmin)

    You will need to open sidebar.php and sidebar-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.

    Theme Author acosmin

    (@acosmin)

    It should work, nothing changed in the recent updates that would impact excerpts. Are you using a child theme?

    Theme Author acosmin

    (@acosmin)

    It’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 > Widgets and use these two widgetized areas: Main Sidebar and Posts 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.

    Theme Author acosmin

    (@acosmin)

    I don’t understand your question, could you please elaborate? Also, please post your website’s url.

    Theme Author acosmin

    (@acosmin)

    I am going to need to see your website… please leave a URL

    Theme Author acosmin

    (@acosmin)

    1. 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; }

    Theme Author acosmin

    (@acosmin)

    Hi! It works on my end…

    Theme Author acosmin

    (@acosmin)

    I 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.

    Theme Author acosmin

    (@acosmin)

    I’ve installed the plugin on a fresh WP install, with JustWrite v2.0.2, debug mode true and it doesn’t show any errors.

    Theme Author acosmin

    (@acosmin)

    I 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.

    Theme Author acosmin

    (@acosmin)

    Selecting a category is available only in the Pro version. The only way that causes a error is if you removed the disabled attribute…

    Theme Author acosmin

    (@acosmin)

    .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…

    Theme Author acosmin

    (@acosmin)

    You can always leave a simple review 🙂 if you enjoy the theme 🙂

    I am glad it worked out for you…

    Theme Author acosmin

    (@acosmin)

    You 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.

Viewing 15 replies - 196 through 210 (of 639 total)