Forum Replies Created

Viewing 20 posts - 6,881 through 6,900 (of 14,504 total)
  • Author
    Posts
  • in reply to: Image caption on featured image on frontpage #41395
    Sakin
    Keymaster

    Hello André,

    Can you post in your site URL so that I can check what is happening. But I guess, you are using “Excerpt/Blog Display” setting from “Appearance => Theme Options => Layout Options => Content Layout”. This setting will just show the featured image and the excerpt text.

    So, if you want to show the content and caption image like the post. Then you need to go to “Appearance => Theme Options => Layout Options => Content Layout” and select “Full Content Display”. This will show your whole content in frontpage. In this mode you can break the content using more tag <!--more-->

    Regards,
    Sakin

    in reply to: Add space between titles #41394
    Sakin
    Keymaster

    @kalatos: I don’t get it what you mean. Can you share your site URL and then explain. The screenshot that you have added in is showing the browser tab title, which takes you page title that you have added in.

    in reply to: How to disable comments on a page #41393
    Sakin
    Keymaster

    @keychange: You need to edit all your current pages and post and then un-check Allow Comment as show in this screenshot http://www.pinterest.com/pin/548594798329843253/.

    If you are using Pro Version, there you have additional Comment Options from where you can disable comment at once.

    Sakin
    Keymaster

    @ToddWilliam: I already told you that there is plugin which is calling that image. Ok I found it’s the plugin “Add Twitter, Facebook Like, Google plus one Social share”.

    in reply to: My contact form does not work, please help #41384
    Sakin
    Keymaster

    Hi Saul,

    Thanks for the access. There was issue with your WordPress Address (URL) in “Settings => General” where you have added it as http://redanconsults.com/wp and then I change it to http://redanconsults.com and it’s working fine.

    Regards,
    Sakin

    in reply to: How do I move Social Links to top? #41368
    Sakin
    Keymaster

    Hi Vince,

    To move the social icon from footer:
    1. First, you need to disable social icon from Footer. For that go to “Appearance => Theme Options => Social Links”, check in “Disable Social Links in Footer” and save changes.
    2. Then go to “Appearance => Widgets” and then drag and drop “Catch Box Social Widget” widget to Header Right Sidebar.

    Regards,
    Sakin

    in reply to: Menu width #41367
    Sakin
    Keymaster

    Hi Simon,

    For 1 and 2 points related to menu and spaces between menu.
    For Header Menu: I see that you are using Primary Menu. To make it like footer menu, you need to select that menu location as Secondary Menu from “Appearance => Menu => Manage Locations”. Then you can hide your primary menu from “Appearance => Theme Options => Header Options”, check in “Disable Header Right Sidebar” and save changes. You can see in our demo page, http://catchthemes.com/demo/catch-kathmandu/ . The Header Top Right menu is Primary Menu and the Header Bottom menu is Secondary Menu.

    For 3rd one: you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 961px) {	
        #main-slider .entry-container {
            width: 400px;
        }
    }

    Regards,
    Sakin

    Sakin
    Keymaster

    @jmott310: Nice 🙂

    in reply to: My contact form does not work, please help #41365
    Sakin
    Keymaster

    Hi Saul,

    This is strange as Contact Form 7 is compatible with our themes. We are using it, see this form http://catchthemes.com/demo/catch-kathmandu/contact-us/ . Maybe it’s issue with other plugin or your system. But I will not be able to find it without the access. So, I will email you and then you can reply me there.

    Regards,
    Sakin

    in reply to: Empty line after graphic not possible #41364
    Sakin
    Keymaster

    @Michaela: I cannot view the page you have posted it. Looks like that post in not yet live. It is showing me “Oops! That page can’t be found.”

    in reply to: Empty line after graphic not possible #41347
    Sakin
    Keymaster

    @Michaela: You can ask that in plugin support forum. For us, can you send me your site URL and let me know where you want to add some spacing.

    in reply to: Moving Featured Post Slider #41346
    Sakin
    Keymaster

    @clarity00: Sorry there is no option to do that from theme options panel. For this first, you need to build child theme and then create functions.php ifn you child theme and add the following code to remove the slider.

    // Removing slider
    function unhook_catchevolution_functions() {
    	remove_action( 'catchevolution_content', 'catchevolution_slider_display', 10 );	
    }
    add_action( 'init', 'unhook_catchevolution_functions' );

    Then you can copy index.php from catch evolution theme to your child theme and paste the following code, where you want to show it.
    <?php catchevolution_slider_display(); ?>

    in reply to: Change featured slider arrow color #41345
    Sakin
    Keymaster

    Hi Matthew,

    For footer widget font size, you can adjust the font size in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box.

    /* Widget Font Size */
    #supplementary .widget-area {
        font-size: 16px;
    }
    /* Widget Title Font Size */
    #supplementary .widget-area .widget-title {
        font-size: 20px;
    }

    To hide post met in homepage post, you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    .home #content .entry-meta {
        display: none;
    }

    Regards,
    Sakin

    in reply to: How to replace integrate slider with an other extension ? #41343
    Sakin
    Keymaster

    @Morganti: Sorry I don’t get it what do you mean. For slider you can see the theme instructions at http://catchthemes.com/theme-instructions/adventurous-pro/.

    in reply to: Blank space above header image #41342
    Sakin
    Keymaster

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

    #header .logo-wrap, #header .social-search {
        margin-top: 0;
    }

    Further, if you want to reduce it more then you can adjust the margin top in the following css as per you need and then add it in “Appearance => Theme Options => Custom CSS” box.

    #headimg {
        margin-top: 40px;
    }
    Sakin
    Keymaster

    @jmott310: I gave you the clear instruction. So, you can build child theme and then copy catcheverest_content_nav function from template-tags.php file to your child theme new functions.php file.

    In this function, you will see the following code, which you can edit as per your need.

    <?php if ( is_single() ) : // navigation links for single posts ?>
    
    	<?php previous_post_link( '<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'catcheverest' ) . '</span> %title' ); ?>
    	<?php next_post_link( '<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'catcheverest' ) . '</span>' ); ?>
    in reply to: Change featured slider arrow color #41336
    Sakin
    Keymaster

    @Matthew: Can you post in your site URL then I can check in.

    in reply to: How do I set the background to this? #41313
    Sakin
    Keymaster

    @leafygrove: Can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    #content #buddypress table.profile-fields tr.field_type_birthdate td {
        background-color: #000;
    }
    Sakin
    Keymaster

    @ToddWilliam: Have you install any plugin for Facebook like. As when I check in your site source. I found the following code.

    <!-- Facebook Like Thumbnail -->
    <link rel="image_src" href="http://www.todd-william.com/wp-content/uploads/2014/05/Ambition.jpg" />
    <!-- End Facebook Like Thumbnail -->

    This is the code that is calling for small image. For Social Image, you can text with this URL https://developers.facebook.com/tools/debug/

    So, You need to disable that plugin which is calling that code and you can activate any other social plugin like Jetpack or WordPress SEO by Yoast, which will help you to setup open graph images.

    in reply to: My contact form does not work, please help #41311
    Sakin
    Keymaster

    Hi Saul,

    I check in your site in detail but I don’t see Contact Form 7 plugin in activate mode as I don’t find contact form 7 CSS and JS files. So, can you go to “Plugins => Install Plugins” and check it Contact Form 7 in in “Inactive” Mode. If so then you need to active it.

    Regards,
    Sakin

Viewing 20 posts - 6,881 through 6,900 (of 14,504 total)