Forum Replies Created

Viewing 20 posts - 4,621 through 4,640 (of 4,916 total)
  • Author
    Posts
  • in reply to: Background Image and Background Scroll #83859
    Mahesh
    Participant

    Hi @matthewseanmclachlan,

    To decrease opacity, you have to decrease the last value i.e. 1 in the above CSS code. Range (0 to 1). Replace above with the following.
    The code adds up drop shadow to slider as well.

    #main article.post, #main-slider {
    -webkit-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
    }

    Note:
    box-shadow: h-shadow v-shadow blur-distance spread rgba( red, green, blue, opacity );

    Hope this clarifies you.

    Regards,
    Mahesh

    in reply to: Fixed (sticky) sidebar widgets #83855
    Mahesh
    Participant

    Hi @eggbanana,

    This is beyond the theme support scope. You need to either hire a customizer or contact the plugin support.

    Regards,
    Mahesh

    in reply to: All sliders link to only one page #83854
    Mahesh
    Participant

    Hi @Raielene,

    In Catch Kathmandu Free Version, you can only put the post images in the slider, and the link by default points to its relative post. In Catch Kathmandu Pro Version, you have other features in slider image such as post, page, category or custom image (with custom link). I recommend you to upgrade to Pro version.

    Regards,
    Mahesh

    in reply to: Display Header Image on Blog Posts Page Only #83851
    Mahesh
    Participant

    Hi @pal_coche,

    Assuming you are trying to display the header image in Blog Post Page ONLY.
    For the above, you’ve to create child theme, you can find more details on creating child theme HERE. Then in child theme’s functions.php, add the following codes.

    /**
     * Display header image in blog page only
     *
     */
    function catchbase_featured_overall_image() {
    	if ( is_home() ) {
    		catchbase_featured_image();
    	}
    }

    Note: This will override the header image function of the Main theme and will display the header image on blog page only. Adding this function, Enable Featured Header Image on in Header Image of customizer won’t work as it is being overridden.

    Regards,
    Mahesh

    in reply to: Help! Problem with 3.3 update #83850
    Mahesh
    Participant

    Hi @Kim,

    I’ve checked your site. The site is running with Catch Flames Pro 3.3. What seems to look different? Can you clarify it more with image (if possible). The Captcha is displaying at the footer.

    Regards,
    Mahesh

    in reply to: help with translation #83849
    Mahesh
    Participant

    Hi @Anton,

    Sakin will help you with this.

    Regards,
    Mahesh

    in reply to: removing image (new york) from the slider… #83847
    Mahesh
    Participant

    Hi @gfde,

    Thank you for using Catch Base Pro.
    The image you are seeing is the Demo Slider. To change the slider, go to “Dashboard=> Appearance=> Customize=> Featured Slider”. In Catch Base Pro, you have five different Slider Type options:
    1. Demo Slider (Displays Demo Slider)
    2. Page Slider (Displays selected page in slider. Select Page)
    3. Post Slider (Displays selected post in slider. Select Post ID)
    4. Image Slider (Displays selected image in slider. Upload Image)
    5. Category Slider (Displays selected category’s post in slider. Select Category)
    Choose one of the above option from drop-down in Select Slider Type and the choose number of sliders.
    The Slider options varies as per the Slider Type selected.

    Hope this helps you.

    Regards,
    Mahesh

    in reply to: Mobile Menu Alignment #83845
    Mahesh
    Participant

    Hi @ni_kiwi,

    No there is no such feature in Catch Responsive or Catch Responsive Pro. You can achieve it with Custom CSS. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    .sidr ul li a, .sidr ul li span {
        text-align: right;
    }

    Regards,
    Mahesh

    in reply to: image in Promotion headline doesn't appear on mobile #83844
    Mahesh
    Participant

    Hi PG,

    For the mentioned issue, replace your CSS above for #promotion-message .section with the following CSS:

    #promotion-message .section {
        background-image: url("http://pegewebdesign.helpinghands-uk.com/wp-content/uploads/2016/01/matt-furniture-maker-logo.png") !important;
        background-position: center center;
        background-repeat: no-repeat !important;
        background-size: cover;
    }

    Regards,
    Mahesh

    in reply to: Adding a link to the footer #83786
    Mahesh
    Participant

    Hi @towerlexa,

    Thank you for your appreciation.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Adding a link to the footer #83784
    Mahesh
    Participant

    Hi @towerlexa,

    Thank you for the consideration.
    Assuming you have already created the child theme. Add following codes in your child theme’s functions.php.

    function catchresponsive_child_footer_content() {
    	//catchresponsive_flush_transients();
    	if ( ( !$catchresponsive_footer_content = get_transient( 'catchresponsive_footer_content' ) ) ) {
    		echo '<!-- refreshing cache -->';
    
    		$catchresponsive_content = catchresponsive_get_content();
    
    		$catchresponsive_footer_content =  '
        	<div id="site-generator">
        		<div class="wrapper">
        			<div id="custom-links">
        			    <a title="Data Link" href="#" target="_self">Data Link</a> |
        			    <a title="Cookie Link" href="#" target="_self">Cookie Link</a> |
        			    <a title="Security Link" href="#" target="_self">Security Link</a>
        			</div>
        			<div id="footer-content" class="copyright">'
        				. $catchresponsive_content['left']
        				. ' | '
        				. $catchresponsive_content['right'] .
        			'</div>
    			</div><!-- .wrapper -->
    		</div><!-- #site-generator -->';
    
        	set_transient( 'catchresponsive_footer_content', $catchresponsive_footer_content, 86940 );
        }
    
        echo $catchresponsive_footer_content;
    }
    
    add_action( 'init', 'catchresponsive_child_add_links_in_footer' );
    
    function catchresponsive_child_add_links_in_footer() {
    	remove_action( 'catchresponsive_footer', 'catchresponsive_footer_content', 100 );
    	add_action( 'catchresponsive_footer', 'catchresponsive_child_footer_content', 100 );
    }

    Note: Please change the title and href attributes of the anchor tags to your desired title and links. If you want the link to open link in the save window/tab leave the target attribute as it is but if you want it to open in new tab, replace “_self” with “_blank”.

    Regards,
    Mahesh

    in reply to: change text from copyright #83773
    Mahesh
    Participant

    Hi @marga,

    No, you do no need to create a new site, you only need to install Pro theme in you current WordPress installation then activate the theme.

    Regards,
    Mahesh

    in reply to: Submenus' Background color #83772
    Mahesh
    Participant

    Hi @eirini,

    Please add the following CSS in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box:

    #header-menu ul.menu ul.sub-menu li:hover > a {
        background-color: #e5e5e5;
    }

    Regards,
    Mahesh

    in reply to: Unlink the date function in the blog #83765
    Mahesh
    Participant

    Hi Baron,

    Thank you for using Catch Responsive Pro.
    For the above, you have to create a child theme. You can find more details on creating the child theme HERE. Then in child theme’s functions.php add the following codes.

    function catchresponsive_entry_meta() {
    	echo '<p class="entry-meta">';
    
    	$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
    
    	if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
    		$time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time><time class="updated" datetime="%3$s">%4$s</time>';
    	}
    
    	$time_string = sprintf( $time_string,
    		esc_attr( get_the_date( 'c' ) ),
    		esc_html( get_the_date() ),
    		esc_attr( get_the_modified_date( 'c' ) ),
    		esc_html( get_the_modified_date() )
    	);
    
    	printf( '<span class="posted-on">%1$s %3$s</span>',
    		sprintf( _x( '<span class="screen-reader-text">Posted on</span>', 'Used before publish date.', 'catch-responsive' ) ),
    		esc_url( get_permalink() ),
    		$time_string
    	);
    
    	if ( is_singular() || is_multi_author() ) {
    		printf( '<span class="byline"><span class="author vcard">%1$s<a class="url fn n" href="%2$s">%3$s</a></span></span>',
    			sprintf( _x( '<span class="screen-reader-text">Author</span>', 'Used before post author name.', 'catch-responsive' ) ),
    			esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
    			esc_html( get_the_author() )
    		);
    	}
    
    	if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) {
    		echo '<span class="comments-link">';
    		comments_popup_link( esc_html__( 'Leave a comment', 'catch-responsive' ), esc_html__( '1 Comment', 'catch-responsive' ), esc_html__( '% Comments', 'catch-responsive' ) );
    		echo '</span>';
    	}
    
    	edit_post_link( esc_html__( 'Edit', 'catch-responsive' ), '<span class="edit-link">', '</span>' );
    
    	echo '</p><!-- .entry-meta -->';
    }

    Regards,
    Mahesh

    in reply to: Featured Content 2 images. #83764
    Mahesh
    Participant

    Hi @husker,

    It seems your page “Left Column Main Page” has the same image as the featured image in its content, that is why it is displaying two times. Please edit the page and remove the image from the content, then only one image i.e. featured image will be displayed.

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @fishingguy,

    Wow, that’s great to know you fixed it.
    Do you meant to hide all text in the slider. If so go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    #feature-slider .entry-container {
        display: none;
    }

    If you want to hide just the content text, add the following CSS instead the above.

    #feature-slider .entry-content {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: no menu on mobile #83762
    Mahesh
    Participant

    Hi @dallaseventaudio,

    It is a bug in Clean Box.
    Either you have to wait for the update or for quick fix you have to create the child theme and modify some functions. You can find more details on creating child theme HERE. In child theme’s functions.php add the following codes.

    function clean_box_primary_menu() {
        $options  = clean_box_get_theme_options();
    	?>
        <div id="fixed-header-top">
            <div class="wrapper">
                <div id="mobile-primary-menu" class="mobile-menu-anchor fixed-primary-menu">
                    <a href="#mobile-primary-nav" id="primary-menu-anchor" class="genericon genericon-menu">
                        <span class="mobile-menu-text screen-reader-text">
                            <?php esc_html_e( 'Menu', 'clean-box' ); ?>
                        </span>
                    </a>
                </div><!-- #mobile-primary-menu -->
    
                <?php
                    $logo_alt = ( '' != $options['logo_alt_text'] ) ? $options['logo_alt_text'] : get_bloginfo( 'name', 'display' );
    
                    if ( isset( $options[ 'logo_icon' ] ) &&  $options[ 'logo_icon' ] != '' &&  !empty( $options[ 'logo_icon' ] ) ){
                         echo '<div id="logo-icon"><a href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" rel="home">
                            <img src="' . esc_url( $options['logo_icon'] ) . '" alt="' . esc_attr( $logo_alt ). '">
                        </a></div>';
                    }
                ?>
    
               <nav class="nav-primary search-enabled" role="navigation">
                    <h1 class="assistive-text"><?php _e( 'Primary Menu', 'clean-box' ); ?></h1>
                    <div class="screen-reader-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'clean-box' ); ?>"><?php _e( 'Skip to content', 'clean-box' ); ?></a></div>
                    <?php
                        if ( has_nav_menu( 'primary' ) ) {
                            $clean_box_primary_menu_args = array(
                                'theme_location'    => 'primary',
                                'menu_class'        => 'menu clean-box-nav-menu',
                                'container'         => false
                            );
                            wp_nav_menu( $clean_box_primary_menu_args );
                        }
                        else {
                            wp_page_menu( array( 'menu_class'  => 'page-menu-wrap' ) );
                        }
    
                        ?>
                </nav><!-- .nav-primary -->
    
                <div id="header-toggle">
                    <a href="#header-toggle-sidebar" class="genericon"><span class="header-toggle-text screen-reader-text"><?php _e( 'Show Header Sidebar Content', 'clean-box' ); ?></span></a>
                </div>
    
                <div id="header-toggle-sidebar" class="widget-area displaynone" role="complementary">
                    <?php if ( is_active_sidebar( 'header-toggle' ) ) { ?>
                        <?php dynamic_sidebar( 'header-toggle' ); ?>
                    <?php
                    }
                    else { ?>
                        <section class="widget widget_search" id="header-serach">
                            <?php get_search_form(); ?>
                        </section>
    
                        <?php
    
                        if ( '' != ( $clean_box_social_icons = clean_box_get_social_icons() ) ) { ?>
                            <section class="widget widget_clean_box_social_icons" id="header-social-icons">
                                <div class="widget-wrap">
                                    <?php echo $clean_box_social_icons; ?>
                                </div>
                            </section>
                        <?php
                        }
                    }
                    ?>
                </div><!-- #header-toggle-sidebar -->
            </div><!-- .wrapper -->
        </div><!-- #fixed-header-top -->
        <?php
    }

    Regards,
    Mahesh

    in reply to: change text from copyright #83761
    Mahesh
    Participant

    Hi @marga,

    Thank you for your appreciation.
    1. In Catch Base Free version, feature to change copyright text is not available, however, it is available in Catch Base Pro. I recommend you to upgrade to pro version.

    2. For removing link from slider, you have to create a child theme. You can find more details on creating child theme HERE. Then in functions.php add the following codes.

    function catchbase_page_slider( $options ) {
    	$quantity		= absint( $options['featured_slide_number'] );
    
    	global $post;
    
        $output 				= '';
        $number_of_page 		= 0; 		// for number of pages
    	$page_list				= array();	// list of valid page ids
    
    	//Get number of valid pages
    	for( $i = 1; $i <= $quantity; $i++ ){
    		if( isset ( $options['featured_slider_page_' . $i] ) && $options['featured_slider_page_' . $i] > 0 ){
    			$number_of_page++;
    
    			$page_list	=	array_merge( $page_list, array( $options['featured_slider_page_' . $i] ) );
    		}
    
    	}
    
    	if ( !empty( $page_list ) && $number_of_page > 0 ) {
    		$get_featured_posts = new WP_Query( array(
    			'posts_per_page'	=> $quantity,
    			'post_type'			=> 'page',
    			'post__in'			=> $page_list,
    			'orderby' 			=> 'post__in'
    		));
    		$i=0;
    
    		while ( $get_featured_posts->have_posts()) {
    			$get_featured_posts->the_post();
    
    			$i++;
    
    			$title_attribute =the_title_attribute( array( 'before' => __( 'Permalink to:', 'catch-base' ), 'echo' => false ) );
    
    			$excerpt = get_the_excerpt();
    
    			if ( $i == 1 ) { $classes = 'page pageid-'.$post->ID.' hentry slides displayblock'; } else { $classes = 'page pageid-'.$post->ID.' hentry slides displaynone'; }
    			$output .= '
    			<article class="'.$classes.'">
    				<figure class="slider-image">';
    				if ( has_post_thumbnail() ) {
    					$output .= get_the_post_thumbnail( $post->ID, 'catchbase_slider', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class'	=> 'attached-page-image' ) );
    				}
    				else {
    					//Default value if there is no first image
    					$catchbase_image = '<img class="pngfix wp-post-image" src="'.get_template_directory_uri().'/images/gallery/no-featured-image-1200x514.jpg" >';
    
    					//Get the first image in page, returns false if there is no image
    					$catchbase_first_image = catchbase_get_first_image( $post->ID, 'medium', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'attached-page-image' ) );
    
    					//Set value of image as first image if there is an image present in the page
    					if ( '' != $catchbase_first_image ) {
    						$catchbase_image =	$catchbase_first_image;
    					}
    
    					$output .= $catchbase_image;
    				}
    
    				$output .= '
    				</figure><!-- .slider-image -->
    				<div class="entry-container">
    					<header class="entry-header">
    						<h1 class="entry-title">
    							<a title="' . the_title_attribute( array( 'before' => __( 'Permalink to:', 'catch-base' ), 'echo' => false ) ) . '" href="' . get_permalink() . '">'.the_title( '<span>','</span>', false ).'</a>
    						</h1>
    						<div class="assistive-text">'.catchbase_page_post_meta().'</div>
    					</header>';
    					if( $excerpt !='') {
    						$output .= '<div class="entry-content">'. $excerpt.'</div>';
    					}
    					$output .= '
    				</div><!-- .entry-container -->
    			</article><!-- .slides -->';
    		}
    
    		wp_reset_query();
      	}
    	return $output;
    }

    Regards,
    Mahesh

    in reply to: Cannot install Simple Catch Pro version 3.3 #83756
    Mahesh
    Participant

    Hi @rflores,

    In the above code I’ve given, please change true to false so that your code will look like as follows:

    add_action( 'init' , 'simplecatch_child_adjust_image_size');
    function simplecatch_child_adjust_image_size() {
        remove_image_size( 'featured');
    	add_image_size( 'featured', 210, 210, false);
    }

    Then go to “Dashboard=> Tools=> Regen. Thumbnails” and click Regenerate All Thumbnails. Then check your site, it will resize the thumbnails uncropped.

    For your second issue, do you mean the logo “Angelically Spoken”.
    Go to “Dashboard=> Appearance=> Theme Options=> Header Options” and check Disable Header Logo? and click Save.

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @fishingguy,

    I’ve just checked your site. The footer widgets seems to be aligning horizontally.
    Could you clarify it more with an image.

    Regards,
    Mahesh

Viewing 20 posts - 4,621 through 4,640 (of 4,916 total)