Forum Replies Created
-
AuthorPosts
-
November 18, 2016 at 11:08 am in reply to: 404-page uses content of optional archive sidebar if available #103496
Mahesh
Participant@mvitale: Yes, this feature is available along with more features. Please upgrade to pro.
Regards,
MaheshNovember 18, 2016 at 10:40 am in reply to: Import CSS and design from HTML template, where to place it and is it doable? #103493Mahesh
Participant@kjelll: As far as I understand what you are trying to do, I’m afraid it won’t work that way. Changing few design with CSS or adding a few elements to the HTML can be done and possible through Child theme. But add the whole template into the theme file won’t work like that.
Hope you understand. If you do want to have the design of the template you’ve purchased, I recommend you to hire a customizer.Regards,
MaheshMahesh
Participant@photogold: For that, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s
functions.phpadd the following code: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"> <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' => 'menu clean-box-nav-menu' ) ); } ?> </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,
MaheshMahesh
Participant@sana: Sorry but this is Support Forum for themes and plugins by Catch Themes only. Hope You understand.
Regards,
MaheshMahesh
Participant@wouwonline: Disable header right menu: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Header Options and check Check to Disable Header Right Sidebar option
Go to Dashboard=> Appearance=> Customize=> Theme Option=> Custom CSS box and add the following CSS:#colophon { border: none; }Let me know if any problem.
Regards,
MaheshMahesh
Participant@casimz1986: The demo is a Pro version. This feature (CT: Instagram widget) is only available in Pro version. I recommend you to upgrade to Pro version.
Regards,
MaheshNovember 17, 2016 at 9:29 am in reply to: An error occurred while updating Clean Journal Pro: Update package not available #103437Mahesh
Participant@mattshepherd: Thank you for using Clean Journal Pro theme.
You cannot update Pro themes by just directly Update Now button like Free themes. You’ll need to first download the theme from https://catchthemes.com/my-account/ page. Then use Catch Updater plugin or Catch Updater module of Catch Web Tools plugin.
https://catchthemes.com/wp-plugins/catch-updater/
https://wordpress.org/plugins/catch-web-tools/
Please check the tutorial video in the link below:
https://www.youtube.com/watch?v=W95SuabDZi8Regards,
MaheshMahesh
Participant@lba: Just checked your site and didn’t see any space issue with header image on your site. The image is already full width. Have you managed to resolve the issue.
Regards,
MaheshMahesh
Participant@wouwonline: I checked your site and its blank. And about the color options issue, do you get any error message? Let me know futher.
Regards,
MaheshNovember 16, 2016 at 5:24 pm in reply to: 404-page uses content of optional archive sidebar if available #103412Mahesh
Participant@gmg-jet: The issue has been fixed and the update is released. Please update your theme. Let me know if any problem.
Regards,
MaheshMahesh
Participant@marie-flint: I checked the theme on our server and got no such issue. Please try disabling plugins one by one and check if it resolves the issue. Let me know further.
Regards,
MaheshMahesh
Participant@arteuno: In HTML5, you can have more then one H1 tag. That was issue only when you use HTML4 tags. In HTML5, H1 tag per article tag is good for SEO and we have carefully designed H1 tags with special attention on header tag and headings
Catch Everest theme is build in HTML5, CSS3 and Responsive design. So, H1 is better for SEO then H2.
You can also check this Video http://www.youtube.com/watch?v=GIn5qJKU8VM by Google software engineer Matt Cutts, who clearly states that you can use multiple H1 but don’t over do it. Also use h1 specific to heading and header tags.
You can also check this article URL http://html5doctor.com/html5-seo-search-engine-optimisation/
But if you really want to change it, you can change it by building child theme and editing it. I recommend you to hire a customizer.For eliminating H1 Primary menu assistive text, create a child theme and add the following code in you child theme’s
functions.phpfunction catchbase_primary_menu() { $options = catchbase_get_theme_options(); if ( !$options['primary_menu_disable'] ) : ?> <nav class="nav-primary <?php echo ( !$options['primary_search_disable'] ) ? 'search-enabled' : '';?>" role="navigation"> <div class="wrapper"> <div class="screen-reader-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'catch-base-pro' ); ?>"><?php _e( 'Skip to content', 'catch-base-pro' ); ?></a></div> <?php if ( has_nav_menu( 'primary' ) ) { $catchbase_primary_menu_args = array( 'theme_location' => 'primary', 'menu_class' => 'menu catchbase-nav-menu', 'container' => false ); wp_nav_menu( $catchbase_primary_menu_args ); } else { wp_page_menu( array( 'menu_class' => 'menu catchbase-nav-menu' ) ); } if ( !$options['primary_search_disable'] ) : ?> <div id="search-toggle" class="genericon"> <a class="screen-reader-text" href="#search-container"><?php _e( 'Search', 'catch-base-pro' ); ?></a> </div> <div id="search-container" class="displaynone"> <?php get_Search_form(); ?> </div> <?php endif; ?> </div><!-- .wrapper --> </nav><!-- .nav-primary --> <?php endif; }Regards,
MaheshMahesh
Participant@tonje-gravdehauggmail-com: Add the following CSS. This will make footer only display on “about” page as you’ve mentioned.
body:not(.page-id-2) #footer-sidebar { display: none; }Regards,
MaheshMahesh
Participant@adamjr: Thank you for using Rock Star Pro theme. For that, you’ll need to add CT: Background Image widget in-between those sections. Hope you understand.
Regards,
MaheshNovember 16, 2016 at 9:54 am in reply to: 404-page uses content of optional archive sidebar if available #103402Mahesh
Participantgmg-jet: Yes, there was a bug in the theme. We’ll fix it and let you know ASAP. Thank you for your patience.
Regards,
Mahesh -
AuthorPosts
