Forum Replies Created
-
AuthorPosts
-
Pratik
MemberHi @Tobias,
First thing, you should never manually edit the database options unless you are really sure of what you are doing. In most cases, you will end up destroying your site.Favicon links are not hardcoded so it should not be calling http protocol on https. Can you tell me how you added the favicon and your site url so that I can check it.
Also, try removing the favicon from Theme options and add it via “Appearance=> Customize => Site Identity=> Site Icons” and let me know how this goes too.
Pratik
MemberHi @Theodore,
You can add dummy links to menu. You will need to restructure your menu a bit for this. Goto “Appearance=> Menus” And follow following steps:
– In Edit Menus Tab, Select the menu you want to edit(In this case your primary menu)
– While editing your menu, go to the Custom Links box on the left sidebar. Type in # as address for URL and the Text of your Dummy menu item(For this case: First: Calendar of events, Second: Shows and Projects, Third: Newsletters. You will need to do it thrice) where it says ‘Link text’
– Click Add To Menu and the menu item will appear at the bottom of current menu
– Drag your new link over to your menu and place it where you want it.
– Move your child menu items underneath the menu item you just created so that they become a dropdown menu
– Save your menu and check your siteHope this helps. Let me know how it goes.
Pratik
MemberHi @Lars,
If you want to change that navigation text, you will need to do a bit of customization using a Child theme. Please follow following steps:
1. Create A Child Theme for Catch Flames Pro. Details for child theme is here
2. Then you need to add following codes in your Child Theme’s functions.php file:/** * Display navigation to next/previous pages when applicable */ function catchflames_content_nav( $nav_id ) { global $wp_query; /** * Check Jetpack Infinite Scroll * if it's active then disable pagination */ if ( class_exists( 'Jetpack', false ) ) { $jetpack_active_modules = get_option('jetpack_active_modules'); if ( $jetpack_active_modules && in_array( 'infinite-scroll', $jetpack_active_modules ) ) { return false; } } $nav_class = 'site-navigation paging-navigation'; if ( is_single() ) $nav_class = 'site-navigation post-navigation'; if ( $wp_query->max_num_pages > 1 ) { ?> <nav role="navigation" id="<?php echo $nav_id; ?>"> <h3 class="assistive-text"><?php _e( 'Post navigation', 'catch-flames' ); ?></h3> <?php if ( function_exists('wp_pagenavi' ) ) { wp_pagenavi(); } elseif ( function_exists('wp_page_numbers' ) ) { wp_page_numbers(); } elseif ( is_search() ) { //Change Text only for search pages ?> <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> NEW Older posts TEXT', 'catch-flames' ) ); ?></div> <div class="nav-next"><?php previous_posts_link( __( 'NEW Newer posts TEXT<span class="meta-nav">→</span>', 'catch-flames' ) ); ?></div> <?php } else { ?> <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'catch-flames' ) ); ?></div> <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'catch-flames' ) ); ?></div> <?php } ?> </nav><!-- #nav --> <?php } }Please note the
NEW Older posts TEXTandNEW Newer posts TEXT. You can change this text to desired text for your search page.Pratik
Memberhi @Sergio64,
If you want the image to be reduced, then you will need to Upgrade to Pro version. Pro version has “Show Excerpt(Image Left)” Option for Blog pages that will make the image small and push the image to the left. Plus the Full Frame Pro verions has many other features which you can checkout here and its more detailed version here.
Pratik
MemberHi @rob,
If you go to “Appearance=> Theme Options => Custom CSS”, You will see following code added:
#site-logo img, #masthead.fixed-header #site-logo img { max-height: 100px; padding-top: 15px; } #masthead.fixed-header { padding-top: 15px; } .fixed-header #header-right, #header-right { float: right; padding-top: 15px; }What this has done is added the padding on all devices. Replace this code with following code:
/* Select only devices with width greater than 960px */ @media screen and (min-width: 960px) { #site-logo img, #masthead.fixed-header #site-logo img { max-height: 100px; padding-top: 15px; } #masthead.fixed-header { padding-top: 15px; } .fixed-header #header-right, #header-right { float: right; padding-top: 15px; } }This code will apply css to devices with screen size greater than 960px. This should solve your issue.
Let me know how it goes.
Pratik
MemberHi @Yvonne,
Since you are using Catch Everest Pro version, go to “Appearance=> Theme Options => Custom CSS” box and add following code:
#main { padding-top: 0; }This will remove the gaps for all the pages(even in homepage).
If you want it on only that specific page, then you will need to find the ID of the page and use following code(this is for the page you have linked):
page-id-2196. #main { padding-top: 0; }If you want it removed on only several pages, then you can stack up the page ids as follows:
page-id-2194. #main, page-id-2195. #main, page-id-2196. #main { padding-top: 0; }Pratik
MemberHi @casak,
Do you want the left sidebar to be in place of mobile menu? I am afraid this is outside our theme support scope. You will need to hire a customizer for this.
If you want something else than this, can you please elaborate your issue.
Pratik
MemberHi @Mandala528,
This is little advance question and I would like to leave this to be answered by Sakin. He is on travel for WordCamp US. So, you might get reply little late.Pratik
MemberHi @vlts,
Can you let us know your server configuration (if possible) so we can check it?
Pratik
MemberHi @Tiffini,
Please follow update instructions at http://catchthemes.com/theme-instructions/full-frame-pro/#updating
Pratik
MemberHi @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 here2. 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"> — </span> <span class="comments-link"> <?php comments_popup_link(__('Leave a reply', 'catch-evolution'), __('1 Comment ↓', 'catch-evolution'), __('% Comments ↓', '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 ↓', 'catch-evolution'), __('% Comments ↓', '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.
Pratik
MemberHi @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.Pratik
MemberHi @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.
Pratik
MemberHi @Mandala528,
Great. You are welcome. Have a nice day.
Pratik
MemberHi @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.
Pratik
MemberHi @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.
Pratik
MemberHi @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.Pratik
MemberHi 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
Pratik
MemberHi @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.
-
AuthorPosts
