Forum Replies Created

Viewing 20 posts - 3,161 through 3,180 (of 4,908 total)
  • Author
    Posts
  • in reply to: Slider – remove links #96248
    Mahesh
    Participant

    @rolandallen: For that, you’ll need to do a little change in the above code. In the above code replace the following line:

    <h1 class="entry-title">
        <a title="Permalink to '.the_title('','',false).'" href="' . get_permalink() . '">'.the_title( '<span>','</span>', false ).'</a>
    </h1>

    With the code below:
    <h1 class="entry-title">' . the_title() . '</h1>

    Regards,
    Mahesh

    in reply to: integrating WooCommerce #96247
    Mahesh
    Participant

    @gmg-jet: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Can't Modify Catch Responsive Pro V3.9 #96246
    Mahesh
    Participant

    @ukufner: I check your site, the menu seems to be working fine. All links in menu are pointing to the appropriate pages. No HTTP ERROR issue found.
    If you are having problem again, go to Dashboard=> Settings=> Permalinks and click Save Changes button and check if it resolves the issue.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Can't Modify Catch Responsive Pro V3.9 #96231
    Mahesh
    Participant

    @ukufner: Please post in your site URL.

    Regards,
    Mahesh

    in reply to: Slider – remove links #96229
    Mahesh
    Participant

    @rolandallen:
    Hi Roland,

    What seems to be the problem. I tried your code in our server and it is working fine.
    Let me know further. Please post in your site URL.

    Regards,
    Mahesh

    in reply to: integrating WooCommerce #96227
    Mahesh
    Participant

    @gmg-jet:
    Hi Henriët,

    Just to let you know that, the latest version 3.2.1 of Gridalicious Pro is released and is now available. The theme has been made WooCommerce ready. Please download the latest version and update the theme.

    Regards,
    Mahesh

    in reply to: Hide dropdown pages in mobile menu #96186
    Mahesh
    Participant

    @heidi-lewis: I’m afraid this is not possible. Because the menu is dynamically generated with tinyNav plugin and all menus and sub menus resides into same ul as li elements and cannot be distinguished which are menus and which are sub-menus.

    Regards,
    Mahesh

    in reply to: Update doesn't work. #96183
    Mahesh
    Participant

    @josefkuhnt: Please fill in the form in the link below with the details and problem, and we will check it for you.
    https://catchthemes.com/blog/theme-customizer-not-working-wordpress-update/

    Regards,
    Mahesh

    in reply to: integrating WooCommerce #96182
    Mahesh
    Participant

    @gmg-jet: The update will be available within 24 or 48 hours. So I recommend you to have patience till then.

    Regards,
    Mahesh

    in reply to: integrating WooCommerce #96158
    Mahesh
    Participant

    @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
    Participant

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

    Regards,
    Mahesh

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

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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

    in reply to: Danish translations #96115
    Mahesh
    Participant

    @kundkp: The translation for theme to danish is not complete. As soon as it completes, we’ll include it in the theme.
    For now, please use the file in following link.
    http://bit.ly/2alNxUT

    Regards,
    Mahesh

    Mahesh
    Participant

    @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
    Participant

    @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
    Participant

    @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

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