Forum Replies Created

Viewing 20 posts - 1,981 through 2,000 (of 2,018 total)
  • Author
    Posts
  • in reply to: 4.3.2 cannot update with Catchbox Updater #80918
    Pratik
    Keymaster

    Hi @vlts,

    Can you let us know your server configuration (if possible) so we can check it?

    in reply to: Custom social image and link #80917
    Pratik
    Keymaster

    Hi @Tiffini,

    Please follow update instructions at http://catchthemes.com/theme-instructions/full-frame-pro/#updating

    in reply to: Mobile menu content #80865
    Pratik
    Keymaster

    hi @casak,
    Can you please post in your site url so that I can check it?

    in reply to: Continue reading wordcount #80845
    Pratik
    Keymaster

    Hi @Gavin Lewis,

    For this, you will need to do a bit of customization using child theme. Please follow following steps:
    1. Create A Child Theme for Catch Evolution. Details for child theme is here

    2. Then in your child theme, make a blank file content.php and add in following code:

    
    <?php
    /**
     * The child template for displaying content overriding parent theme
     *
     * @package Catch Themes
     * @subpackage Catch_Evolution_Child
     */
    ?>
    <?php
    	// get data value from theme options
    	global $catchevolution_options_settings;
        $options = $catchevolution_options_settings;
    	$layout = $options[ 'sidebar_layout' ];
    	if ( $layout == 'no-sidebar-full-width' ) { 
    		$imagesize = "featured-slider-larger";
    	} 
    	else { 
    		$imagesize = "featured-slider";
    	}
    ?>
    
    	<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    		<header class="entry-header">
    			<?php if ( is_sticky() ) : ?>
    				<hgroup>
    					<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'catch-evolution' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
    					<h3 class="entry-format"><?php _e( 'Featured', 'catch-evolution' ); ?></h3>
    				</hgroup>
    			<?php else : ?>
    			<h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'catch-evolution' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
    			<?php endif; ?>
    
    			<?php if ( 'post' == get_post_type() ) : ?>
                    <div class="entry-meta">
                        <?php catchevolution_posted_on(); ?>
                        <?php if ( comments_open() && ! post_password_required() ) : ?>
                        	<span class="sep"> &mdash; </span>
                            <span class="comments-link">
                             	<?php comments_popup_link(__('Leave a reply', 'catch-evolution'), __('1 Comment &darr;', 'catch-evolution'), __('% Comments &darr;', 'catch-evolution')); ?>
                            </span>
                        <?php endif; ?>
                    </div><!-- .entry-meta -->
    			<?php endif; ?>
    		</header><!-- .entry-header -->
            	
    		 <?php 
    			global $catchevolution_options_settings;
        		$options = $catchevolution_options_settings;
    			$current_content_layout = $options['content_layout'];
    			$catchevolution_excerpt = get_the_excerpt();
    		if ( is_search() ) : // Only display Excerpts for Search ?>
                <div class="entry-summary">
                    <?php the_excerpt(); ?>
                </div><!-- .entry-summary -->
            <?php elseif ( post_password_required() ) : // Password Protected Post ?>
                <div class="entry-content">
                    <?php the_content(); ?>
                </div><!-- .entry-summary -->    
            <?php elseif ( $current_content_layout=='excerpt' && !empty( $catchevolution_excerpt ) ) : // Only display Featured Image and Excerpts if checked in Theme Option ?>
                <div class="entry-summary">
                    <?php if( has_post_thumbnail() ):?>
                   		<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'catch-evolution' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark">
    						<?php the_post_thumbnail( $imagesize ); ?>
                       	</a>
                    <?php endif; ?>
                    <?php the_excerpt(); ?>
                </div><!-- .entry-summary -->
    		<?php else : ?>
    		<div class="entry-content">
    			<?php if( has_post_thumbnail() ):?>
               		<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'catch-evolution' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark">
    					<?php the_post_thumbnail( $imagesize ); ?>
                   	</a>
                <?php endif; ?>
    			<?php 
    			global $catchevolution_options_settings;
    			$options = $catchevolution_options_settings;
    			$more_tag_text = $options[ 'more_tag_text' ];
    			the_content( sprintf( __( '%s', 'catch-evolution' ), esc_attr( $more_tag_text ) ) ); ?>
    			<?php wp_link_pages( array( 
                    'before'		=> '<div class="page-link"><span class="pages">' . __( 'Pages:', 'catch-evolution' ) . '</span>',
                    'after'			=> '</div>',
                    'link_before' 	=> '<span>',
                    'link_after'   	=> '</span>',
                ) ); 
                ?>
    		</div><!-- .entry-content -->
    		<?php endif; ?>
    
    		<footer class="entry-meta">
    			<?php $show_sep = false; ?>
    			<?php if ( 'post' == get_post_type() ) : // Hide category and tag text for pages on Search ?>
    			<?php
    				/* translators: used between list items, there is a space after the comma */
    				$categories_list = get_the_category_list( __( ', ', 'catch-evolution' ) );
    				if ( $categories_list ):
    			?>
    			<span class="cat-links">
    				<?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'catch-evolution' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list );
    				$show_sep = true; ?>
    			</span>
    			<?php endif; // End if categories ?>
    			<?php
    				/* translators: used between list items, there is a space after the comma */
    				$tags_list = get_the_tag_list( '', __( ', ', 'catch-evolution' ) );
    				if ( $tags_list ):
    				if ( $show_sep ) : ?>
    			<span class="sep"> | </span>
    				<?php endif; // End if $show_sep ?>
    			<span class="tag-links">
    				<?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'catch-evolution' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list );
    				$show_sep = true; ?>
    			</span>
    			<?php endif; // End if $tags_list ?>
    			<?php endif; // End if 'post' == get_post_type() ?>
    
    			<?php if ( comments_open() ) : ?>
    			<?php if ( $show_sep ) : ?>
    			<span class="sep"> | </span>
    			<?php endif; // End if $show_sep ?>
    			<span class="comments-link"><?php comments_popup_link(__('Leave a reply', 'catch-evolution'), __('1 Comment &darr;', 'catch-evolution'), __('% Comments &darr;', 'catch-evolution')); ?></span>
    			<?php endif; // End if comments_open() ?>
    
    			<?php edit_post_link( __( 'Edit', 'catch-evolution' ), '<span class="edit-link">', '</span>' ); ?>
    		</footer><!-- #entry-meta -->
    	</article><!-- #post-<?php the_ID(); ?> -->
    

    This will add the featured image in the full content. Let me know if this solves your issue or not.

    in reply to: How to add footer bottom margin #80841
    Pratik
    Keymaster

    Hi @Marko,

    1. Add bottom margin for footer
    Please add following code in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box:

    
    #footer-sidebar {
         padding-bottom: 30px;
    }
    

    2. To hide promotion headline only on this page, add following code in same place:

    
    .page-id-28 #homepage-message {
         display: none;
    }
    

    Let me know if this worked for you.
    Thanks.

    in reply to: Continue reading wordcount #80840
    Pratik
    Keymaster

    Hi @Gavin Lewis,

    To use the “more” icon, just set “Appearance=> Customize=> Theme Options => Layout Options=> Full Content Display” option to Full Content Display. This will make use of the the “more” icon rather than using Excerpt Length option(This option will ignore Excerpt length(Words)).

    Let me know if this helped or not.

    in reply to: Remove Permalink from Featured Images #80836
    Pratik
    Keymaster

    Hi @Mandala528,

    Great. You are welcome. Have a nice day.

    in reply to: Remove Permalink from Featured Images #80803
    Pratik
    Keymaster

    Hi @Mandala528,
    To remove the link, you need to do a bit of customization using child theme. Please follow following steps:
    1. Create A Child Theme for Adventurous Pro. Details for child theme is here
    2. In your child theme’s functions.php add following code:

    /**
     * Template for overriding parent function for Featured Image in Content
     */
    function adventurous_content_image() {
    	global $post, $wp_query;
    	
    	// Get Page ID outside Loop
    	$page_id = $wp_query->get_queried_object_id();
    	
    	if( $post) {
     		if ( is_attachment() ) { 
    			$parent = $post->post_parent;
    			$individual_featured_image = get_post_meta( $parent,'adventurous-featured-image', true );
    		} else {
    			$individual_featured_image = get_post_meta( $page_id,'adventurous-featured-image', true ); 
    		}
    	}
    
    	if( empty( $individual_featured_image ) || ( !is_page() && !is_single() ) ) {
    		$individual_featured_image='default';
    	}
    	
    	// Getting data from Theme Options
    	global $adventurous_options_settings;
       	$options = $adventurous_options_settings;
    	
    	$featured_image = $options['featured_image'];
    		
    	if ( ( $individual_featured_image == 'disable' || '' == get_the_post_thumbnail() || ( $individual_featured_image=='default' && $featured_image == 'disable') ) ) {
    		return false;
    	}
    	else { ?>
    		<figure class="featured-image">
               <?php 
    			if ( ( is_front_page() && $featured_image == 'featured' ) ||  $individual_featured_image == 'featured' || ( $individual_featured_image=='default' && $featured_image == 'featured' ) ) {
                     the_post_thumbnail( 'featured' );
                }	
    			elseif ( ( is_front_page() && $featured_image == 'slider' ) || $individual_featured_image == 'slider' || ( $individual_featured_image=='default' && $featured_image == 'slider' ) ) {
    				the_post_thumbnail( 'slider' );
    			}
    			else {
    				the_post_thumbnail( 'full' );
    			} 
    			?>
            </figure>
       	<?php
    	}
    }

    Thats it. Let me know if this solves your issue or not.

    in reply to: #page not full width on iPad Retina #80800
    Pratik
    Keymaster

    Hi @Jackie,
    I am glad everything worked out. It would be great if you could add a review for this theme at https://wordpress.org/support/view/theme-reviews/full-frame.

    Have a nice day.

    in reply to: Custom social image and link #80799
    Pratik
    Keymaster

    Hi @Tiffini,

    1. For moving the icon for USA and Bag up to be flush with other social links:
    * Add the following CSS in “Appearance=> Customize=> Theme Options=> Custom CSS” box:

    .site .widget_fullframe_social_icons a.custom-icon {
        vertical-align: top;
    }

    This will align the USA icon. For Cart Icon, you need to reduce the size of the image. It is currently the size 30 x 45 px. Make it same as the USA icon, i.e. 35px x 35px and it will align with others too.

    2. For the link:
    It looks like there was a bug in the theme. We have fixed it and pushed it for update. It will be live soon as it is in urgent list and you can update the theme and this will fix the Custom Social icon links issue. I will let you know via this Forum post once it is live.

    in reply to: How to add a widget area directly after the header #80797
    Pratik
    Keymaster

    Hi cytorath18,
    Great. I am glad everything worked out. It would be nice if you could leave a review for this theme at https://wordpress.org/support/view/theme-reviews/catch-base.

    Have a nice day.

    Thanks

    in reply to: #page not full width on iPad Retina #80775
    Pratik
    Keymaster

    Hi @Jackie,

    It looks like you have Full Frame Free version. It is because of the slideshow from plugin “Image Horizontal Reel Scroll Slideshow” in your Footer Area 2 on “Appearance=> Widgets”. This issue will go away if you disable this plugin or remove the widget because this plugin’s slideshow is not responsive.

    in reply to: Custom social image and link #80750
    Pratik
    Keymaster

    Hi @Tiffini,
    Thanks for using Full Frame Pro Theme in your site.
    Following are the issues and their explanations:

    1. Header Right Box squiggly box issue
    – I could not find the issue/squiggly line. I tried viewing the site via following links:

    and mobile devices as well.
    Can you show a screenshot that has the issue and the device as well? It will help a lot.

    2. About Custom Social Image:
    – Can you check the link you have added? I think you have added an invalid link, hence ‘#’ is being displayed as link. Can you also post-in what specifically you added as social link? Further, the custom social icons will make the link open in new tab. This is a required feature for social links.

    3. About the huge gap of white space from the website sliders and where the content starts, there are two issues here:

        First, in Dashboard=> Appearance=> Customize=> Featured Content=> Featured Content Option=> Enable Featured Content On, you have enabled featured content and have Featured Page Content and as your featured content but not set any pages. If you want to remove the featured content, select the Disabled option and save in Dashboard=> Appearance=> Customize=> Featured Content=> Featured Content Option=> Enable Featured Content On and this will reduce just a bit of that space.
        Secondly, the huge space is due to the Visual Composer Plugin. The elements of the visual composer have a lot of padding and margins, hence a lot of space. You will need to go in their support and ask them for solution.

    Let me know the details and I will be able to assist you further.
    Thanks

    in reply to: Author tags #80721
    Pratik
    Keymaster

    hi @Cleo,
    Yes now I got it.

    The author is hidden because there there is only one author in your blog who has published posts. Author will appear if you have another user with a post.

    If you want to show the author with single user, you will need to do a bit of customization. For that first, you need to build a child theme. The instructions for child theme is given here.

    Then, in your Child Theme’s functions.php, add following code:

    
    /**
     * Prints HTML with meta information for the current post-date/time and author.
     */
    function gridalicious_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<a href="%2$s" rel="bookmark">%3$s</a></span>',
    		sprintf( _x( '<span class="screen-reader-text">Posted on</span>', 'Used before publish date.', 'gridalicious' ) ),
    		esc_url( get_permalink() ),
    		$time_string
    	);
    
    	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.', 'gridalicious' ) ),
    			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', 'gridalicious' ), esc_html__( '1 Comment', 'gridalicious' ), esc_html__( '% Comments', 'gridalicious' ) );
    		echo '</span>';
    	}
    
    	edit_post_link( esc_html__( 'Edit', 'gridalicious' ), '<span class="edit-link">', '</span>' ); 
    
    	echo '</p><!-- .entry-meta -->';
    }
    

    Let me know if this solves your issue or not.

    Thanks

    in reply to: Author tags #80716
    Pratik
    Keymaster

    Hi @Cleo: Can you check your site url? http://www.cyprus101.com does not have Gridalicious theme. I doubt it is even built in WordPress. This support forum is exclusively for Catch Themes Plugin and themes.

    Let me know if I can be of any other help.

    in reply to: How to add a widget area directly after the header #80669
    Pratik
    Keymaster

    Can you add following code just at the end of the code I provided:
    add_action( 'catchbase_header', 'catchbase_extra_header_sidebar', 110);
    I am hopeful that this will add the sidebar just below the header above the primary menu.

    If you want it below the header-image, add following code:
    add_action( 'catchbase_before_content', 'catchbase_extra_header_sidebar', 15);

    in reply to: Help Comments Label #80668
    Pratik
    Keymaster

    Hi @Cokalejandro,

    Simple Catch Pro theme is translation-ready. First this I want to know is if the you have used any translation plugins, then I need to know your site-url and where you have problems.

    Since we do not have Spanish Translation Then you just need to download poedit software from poedit.net and then use simple-catch.pot file in the languages to generate es_ES.mo and es_ES.po files.

    in reply to: Remove duplicate of featured content #80625
    Pratik
    Keymaster

    @ncmh-cardiff: No worries, we have all been there. Post again if you have any other problem.

    Thanks

    Pratik
    Keymaster

    Hi @Sergio64,
    I am sorry but I cannot understand what you said. The free version of Full Frame Pro has Featured Page Slider Option. You can view full instructions for Featured Page Slider here.

    If you want further control on the slider, then you can upgrade to pro version and get other options like Featured Post Slider, Featured Category Slider and a very flexible Featured Image Slider. Check out the Full Frame Pro Theme Instructions here

    Let me know if you have further problems. And please post in your site url too so I can check it for better support.

    Thanks

    in reply to: Remove duplicate of featured content #80611
    Pratik
    Keymaster

    Hi @ncmh-cardiff,

    There is a Checkbox Option in “Appearance=> Theme Options=> HOMEPAGE SETTINGS=> Homepage / Frontpage Settings => Move above Homepage Featured Content?”. Just check this box and then save your settings which will move the Featured Content Area Below in the homepage content.

    I hope this solves your issue. Let me know if it does not and I will assist you further.

Viewing 20 posts - 1,981 through 2,000 (of 2,018 total)