Forum Replies Created
-
AuthorPosts
-
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.
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.
Sakin
Keymaster@rgbarsanti: Simply add the following CSS in “Appearance => Theme Options => Custom CSS” box.
.featured { height: 250px; }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; }Sakin
Keymaster@rgbarsanti: Sorry I mean move to upload the size you want that is 976Ă—250
Sakin
Keymaster@owen: There you can see
‘ code.<body <?php body_class(); ?>>. In wordPress Theme we need to add default hook body_class in `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' ); -
AuthorPosts
