Forum Replies Created

Viewing 18 posts - 2,001 through 2,018 (of 2,018 total)
  • Author
    Posts
  • in reply to: Move Featured Text in Slider to the left or right side? #80509
    Pratik
    Keymaster

    Hi @jwyrem,
    Great!!! you found the solution yourself

    in reply to: Remove Fixed Header Top DropDown #80508
    Pratik
    Keymaster

    Hi @Ruthy and @wensolutions,

    This is Header Toggle Option. You can add widgets to this area via “Appearance=> Widgets=>Header Right”.

    To disable this option, go to “Appearance=> Customize=> Theme Options=> Fixed Header Top Options” and check “Check to disable Header Toggle” Option.

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

    Hi @cytorath18,
    Can you post your site url so i can check it?

    in reply to: Blinking pages #80494
    Pratik
    Keymaster

    Hi @Marko,
    I get site under construction message as of now. Let me know when it is live again and I will check it.

    in reply to: Catch Box Pro "theme is missing style.css stylesheet" #80456
    Pratik
    Keymaster

    Hi @Mark,
    Please make sure your subscription is active. This problem may be due to that. If there is still download issue while you have active subscription, please contact Catch Themes Sales Team at Contact Us and they will solve this issue.

    in reply to: Blinking pages #80454
    Pratik
    Keymaster

    hi @Marko,

    This error is due to short content in the page. For now add following code in “Dashboard=> Appearance=> Theme Options => Custom CSS” box and it will solve your issue.

    #main-wrapper {
        min-height: 600px;
    }

    Let me know how it goes.

    in reply to: Duplicate a page #80453
    Pratik
    Keymaster

    Hi @eirini,
    If you want to duplicate the page, you will need to do it manually. Add a new page and copy all the contents and meta box options.

    If you want it automatically, you can search for any page duplicator plugin from WordPress.org plugin repository at http://wordpress.org/plugins/

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

    Hi @cytorath18,

    If you want to make changes to the code, make sure you make the edits via Child Theme. To know more about Child Themes goto link: Child Theme Tutorial . Then download the child theme for Catch Base.

    After this, in the child theme’s functions.php add following code:

    
    /**
     * Register extra custom widgetized area
     */
    function catchbase_extra_header_widget_init() {
    	//Extra Header Widget Area
    	register_sidebar( array(
    		'name'          => __( 'Extra Header Widget Area', 'catch-base' ),
    		'id' 			=> 'extra-header-widget-area',
    		'before_widget' => '<section id="%1$s" class="widget %2$s"><div class="widget-wrap">',
    		'after_widget'  => '</div><!-- .widget-wrap --></section><!-- #widget-default-search -->',
    		'before_title'  => '<h4 class="widget-title">',
    		'after_title'   => '</h4>',
    		'description'	=> __( 'This is the extra header sidebar widget area that appears in homepage only.', 'catch-base' ),
    	) );
    }
    add_action( 'widgets_init', 'catchbase_extra_header_widget_init' );
    
    /**
     * Add Extra Header Widget Area below header#masthead
     */
    function catchbase_extra_header_sidebar() {
    	global $wp_query;
    	
    	// Get Page ID outside Loop
    	$page_id = $wp_query->get_queried_object_id();
    
    	// Front page displays in Reading Settings
    	$page_for_posts = get_option('page_for_posts'); 
     
    	if ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) {
        	dynamic_sidebar('extra-header-widget-area');
        }
    }
    

    This will make the Widget Area appear just below header in home page. If you want it to appear elsewhere, edit the conditions if ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ).

    However, if you are not familiar with this, it is highly recommended that you hire a customizer to do this work because this may cause some design issues which is beyond the Theme support scope.

    in reply to: Move menu to top of screen #80372
    Pratik
    Keymaster

    Hi @Joshua,
    Sorry, we don’t have Fixed Header Top Option in this theme, you can try other themes like “Clean Box Pro, Clean Journal Pro, Studio Pro, Catch Adaptive Pro, Full Frame Pro, Gridalicious Pro and so on”

    But if you really like to make that menu fixed. Then you can try adding the following CSS in “Appearance => Theme Options => Custom CSS” box. But it’s not sure about it.

    body {
        padding-top: 46px;
    }
    #branding #access {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    #access ul li.default-menu {
        display: none;
    }
    #branding #access .menu {
        display: block;
        margin: 0 auto;
        width: 978px;
    }
    @media screen and (max-width: 1000px) {
        body {
            padding-top: 38px;
        }
        #branding #access .menu {
            width: 700px;
        }
    }
    @media only screen
    and (min-device-width : 768px)
    and (max-device-width : 1024px)
    and (orientation : portrait) {
        #branding #access .menu {
            width: 720px;
        }
    }
    @media screen and (max-width: 767px) {
        #branding #access .menu {
            display: none;
        }
        #access .sb-holder {
            width: 480px;
        }
    }
    @media only screen and (min-width: 480px) and (max-width: 767px) {
        #access .sb-holder {
            width: 450px;
        }
    }
    @media screen and (max-width: 480px) {
        #access .sb-holder {
            width: 300px;
        }
    }
    @media screen and (max-width: 319px) {
        #access .sb-holder {
            width: 100%;
        }
    }
    in reply to: Image margins in page content #80368
    Pratik
    Keymaster

    @Alvin: Hi, Can you please post your site URL so I can check it?

    in reply to: Can i add 5th feature in same line #80321
    Pratik
    Keymaster

    Hi @Marko,
    Can you please post in your site URL so that I can check it?

    in reply to: Change text in slider #80320
    Pratik
    Keymaster

    Hi @JOG,

    Catch Everest Free Version Supports only Featured Post Slider, so to change that, you can go to “Dashboard=> Appearance=> Customize => Featured Post Slider=> Slider Options” and follow following steps:
    * Make Sure “Enable Slider” is not disabled
    * Add your Post ID in Featured Post Slider # option
    * If you are unable to find post IDs, please install Catch IDs Plugin to find the Post IDs
    * Then you can edit the title and content of the post to change Slider’s title and content.

    Catch Everest Pro Version has a “Featured Image Slider” which will make it easier to add custom images, titles and texts to sliders, so you might want to consider upgrading to Pro version.

    in reply to: Custom Css not working in Simple Catch Pro #80318
    Pratik
    Keymaster

    Hi @Joshua,
    To centre the menu, please remove that Custom CSS from “Appearance=> Theme Options=> Custom CSS” and add the following code:

    #access {
        text-align: center;
    }
    
    #access ul li {
        display: inline-block;
        float: none;
        margin-bottom: -7px;
        margin-left:-4px;
    }
    
    #access ul li li {
        display: block;
        float: left;
        text-align: left;
        margin-bottom: -1px;
        margin-left:0;
    }

    You have used custom CSS for Catch Responsive theme. The custom CSS for every theme is different. So you need to check each theme’s HTML structure carefully before adding them in.

    Let me know if this solves your issue.

    in reply to: Removing "Home" text from below Promotion Headline Button #80288
    Pratik
    Keymaster

    Hi @KielChallen,
    You have used a static page as a home page. So, you can add following CSS in “Dashboard-> Appearance-> Customize-> Theme Options-> Custom CSS Options”

    .home #content {
        display: none;
    }

    This will hide the content in homepage.

    in reply to: Upgraded to Pro, menus now messed up #80283
    Pratik
    Keymaster

    Hi @Alex,
    Thank you for figuring this out yourself.

    Both free and pro use same database but different settings(options). Some options were left out while migrating but will be fixed in the upcoming version.

    in reply to: New menu line after upgrade #80235
    Pratik
    Keymaster

    Hi @Eduardo,
    It looks like you have disabled responsive design. You can add following CSS in “Dashboard->Theme Options->Custom CSS”, and it will hide for now. You might not need this css after there is theme update. So, check in theme change logs http://catchthemes.com/changelogs/catch-box-pro-theme/

    #branding .menu-access-wrap,
    #mobile-header-left-nav {
        display: none;
    }
    in reply to: function.php error #80234
    Pratik
    Keymaster

    Hi @rkmoonak,
    It is really a bad idea to edit the core theme files. You will loose all the edited codes in next update. If you want to customize anything in the theme, then use child theme. For detailed instructions of child theme, you can visit this link.

    Now, for the code, use add the following function in your child theme’s function.php file

    /* Replacing Taxes with Service Fee */ 
    function my_em_text_rewrites($translation, $orig, $domain) {
    	str_replace('Service Fee','Taxes', $translation);
    	return $translation;
    }
    add_filter ( 'gettext', 'my_em_text_rewrites', 1, 3 );

    If this does not work, you will need to contact the plugin’s support as this is not in the theme scope.

    Pratik
    Keymaster

    @Jürgen: Hi, it doesn’t seem there is this kind of issue after fresh install. Can you give your update on this issue?

Viewing 18 posts - 2,001 through 2,018 (of 2,018 total)