Forum Replies Created

Viewing 20 posts - 9,621 through 9,640 (of 14,497 total)
  • Author
    Posts
  • in reply to: HELP!! Can't Log In and Edit My Site! #17543
    Sakin
    Keymaster

    @Kevin: Thanks for the access. I just added the following code in your wp-config.php file and it’s working now.

    /** Increase the memeory */
    define('WP_MEMORY_LIMIT', '512M');
    in reply to: Header & Footer #17542
    Sakin
    Keymaster

    @ChellTrell: Then number of post in your blog can be defined from “Settings => Reading”

    About the header image. It’s actually there to show your featured image and since there will not be featured image for blog/homepage, it will show the header image. If you want static logo image in your header then you can remove the header image from “Appearance => Header” and add the same image in Logo url from “Appearance => Theme Options => Header Options”. So, now you will have logo but if you want it full width like you currently have then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box to make it full width

    #header-content { padding: 0; }
    #header-content .wrapper { width: 100%; }
    in reply to: HELP!! Can't Log In and Edit My Site! #17539
    Sakin
    Keymaster

    @Kevin: I have just send you email in the address that you register with us. Please check in and reply me there.

    in reply to: Header & Footer #17537
    Sakin
    Keymaster

    @ChellTrell: Post in your site URL so that I can understand. If you have added featured image then it will show in. You can remove the featured image from your post.

    in reply to: How To Change "Continue Reading" text? #17533
    Sakin
    Keymaster

    @Jaime: If you are using Catch Evolution Pro theme then you can edit you can edit the footer info from “Appearance => Theme Options => Footer Editor”. We don’t recommend you to change it in Free version as this is only means through which we get recognition for providing free theme and free support. Thanks.

    yes, child theme is a great way to customize the theme.


    @Trishah
    : Yes, child theme is great and best way to customize the theme. When I check in your sample child theme sytle.css, the theme name and description was it confusing. As you have added “Theme Name: Responsive Child Theme – XXX.com” and “Description: Responsive Child Theme – XXX.com – DO NOT REMOVE the Parent Theme: catch-box”

    The best will be

    /*
    Theme Name: Catch Box Child Theme - yoursitename.com
    Description: Catch Box Child Theme - yoursitename.com - DO NOT REMOVE the Parent Theme: catch-box
    Author: Trishah at http://trishah.com
    Template: catch-box
    Version: 1.0
    License: This theme is private licensed to one buyer, yoursitename.com, and is not transferable or sold without written permission from Trishah.com
    */
    
    in reply to: HELP!! Can't Log In and Edit My Site! #17531
    Sakin
    Keymaster

    @Kevin: You need to do that from FTP or your hosting control panel. If you want access to that then let me know it and then I can email you where you can send me the access. If not then you have to take support from your hosting.

    in reply to: Where is the tag located? #17529
    Sakin
    Keymaster

    @owen: Can you tell me what type of code that you are trying to add in and what is the instruction that you go it. Then I can explain to you where you can add it.

    in reply to: HELP!! Can't Log In and Edit My Site! #17526
    Sakin
    Keymaster

    @Kevin: You can delete that plugin from your FTP and check in. This is memory issue in your server. If this doesn’t solve it then you can create the file php.ini and add the following Code
    memory_limit = 256M;

    and then upload that file to your site wp-admin directory. For more contact your hosting server.

    in reply to: W3 validation / checking CSS html etc #17525
    Sakin
    Keymaster

    @oly: What type of validation you are talking about. If you are talking about HTML5 validation then it’s under experimental phase and almost all advance site will not be validated. You can try any site google.com, yahoo.com, wordpress.com and even wordpress.org.

    So, while checking validation we should concerned about missing closing tags proper structuring. Others are not necessary.

    in reply to: Putting a Follow Me box in Post #17524
    Sakin
    Keymaster

    @klhaight: These things falls under plugin territory. So, you need to install plugin and add in. Try searching for social and mail subscription plugin at http://wordpress.org/plugins/

    in reply to: viewing videos on my site #17523
    Sakin
    Keymaster

    @henry: If you want youtube video to play directly from your site. WordPress support youtube video where you can just post in youtube video link in your post or page and it will show the video. But if you are posting video from other sources then yes you need embed code.

    in reply to: slider image #17522
    Sakin
    Keymaster

    @K: Please post in your site URL and then I can check in.

    in reply to: Change font in menu bar #17521
    Sakin
    Keymaster

    @k.capelli: If it’s web safe font then you can easily add it with custom CSS. But if you want to change to premium fonts then you need to embed the font and add it. This is quite complicated.

    in reply to: Feature Slider – Re-sizable? #17497
    Sakin
    Keymaster

    @rgbarsanti: Simply add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .featured { height: 250px; }

    in reply to: how to move search button under site title #17496
    Sakin
    Keymaster

    @owen: Oh sorry I missed that. You can add the following instead of above css.

    #branding #searchform {
        padding-top: 10px;
        position: static;
        text-align: center;
    }
    #branding #s {
        float: none;
    }
    in reply to: Queries #17494
    Sakin
    Keymaster

    @kumar: Then it’s all good. Thanks 🙂

    in reply to: Feature Slider – Re-sizable? #17493
    Sakin
    Keymaster

    @rgbarsanti: Sorry I mean move to upload the size you want that is 976Ă—250

    in reply to: Where is the tag located? #17492
    Sakin
    Keymaster

    @owen: There you can see <body <?php body_class(); ?>> . In wordPress Theme we need to add default hook body_class in `‘ code.

    in reply to: Excludes Posts From Searches #17489
    Sakin
    Keymaster

    @fcharvet: The simple way is to just remove the post when you are using Image Slider. But if you want then it’s bit complicated. You need to build child theme and then crate functions.php file in your child theme and add the following code.

    <?php
    /**
     * Only Pages in Search
     */
    function catcheverst_child_search_pages($query) {
        if ( !is_admin() && $query->is_main_query() ) {
            if ($query->is_search) {
    			$query->set( 'post_type', 'page' );
            }
        }
    }
    add_action( 'pre_get_posts', 'catcheverst_child_search_pages' );
    in reply to: how to move search button under site title #17487
    Sakin
    Keymaster

    @owen: This looks quite complicated. But you can try in by adding the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #branding #searchform { text-align: center; }
    #branding #s { float: none; }
Viewing 20 posts - 9,621 through 9,640 (of 14,497 total)