Forum Replies Created
-
AuthorPosts
-
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.
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.
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 */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.
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.
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.
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.
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/
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.
-
AuthorPosts
