Forum Replies Created

Viewing 20 posts - 3,161 through 3,180 (of 4,888 total)
  • Author
    Posts
  • in reply to: integrating WooCommerce #96158
    Mahesh
    Member

    @gmg-jet: One theme is still to be made WooCommerce ready, and it is Gridalicious Pro itself. What are the odds. Sorry for that, the task has been put to high priority and our team is already into it. As soon as its done, we will release the update which will indeed be WooCommerce ready. We’ll let you know as we release it. Thank you for your patience.

    Regards,
    Mahesh

    in reply to: Restore Theme Settings & Add Widgets to Content #96156
    Mahesh
    Member

    @hidemyage: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Slider – remove links #96155
    Mahesh
    Member

    @rolandallen: Thought you were using Category Slider. 🙂
    For Post Slider, add the following code intead:

    function catchkathmandu_post_sliders() {
    	//delete_transient( 'catchkathmandu_post_sliders' );
    
    	global $post;
    	global $catchkathmandu_options_settings;
       	$options = $catchkathmandu_options_settings;
    
    	if( ( !$catchkathmandu_post_sliders = get_transient( 'catchkathmandu_post_sliders' ) ) && !empty( $options[ 'featured_slider' ] ) ) {
    		echo '<!-- refreshing cache -->';
    
    		$catchkathmandu_post_sliders = '
    		<div id="main-slider" class="container">
            	<section class="featured-slider">';
    				$get_featured_posts = new WP_Query( array(
    					'posts_per_page' => $options[ 'slider_qty' ],
    					'post__in'		 => $options[ 'featured_slider' ],
    					'orderby' 		 => 'post__in',
    					'ignore_sticky_posts' => 1 // ignore sticky posts
    				));
    				$i=0; while ( $get_featured_posts->have_posts()) : $get_featured_posts->the_post(); $i++;
    					$title_attribute = apply_filters( 'the_title', get_the_title( $post->ID ) );
    					$excerpt = get_the_excerpt();
    					if ( $i == 1 ) { $classes = 'post postid-'.$post->ID.' hentry slides displayblock'; } else { $classes = 'post postid-'.$post->ID.' hentry slides displaynone'; }
    					$catchkathmandu_post_sliders .= '
    					<article class="'.$classes.'">
    						<figure class="slider-image">
    							'. get_the_post_thumbnail( $post->ID, 'slider', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class'	=> 'pngfix' ) ).'
    						</figure>
    						<div class="entry-container">
    							<header class="entry-header">
    								<h1 class="entry-title">
    									<a title="Permalink to '.the_title('','',false).'" href="' . get_permalink() . '">'.the_title( '<span>','</span>', false ).'</a>
    								</h1>
    								<div class="assistive-text">'.catchkathmandu_page_post_meta().'</div>
    							</header>';
    							if( $excerpt !='') {
    								$catchkathmandu_post_sliders .= '<div class="entry-content">'. $excerpt.'</div>';
    							}
    							$catchkathmandu_post_sliders .= '
    						</div>
    					</article><!-- .slides -->';
    				endwhile; wp_reset_query();
    				$catchkathmandu_post_sliders .= '
    			</section>
            	<div id="slider-nav">
            		<a class="slide-previous"><</a>
            		<a class="slide-next">></a>
            	</div>
            	<div id="controllers"></div>
      		</div><!-- #main-slider -->';
    
    	set_transient( 'catchkathmandu_post_sliders', $catchkathmandu_post_sliders, 86940 );
    	}
    	echo $catchkathmandu_post_sliders;
    } // catchkathmandu_post_sliders

    Regards,
    Mahesh

    in reply to: Update doesn't work. #96154
    Mahesh
    Member

    @josefkuhnt: Did the update complete successfully without any errors? Are you using any plugins? If so, try disabling in and check if it resolves the issue.
    The customizer is working fine on our server.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Number of Slider #96153
    Mahesh
    Member

    @maeva: If you are customizing the theme, it is highly recommended to use a child theme. Because when updating, you’ll lose all the customization. You can find more on creating child theme HERE.
    For adding one more slide to your slider, add the following code in the link below in your child theme’s functions.php.
    http://bit.ly/2a18vbO
    Note: Please replace the url for third image with your desired.

    Regards,
    Mahesh

    in reply to: Update doesn't work. #96118
    Mahesh
    Member

    @josefkuhnt: For updating theme please use Catch Web Tool plugin’s Catch Updater module.
    Plugin: https://wordpress.org/plugins/catch-web-tools/
    Here is the video of how to update theme using Catch Updater.
    https://www.youtube.com/watch?v=W95SuabDZi8

    Regards,
    Mahesh

    in reply to: Number of Slider #96117
    Mahesh
    Member

    @maeva: Go to Dashboard=> Appearance=> Customize=> Featured Slider and select Featured Page Slider in Select Slider Type then select desired number of slider you want to display. You have to select pages to display as slider and the slider use the page’s featured image as slides.
    If you want Custom Image in Slider, I recommend you upgrade to Catch Base Pro.

    Regards,
    Mahesh

    Mahesh
    Member

    @luci1708:
    Hi Luci,

    Thanks, I see it now.
    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .home #content-sidebar {
        padding-top: 0;
        margin-top: -21px;
    }
    
    .home #content .hentry {
        padding-top: 0;
    }

    Regards,
    Mahesh

    Mahesh
    Member

    @luci1708: Could you explain a bit more, I checked your site but do not have idea of where you want to remove the space. Can you please show me with an image.

    Regards,
    Mahesh

    in reply to: Change color of Menu #96102
    Mahesh
    Member

    @martijn: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .menu-item a {
        color: #00ff00; 
    }
    
    .menu-item a:hover {
        color: #0000ff;
    }

    Note: Please change the color as desired.

    Regards,
    Mahesh

    in reply to: How to use full width pages AND pages with sidebars #96101
    Mahesh
    Member

    @giselle: Thank you for your appreciation. Glad to know your issue is resolved. Have a nice day!

    Regards,
    Mahesh

    in reply to: How to change ALT's on social icons #96071
    Mahesh
    Member

    @moiseika: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: problems with footer #96070
    Mahesh
    Member

    @antoon: Glad to know your issue is resolved. Have a nice day!

    Regards,
    Mahesh

    in reply to: footer text #96069
    Mahesh
    Member

    @dorleeins: It will only work if German language is set as active because the change is made in the translation file only. The content cannot be changed with CSS. For custom Text I recommend you to upgrade to pro. Or create a child theme and customize it. You can find more details on creating child theme HERE. For customization I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: How to use full width pages AND pages with sidebars #96057
    Mahesh
    Member

    @giselle: As far as I understand from the above, you are trying to have different layout in different pages, for example, full page layout in homepage and a layout with sidebar in say Page A.
    This option is already available in the theme.
    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options and select a layout in Sidebar Layout Options, this will be your default layout for your site. Then for the pages you want to have different layout, go to Dashboard=> Pages and edit the selected page and select desired layout for that page in Sidebar Layout option.

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: footer text #96056
    Mahesh
    Member

    @dorleeins: For hiding “Catch Adaptive von Catch Themes”, you can use custom CSS. Go to Dashboard=> Appearance=> Custom CSS=> Theme Options=> Custom CSS box and add the following CSS:

    #footer-right-content {
        display: none;
    }

    For the second one, you can edit de_DE.po file and replace line 709 with the following:
    msgstr "Copyright &copy; %1$s %2$s. Alle Rechte vorbehalten."

    If you want to edit and have custom text in footer, I recommend you to upgrade to Pro. The option is already available in Catch Adaptive Pro.

    Regards,
    Mahesh

    in reply to: How to change ALT's on social icons #96055
    Mahesh
    Member

    @moiseika: Well for that, you’ll need to create a child and customize. You can find more details on creating child theme HERE. Then in your child theme override the function catchevolution_social_networks. This is located in catch-evolution/inc/catchevolutions-functions.php file.

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: problems with footer #96054
    Mahesh
    Member

    @antoon: Please add the following CSS:

    .footer-item ul {
        margin-left: 0;
    }

    Regards,
    Mahesh

    in reply to: Links in posts not working on first page #96053
    Mahesh
    Member

    @alex1337:
    Hi Alex,

    Glad to know your issue is resolved. Have a nice day!

    Regards,
    Mahesh

    Mahesh
    Member

    @inquisitive: Please override the function catchbox_content_nav in functions.php.
    Let me know if any problem.

    Regards,
    Mahesh

Viewing 20 posts - 3,161 through 3,180 (of 4,888 total)