Forum Replies Created

Viewing 20 posts - 2,001 through 2,020 (of 2,022 total)
  • Author
    Posts
  • 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.

    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;
    }
Viewing 20 posts - 2,001 through 2,020 (of 2,022 total)