Forum Replies Created

Viewing 20 posts - 5,821 through 5,840 (of 14,497 total)
  • Author
    Posts
  • in reply to: responsive not showing private page #47749
    Sakin
    Keymaster

    @paul: This most be WordPress issues with Login and Private page. Private page is only visible when you are logged in.

    in reply to: Favicon not displaying in safari or chrome #47746
    Sakin
    Keymaster

    @Robert: Thanks for the update 🙂

    in reply to: Favicon not displaying in safari or chrome #47740
    Sakin
    Keymaster

    @Robert: Your favicon is not displaying in any browser as the image shouldn’t be found. Check your favicon image URL

    in reply to: Photo Captions | Left Justify? #47738
    Sakin
    Keymaster

    @sbartsch: Ok try adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    .wp-caption-text {
        text-align: justify;
    }
    in reply to: Favicon not displaying in safari or chrome #47736
    Sakin
    Keymaster

    @Robert: Please post in your site URL so that I can check in.

    Sakin
    Keymaster

    @aleks.mavric123: Here is the list of the element and background color codes which you can change as per your need and then add it in “Appearance => Theme Options => Custom CSS” nox.

    #main {
        background-color: #fff;
    }
    #content {
        background-color: #fff;
    }
    #sidebar {
        background-color: #fff;
    }
    in reply to: I like to bey the Catch Flames Pro Themes #47733
    Sakin
    Keymaster

    Hi Anne-Pia,

    1. I see that you have added css to make it pink for the footer in “Appearance => Theme Options => Custom CSS” box. Just remove the following css:
    #site-generator { background-color: #e04387; }
    After you remove this, it will load the blue color and if you want any other color then you don’t have to do that from custom css, you can change that simply from “Appearance => Theme Options => Color Options => Footer Color Options => Footer Background Color”

    2. You should be able to change that from “Content Background Color” in “Appearance => Theme Options => Color Options => Content Color Options”. But looks like there is some issue in color options. We will fix this in next version update. Till then, you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #content article {
        background-color: #f7f7f7;
    }

    3. Are you talking about the footer sidebar area then it should be same. So, you just need to add the following css in “Appearance => Theme Options => Custom CSS” box.

    #footer-sidebar {
        height: 1%;
        overflow: hidden;
    }

    4. Sorry I don’t understand this point at all. So, confusing.

    Regards,
    Sakin

    in reply to: Link from front page slider to a different post #47709
    Sakin
    Keymaster

    @Alexandra: Thanks for your appreciation.

    in reply to: Two blogs on one site #47708
    Sakin
    Keymaster

    @fmck718:
    1. For your blog page. Just create a page call “Blog” or any as you required. Then set this blog as “Posts page” from “Settings => Reading”. Now, this page will have all the posts. Then to remove the post from the category “This Week’s News”. Go to “Appearance => Theme Options => Homepage Settings => Homepage / Frontpage Settings”. Then in Homepage posts categories, select all the categories except “This Week’s News”. Then it will be fine.

    2. I don’t get it what you are trying to do it. That Featured Post widget is to highlight only one Post. That’s it. To show there recent post, you need to use Recent Post Widgets. If you are trying to show recent posts from particular category, then you need to search for plugin which does this. Search for plugin at http://wordpress.org/plugins

    in reply to: Removing white space from header #47700
    Sakin
    Keymaster

    @benowchiro: You can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #site-logo, #header-right { padding-top: 20px; }
    #hgroup-wrap { padding-bottom: 20px; }
    in reply to: update to Pro version #47698
    Sakin
    Keymaster

    @benowchiro: Thanks for your appreciation. Oh yes, I found your other question. It went to our spam as your site URL is not the valid one. I will remove that spam and reply you there.

    in reply to: Link from front page slider to a different post #47697
    Sakin
    Keymaster

    @Alexandra: Why don’t you use the Featured Image Slider instead of Featured Post Slide. In that way you can upload independent image and link to any URL you want. Check out instruction for Featured Image Slider at http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-slider/

    Fore more: you can also check out theme instructions page at http://catchthemes.com/theme-instructions/catch-everest-pro/

    in reply to: update to Pro version #47693
    Sakin
    Keymaster

    @benowchiro: This is the first time we receive support question in our forum. We haven’t receive any other to response to you.

    1. If you upgrade to pro version all your custom css will be carry over to the pro version. So, you don’t have to worry about Custom CSS.
    2. There are color options for almost all the elements.

    For upgrading to pro, you can check out this http://devotepress.com/wordpress-writing-editing/upgrade-premium-version-wordpress-themes-eg-adventurous-pro/

    in reply to: Adjusting Padding Around Featured Header Image #47692
    Sakin
    Keymaster

    @Scott: You can adjust the padding as per your need and then add it in “Appearance => Theme Options => Custom CSS” box.

    /* For space above Header Image */
    #hgroup-wrap { padding-bottom: 50px; }
    /* For space below Header Image */
    #main { padding-top: 50px; }
    in reply to: Subtitle and Footer translation #47691
    Sakin
    Keymaster

    @Jaume: Are you using Catch Kathmandu Pro, then it should work fine. As we have added in all the delete cache as

    if ( ! function_exists( 'catchkathmandu_qtranslate_invalidcache' ) ) :
    /**
     * Template for Clearing qtranslate Invalid Cache
     *
     * To override this in a child theme
     * simply create your own catchkathmandu_qtranslate_invalidcache(), and that function will be used instead.
     *
     * @since Catch Kathmandu Pro 2.0
     */
    function catchkathmandu_qtranslate_invalidcache() {
    	delete_transient( 'catchkathmandu_post_sliders' );
    	delete_transient( 'catchkathmandu_page_sliders' );
    	delete_transient( 'catchkathmandu_category_sliders' );
    	delete_transient( 'catchkathmandu_image_sliders' );
    	delete_transient( 'catchkathmandu_homepage_headline' );
    	delete_transient( 'catchkathmandu_homepage_featured_content' );
    	delete_transient( 'catchkathmandu_footer_content' );	
    	delete_transient( 'catchkathmandu_footercode' );
    	delete_transient( 'catchkathmandu_featured_image' );
    	
    } // catchkathmandu_qtranslate_invalidcache
    endif;
    
    add_action( 'after_setup_theme', 'catchkathmandu_qtranslate_invalidcache' );

    So, it should work fine. But if it’s still not working. Then contact me through email. I have emailed you.

    in reply to: Featured Slider Not Translating #47688
    Sakin
    Keymaster

    @P: I am not sure about qTranslate plugin in detail. So, you might want to consider adding this question in qTranslate plugin.

    As per my finding. You can use the quick tags for
    [:en]Hello[:fr]Bonjour

    If the quick tags give you problems then use the default like,
    HelloBonjour

    Sakin
    Keymaster

    @shv: Those are the demo text and image from Homepage Featured Content. You can either change the image and text or disable it through “Appearance => Theme Options => Homepage Settings => Homepage Featured Content Options” from your WordPress Dashboard.

    in reply to: Post Slider disappears #47686
    Sakin
    Keymaster

    @johanfalk: I am not sure why it get disappear as it doesn’t happen in our server.
    1. Check in these post are in draft or private status. If this is the case then yes, it will only display when you are logged in. As private or draft post in not visible to user who is not logged in.
    2. If your post at status is published and visible is Public. Then there might be conflict with plugin. So, try disabling plugin one by one to check the conflicting plugin.
    3. I found strange issue in your site that is not from our theme. When I view your site source. I see the following fatal error. So, what’s that Zend in your server.

    <style type="text/css"><br />
    <b>Fatal error</b>:  Uncaught exception 'Zend_Db_Statement_Exception' with message 'SQLSTATE[HY000]: General error: 1030 Got error 122 from storage engine' in /home/fontsf5/public_html/library/Zend/Db/Statement/Pdo.php:234
    Stack trace:
    #0 /home/fontsf5/public_html/library/Zend/Db/Statement.php(300): Zend_Db_Statement_Pdo->_execute(Array)
    #1 /home/fontsf5/public_html/library/Zend/Db/Adapter/Abstract.php(468): Zend_Db_Statement->execute(Array)
    #2 /home/fontsf5/public_html/library/Zend/Db/Adapter/Pdo/Abstract.php(238): Zend_Db_Adapter_Abstract->query('DESCRIBE 

    fonts…’, Array)
    #3 /home/fontsf5/public_html/library/Zend/Db/Adapter/Pdo/Mysql.php(156): Zend_Db_Adapter_Pdo_Abstract->query(‘DESCRIBE `fonts…’)
    #4 /home/fontsf5/public_html/library/Zend/Db/Table/Abstract.php(823): Zend_Db_Adapter_Pdo_Mysql->describeTable(‘fonts’, NULL)
    #5 /home/fontsf5/public_html/library/Zend/Db/Table/Abstract.php(866): Zend_Db_Table_Abstract->_setupMetadata()
    #6 /home/fontsf5/public_html/library/Zend/Db/Table/Abstract.php(973): Zend_Db_Table_Abstract-> in /home/fontsf5/public_html/library/Zend/Db/Statement/Pdo.php on line 234
    `

    in reply to: Remove "Catch Kathmandu by Catch Themes" from Footer #47683
    Sakin
    Keymaster

    @vidyaekta: Yes that will be my answer. Upgrading to pro will give you “Footer Editor” option in Theme Options panel from where you can edit/remove the text as per your need.

    Sorry but I am sad that you want to remove it from Free Version. Look at this scenario: We build free theme, we give free support and put all our effort. Then the only recognition what we get for providing in Free Theme and Free Support is that Footer Status. This also you want to remove it. Then how can it be fair. Then how do we make our living. It’s obviously from few Pro user who contribute to our living and in return we give them more options.

    Note: we are supporting about 1 Million free users for free. This is really big amount of time and dedication that we need to use.

    in reply to: Appearance –> Customize will not load #47682
    Sakin
    Keymaster

    @Greg: Sorry these theme has lot of option to be added in Customizer. So, we haven’t used that. Instead we use our own Theme Options panel from which you can customize it. Go to “Appearance => Theme Options”. For more, check out our theme instructions page at http://catchthemes.com/theme-instructions/catch-evolution-pro/

    Instruction of featured slider is mentioned in theme instruction page listed above. Also we have screencast for:
    Featured Image Slider: http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-slider/
    Featured Post Slider: http://catchthemes.com/blog/videos-blog/video-series-adding-featured-post-slider/
    Featured Image: http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/

Viewing 20 posts - 5,821 through 5,840 (of 14,497 total)