Forum Replies Created

Viewing 15 replies - 46 through 60 (of 64 total)
  • Forum: Themes and Templates
    In reply to: Widget Problem

    Glad to hear that! if you have more questions please feel free to ask!

    Forum: Themes and Templates
    In reply to: Widget Problem

    change the height: 1px; property to height: 2px; or height: 3px; to make the bar ticker

    Forum: Themes and Templates
    In reply to: Widget Problem

    yeah sure! from your style.css file (line 858) change:

    .widget h3:after {
        position: absolute;
        content: "";
        <strong>width: 40%;</strong>
        height: 1px;
        left: 0;
        bottom: -1px;
        border-bottom: 1px solid;
    }

    to:

    .widget h3:after {
        position: absolute;
        content: "";
        <strong>width: 100%;</strong>
        height: 1px;
        left: 0;
        bottom: -1px;
        border-bottom: 1px solid;
    }

    Forum: Themes and Templates
    In reply to: Widget Problem

    add this code to Custom CSS ( Appearance => Customize => Design & Layout)

    to remove that small two bars under your widget title in the top header:

    header .widget h3:after, header .widget h3 {
        border: 0 !important;
    }
    Forum: Themes and Templates
    In reply to: Widget Problem

    No! i can see your widgets!

    View post on imgur.com

    Forum: Themes and Templates
    In reply to: Widget Problem

    Hi again Helen!

    Yes change the code in your original theme files (sidebar.php line 15, relpace that line with the new one)

    Then, if you have any cache plugin installed, please clear its cache.

    Believe me, the zoom-in effect on thumbnail moseover is a bit glitchy and its slow on mobile phones which not good for user experience. the new effect is smoother and looks more professional (It’s even used by many Premium themes like Sahifa). Besides, some people forget to Regenerate theme thumbnails and this screw the whole animation.

    Tell me what exactly you want to change in the theme and i will try to help you!

    Forum: Themes and Templates
    In reply to: Widget Problem

    Hi Helen! thanks for downloading my theme RedWaves lite.
    Sorry about the widget bug. to fix it permanently: open sidebar.php with a text editor and change line 15 from:
    $sidebar_settings = get_theme_mod( 'sidebar_settings' );
    to:
    $sidebar_settings = get_theme_mod( 'sidebar_settings', 'right_sidebar' );

    but really, you don’t like the new design??

    If you don’t like the boxed layout you can disable Shadows from Customize and set the background color to #FFF

    I have removed the Zoom-in effect and replaced it with dark/icon effect because the zoom-in effect because it requires to keep a fixed width & height of the thumbnail container which is limiting the theme responsiveness and its even slowing your website on mobile phones.

    The old version will be available to download from our website very Soon, but remember using outdated WordPress widgets or themes is very risky.

    By the way, every theme or plugin on WP.org has its own support forum. So please if you have more questions about RedWaves lite theme, start a new topic at this forum https://wordpress.org/support/theme/redwaves-lite

    Kind Regards!

    Theme Author Asmi Khalil

    (@asmi1)

    @marklcm thanks for your support!
    @ thanks for downloading my theme. if you have any further questions please feel free to ask!

    Theme Author Asmi Khalil

    (@asmi1)

    Hi David! thanks for using my theme RedWaves lite!

    Simply remove this block of code:

    <div class="post-img small-post-img">
    			<?php if ( has_post_thumbnail() ) : ?>
    			<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
    			<?php the_post_thumbnail('smallfeatured'); ?>
    			</a>
    			<?php else : ?>
    			<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
    			<img width="298" height="248" src="<?php echo get_template_directory_uri() . '/images/nothumb-298x248.png'; ?>" class="attachment-featured wp-post-image" alt="<?php the_title_attribute(); ?>">
    			</a>
    			<?php endif; ?>
    		</div>

    or (if you are displaying Big featured images instead):

    <div class="single_featured">
    				<?php if ( has_post_thumbnail() ) : ?>
    				<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
    				<?php the_post_thumbnail('big'); ?>
    				</a>
    				<?php else : ?>
    				<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
    				<img width="666" height="333" src="<?php echo get_template_directory_uri() . '/images/nothumb-666x333.png'; ?>" class="attachment-featured wp-post-image" alt="<?php the_title_attribute(); ?>">
    				</a>
    				<?php endif; ?>
    			</div>

    from these files: content.php, content-search.php

    Now to remove thumbnails from “Related Posts” remove this block of code from functions.php (line 904 & line 462)

    <div class="relatedthumb">
    <a>" rel="bookmark" title="<?php the_title_attribute(); ?>">
    <?php the_post_thumbnail('small'); ?>
    </a>
    </div>

    You could use CPanel’s Code Editor, WordPress Editor under Appearance or FTP to edit these files.

    Sorry for the late response! if problem solved please set this topic to Solved

    If you still need help, please create a new topic at our Support Forum.

    Regards!

    Theme Author Asmi Khalil

    (@asmi1)

    Hi @johnworthy,
    Thanks for using my theme RedWaves lite!
    Well, you don’t have to edit the theme functions.php or anything like that! From your WordPress dashboard, Go to Appearance => Customize, open the “Article Settings” tab and scroll down until you see “Post Author Box” option and the fancy switch/checkbox just below it. Uncheck it to hide the Author box and Check it to enable the Author box. Just that simple!

    Sorry for the late answer mate! if you like the theme, please rate it!
    If you still need help, please create a new topic at our Support Forum.

    Regards 🙂

    Theme Author Asmi Khalil

    (@asmi1)

    glad i helped you!

    Kind Regards 🙂

    Theme Author Asmi Khalil

    (@asmi1)

    Well, change

    'mid_size' => 2,

    to:

    'mid_size' => 0,

    Or use the built in pagination function. To do so change:

    <?php // if WP version 4.1.0 or above use the_posts_pagination() built in function.
    		if (4.1 <= floatval(get_bloginfo('version'))):?>
    		<?php the_posts_pagination( array(
    			'mid_size' => 0,
    			'prev_text' => __( '‹ Previous', 'redwaves-lite' ),
    			'next_text' => __( 'Next ›', 'redwaves-lite' ),
    		) ); ?>
    		<?php else : ?>
    		<?php redwaves_pagination(); ?>
    		<?php endif; ?>

    to:

    <?php redwaves_pagination(); ?>

    Theme Author Asmi Khalil

    (@asmi1)

    Ah just one note: if you are using WP 4.0 or below you only have the first fix!

    Theme Author Asmi Khalil

    (@asmi1)

    Hi uebas, Thanks for using my theme RedWaves lite!

    I have 2 fixes for your issue! choose the one you like more:

    Fix1: This will add a bottom padding to the pagination buttons so they won’t stick vertically to each other again:

    Go to Appearance => Customize => Design & Layout and put the following CSS styles in the Custom CSS textfield then save.

    .nav-links .page-numbers {
      margin-bottom: 10px;
    }

    Alternatively, you can add them directly to your style.css file.

    Fix2: This will shorten the pagination buttons by removing (in your case) the “1” and “5”:

    open index.php from WordPress file editor (Appearance => Editor then select index.php from the sidebar) or using FTP or CPanel and find this block of code:

    <?php // if WP version 4.1.0 or above use the_posts_pagination() built in function.
    		if (4.1 <= floatval(get_bloginfo('version'))):?>
    		<?php the_posts_pagination( array(
    			'mid_size' => 2,
    			'prev_text' => __( '‹ Previous', 'redwaves-lite' ),
    			'next_text' => __( 'Next ›', 'redwaves-lite' ),
    		) ); ?>

    and replace it with this:

    <?php // if WP version 4.1.0 or above use the_posts_pagination() built in function.
    		if (4.1 <= floatval(get_bloginfo('version'))):?>
    		<?php the_posts_pagination( array(
    			'mid_size' => 1,
    			'prev_text' => __( '‹ Previous', 'redwaves-lite' ),
    			'next_text' => __( 'Next ›', 'redwaves-lite' ),
    		) ); ?>

    If you have more questions please check our dedicated Support Forum https://forum.themient.com/ ( our main Website and forum are very secured and SSL enabled ) and you will get quicker answer.

    Hope this helped you!
    Regards!

    Theme Author Asmi Khalil

    (@asmi1)

    Hi zamora20! thanks for using RedWaves lite!

    Please don’t post multiple times the same question. i already answered you here:
    https://wordpress.org/support/topic/red-waves-themes-images-donot-show-in-posts-front-page-why?replies=2

    Regards!

Viewing 15 replies - 46 through 60 (of 64 total)