Forum Replies Created
-
AuthorPosts
-
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.
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.
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.
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
Sakin
Keymaster@Ralph177: You question is confusing. Can you post add in your site URL and explain in reference to you site.
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>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.
Sakin
Keymaster@blackkeys: Nice. For more instruction, you can check out http://catchthemes.com/theme-instructions/catch-everest-pro/
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
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”.
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 );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%; }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.
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”
Sakin
Keymaster@Kevin: Thanks for your offer and I just check in your site and your voice overs are really great. Cheers 🙂
Sakin
Keymaster@Trishah: Correction to your functions.php file. You should not use
bloginfo('stylesheet_directory')instead you should useget_stylesheet_directory_uri()in child theme. It’s clearly written here http://codex.wordpress.org/Function_Reference/bloginfoSo 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" />Sakin
KeymasterHello 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 */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');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%; }Sakin
Keymaster@Kevin: I have just send you email in the address that you register with us. Please check in and reply me there.
-
AuthorPosts
