Forum Replies Created

Viewing 15 replies - 256 through 270 (of 471 total)
  • Hi Oscar,

    Awesome great to see you got that resolved.

    Please advise if you have more questions.

    Have a fantastic day!

    Cheers,
    Movin

    Hi @admin189,

    I hope you are well today and thank you for your questions.

    1. I need to remove the gray color that’s behind white tiles/columns/boxes ,so that its plain white, no boxes/columns

    You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

    Admin Area -> Appearance -> Customize -> Travelify Other Options

    aside.widget,
    article {
        box-shadow: none;
        -webkit-box-shadow: none;
        border: 0;
    }

    2.I want to decrease the height of my top header so that only my logo is there and toppest blue bar should be removed

    Please use the following CSS code to achieve this.

    html body{
    	border-top: 0;
    }
    
    hgroup#site-logo {
        margin-top: 0;
    }
    div.hgroup-wrap {
        padding-bottom: 0;
        padding-top: 0;
    }
    #branding div.hgroup-wrap {
        background-color: #fff;
    }

    Best Regards,
    Movin

    Hi @jaodei,

    I hope you are well today and thanks for posting here.

    To troubleshoot the issue i visited your shared test-category URL but it’s displaying on that page “Not found” error so it seems you have not assigned any post to this category.

    Please advise.

    Kind Regards,
    Movin

    Hi @gerlachus,

    Awesome great to see you got that resolved.

    Please advise if you have more questions.

    Have a fantastic day!

    Cheers,
    Movin

    Hi @simon_a6,

    I hope you are well today and thanks for posting here.

    I have notified this to the theme developer and it will be changed in the future version of the theme.

    In the meanwhile you can change it by creating file colorlib-plugin.php in your WordPress wp-content/plugins directory and add the following code in it.

    <?php
    /*
    Plugin Name: Colorlib Plugin
    Description: Quick Custom Solution Plugin for Implementing Custom Solution.
    Version: 1.0.0
    Author: Movin
    Author URI: http://freewptp.com/
    License: GNU General Public License (Version 2 - GPLv2)
    */
    
    function modify_travelify_headerdetails(){
    
        remove_action( 'travelify_header', 'travelify_headerdetails' );
        add_action( 'travelify_header', 'custom_travelify_headerdetails', 10 );
    }
    add_action( 'init', 'modify_travelify_headerdetails' );
    
    /**
     * Shows Header Part Content
     *
     * Shows the site logo, title, description, searchbar, social icons etc.
     */
    function custom_travelify_headerdetails() {
    ?>
    	<?php
    		global $travelify_theme_options_settings;
       	$options = $travelify_theme_options_settings;
    
       	$elements = array();
    		$elements = array(
    			$options[ 'social_facebook' ],
    			$options[ 'social_twitter' ],
    			$options[ 'social_googleplus' ],
    			$options[ 'social_linkedin' ],
    			$options[ 'social_pinterest' ],
    			$options[ 'social_youtube' ],
    			$options[ 'social_vimeo' ],
    			$options[ 'social_flickr' ],
    			$options[ 'social_tumblr' ],
    			$options[ 'social_instagram' ],
    			$options[ 'social_rss' ],
    			$options[ 'social_github' ]
    		);
    
    		$flag = 0;
    		if( !empty( $elements ) ) {
    			foreach( $elements as $option) {
    				if( !empty( $option ) ) {
    					$flag = 1;
    				}
    				else {
    					$flag = 0;
    				}
    				if( 1 == $flag ) {
    					break;
    				}
    			}
    		}
    	?>
    
    	<div class="container clearfix">
    		<div class="hgroup-wrap clearfix">
    					<section class="hgroup-right">
    						<?php travelify_socialnetworks( $flag ); ?>
    					</section><!-- .hgroup-right -->
    				<hgroup id="site-logo" class="clearfix">
    					<?php
    						if( $options[ 'header_show' ] != 'disable-both' && $options[ 'header_show' ] == 'header-text' ) {
    						?>
    							<h1 id="site-title">
    								<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
    									<?php bloginfo( 'name' ); ?>
    								</a>
    							</h1>
    							<h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>
    						<?php
    						}
    						elseif( $options[ 'header_show' ] != 'disable-both' && $options[ 'header_show' ] == 'header-logo' ) {
    						?>
    							<h1 id="site-title"><?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?></h1>
                                                            <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
                                                                    <img src="<?php echo $options[ 'header_logo' ]; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
                                                            </a>
    						<?php
    						}
    						?>
    
    				</hgroup><!-- #site-logo -->
    
    		</div><!-- .hgroup-wrap -->
    	</div><!-- .container -->
    	<?php $header_image = get_header_image();
    			if( !empty( $header_image ) ) :?>
    				<img src="<?php echo esc_url( $header_image ); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
    			<?php endif; ?>
    	<?php
    		if ( has_nav_menu( 'primary' ) ) {
    			$args = array(
    				'theme_location'    => 'primary',
    				'container'         => '',
    				'items_wrap'        => '<ul class="root">%3$s</ul>'
    			);
    			echo '<nav id="main-nav" class="clearfix">
    					<div class="container clearfix">';
    				wp_nav_menu( $args );
    			echo '</div><!-- .container -->
    					</nav><!-- #main-nav -->';
    		}
    		else {
    			echo '<nav id="main-nav" class="clearfix">
    					<div class="container clearfix">';
    				wp_page_menu( array( 'menu_class'  => 'root' ) );
    			echo '</div><!-- .container -->
    					</nav><!-- #main-nav -->';
    		}
    	?>
    		<?php
    		if( is_home() || is_front_page() ) {
    			if( "0" == $options[ 'disable_slider' ] ) {
    				if( function_exists( 'travelify_pass_cycle_parameters' ) )
       				travelify_pass_cycle_parameters();
       			if( function_exists( 'travelify_featured_post_slider' ) )
       				travelify_featured_post_slider();
       		}
       		}
    
    		else {
    			if( ( '' != travelify_header_title() ) || function_exists( 'bcn_display_list' ) ) {
    		?>
    			<div class="page-title-wrap">
    	    		<div class="container clearfix">
    	    			<?php
    		    		if( function_exists( 'travelify_breadcrumb' ) )
    						travelify_breadcrumb();
    					?>
    				   <h3 class="page-title"><?php echo travelify_header_title(); ?></h3><!-- .page-title -->
    				</div>
    	    	</div>
    	   <?php
    	   	}
    		}
    }

    Best Regards,
    Movin

    Hi @javad2000,

    I hope you are well today and thanks for posting here.

    I have created a feature request for it on the following page so that it can be considered to be developed in the future version of the theme.

    https://github.com/puikinsh/Travelify/issues/17

    Thanks,
    Movin

    Hi Michele,

    Thank you for your question.

    I visited your site and it seems working fine with color changes implemented.

    Have you managed to achieve it?

    Please advise.

    Kind Regards,
    Movin

    Hi @beth11,

    Sorry to hear of the problem you are having.

    We have found out that it’s the theme issue which will be resolved in the theme ASAP.

    In the meanwhile you can resolve it by using the solution posted in the following reply.

    https://colorlib.com/wp/forums/topic/links-on-iphone/#post-39425

    Best Regards,
    Movin

    Hi Oscar,

    I hope you are well today and thank you for your question.

    To translate it in the Italian language could you please refer the solution posted in the following reply for the french language translation?

    https://colorlib.com/wp/forums/topic/search-bar-translation/#post-33617

    Best Regards,
    Movin

    You are most welcome here 🙂

    You are most welcome here 🙂

    Hi Sameer Panda,

    I hope you are well today and thank you for your question.

    You can try achieving this by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

    Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

    .entry-meta .posted-on a:before {
        content: "Last Updated on ";
    }
    .entry-meta time.entry-date.published {
        display: none;
    }
    .entry-meta time.updated {
        display: inline-block;
    }

    Best Regards,
    Movin

    Hi @lucabrasi40,

    Thank you for your question.

    You can try achieving this by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

    Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

    @media (min-width: 992px){
    div.main-content-inner {
        width: 76.66666667%;
    }
      div#secondary {
        width: 23.33333333%;
    }
    }

    Best Regards,
    Movin

    Hi @lucabrasi40,

    I hope you are well today and thank you for your question.

    You can change the length of excerpt by using the solution posted in the following reply.

    https://colorlib.com/wp/forums/topic/display-excerpt-instead-of-full-content/#post-10844

    If you want to display image in the excerpt then you can do so as described below.

    http://wordpress.stackexchange.com/questions/45543/include-an-image-within-auto-the-excerpt/45560#45560

    Best Regards,
    Movin

    Hi @dankolamers,

    I hope you are well today and thank you for your question.

    Hi I would like to let the page title to appear as a page header above the textual content.

    Could you please tell me a bit more in detail where you want to display the page title and how it should be displayed so that i can help you to achieve it?

    Kind Regards,
    Movin

Viewing 15 replies - 256 through 270 (of 471 total)