Forum Replies Created

Viewing 20 posts - 9,601 through 9,620 (of 14,494 total)
  • Author
    Posts
  • in reply to: delete "leave a message" comment box #17599
    Sakin
    Keymaster

    @MMchen: Can you paste your site URL. Do you mean to just hide the “Leave a Message” text? Let me know the detail and explain in reference to your site.

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

    @owen: Check this code http://pastebin.com/a33gxQFY that I pasted in “Code to display on Footer” and it’s working fine. Maybe you missed something.

    in reply to: Drop down box does not work #17591
    Sakin
    Keymaster

    @shesue: I haven’t used that. So, can you send me the link where that drop down is supposed to be there and what is it coming now. You might need to post it in WooCommerce support forum.

    in reply to: Leave a Reply simplification #17590
    Sakin
    Keymaster

    @Teabear: Sorry that is setting from WordPress itself from “Settings=> Discussion”. If you remove the email, then you have to remove the name as well for required. See the settings. Nothing we can do from theme. Maybe you can check on plugin which allows that. Try disqus plugin

    in reply to: all categories say CATEGORY ARCHIVES #17589
    Sakin
    Keymaster

    @Ralph177: You question is confusing. Can you post add in your site URL and explain in reference to you site.

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

    @owen: Then you need to add that script in “Code to display on Footer” from “Appearance => Webmaster Tools => Header and Footer Codes”

    But you need to wrap your JavaScript with script tag. For example

    <script type="text/javascript">
    /*
     * Add in your script
     */
    </script>
    in reply to: Change font in menu bar #17579
    Sakin
    Keymaster

    @k.capelli: It’s not possible with CSS only. As not every computer will have that font. So, you nee to generate the font from http://www.fontsquirrel.com/tools/webfont-generator and then upload the font in your child theme and add it. It’s complicated.

    in reply to: Mobile Drop Down menu in Arabic #17578
    Sakin
    Keymaster

    @blackkeys: Nice. For more instruction, you can check out http://catchthemes.com/theme-instructions/catch-everest-pro/

    in reply to: Mobile Drop Down menu in Arabic #17574
    Sakin
    Keymaster

    @blackkeys: Sometimes, it takes time. If you done find the download link in your account http://catchthemes.com/my-account then you can email sales directly at http://catchthemes.com/contact-us

    in reply to: Sub menu doesn't appear as drop down #17567
    Sakin
    Keymaster

    @Ser_DNA: Looks like you haven’t assigned menu location. After you create the menu from “Appearance => Menus”, you need to assign the location from “Appearance => Menus => Manage Locations”.

    in reply to: featured content issue #17565
    Sakin
    Keymaster

    @jp_grennier: But our slider also take the entire content area. Are you talking about the height then your slider is talking the height of your image. See your image it too large http://jpgrennier.com/wp-content/uploads/2013/10/sstest1.jpg . You can just upload the cropped small image and it will be fine.

    But if you want the php wrapper. It’s not a problem. But I guess it has no use. See how to add it

    // Adding New Slider Code
    function catcheverest_child_slider() {
    echo '<div id="main-slider" class="container">';
    	//Add in your code in betwwen this bracket
    	echo do_shortcode( '[SlideDeck2 id=281 ress=1]' );
    echo '</div>';
    	
    }
    add_action( 'catcheverest_before_main', 'catcheverest_child_slider', 10 ); 
    in reply to: Full Width adjustment #17564
    Sakin
    Keymaster

    @calvinocampo123: Making it widget will make difficult for your reader. But can you try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box. Hope that helps.
    .no-sidebar #primary { width: 100%; }

    in reply to: Responsive header image #17563
    Sakin
    Keymaster

    @eatcho: From where you are changing you site URL. You cannot just change the site URL from “Settings => General”, you need to change that from your database as well. As all your files are referenced to your site URL. You can to use tool like this http://interconnectit.com/products/search-and-replace-for-wordpress-databases/

    If you are talking about different thing then do let me know it.

    in reply to: Responsive header image #17554
    Sakin
    Keymaster

    @eatcho: No need to delete that image. Don’t keep it random. Just click on “Remove Image” from “Appearance => Header”. But after that if you don’t want that image in your site then you can remove it from “Media => Library”

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

    @Kevin: Thanks for your offer and I just check in your site and your voice overs are really great. Cheers 🙂

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

    @Trishah: Correction to your functions.php file. You should not use bloginfo('stylesheet_directory') instead you should use get_stylesheet_directory_uri() in child theme. It’s clearly written here http://codex.wordpress.org/Function_Reference/bloginfo

    So you should replace your current code
    <link rel="shortcut icon" href="<?php echo bloginfo('stylesheet_directory') ?>/images/favicon.png" >
    With the following Code
    <link rel="shortcut icon" src="<?php echo get_stylesheet_directory_uri() ?>/images/favicon.png" />

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

    Hello Trishah,

    Thanks now your style.css look better. One more suggestion. You can remove page.php and it’s not much worth adding it. But it will be great if you add in functions.php and add in the following. So, all the css changes can be added in style.css and all functions changes can be added from functions.php

    <?php
    /**
     * Catch Box Child Theme functions, hooks and filter
     *
     * You can add in the function that you want to customize
     * You can also use acton hooks and filter to modify the fucntion
     */
     
    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.

Viewing 20 posts - 9,601 through 9,620 (of 14,494 total)