Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@svr: There is no option to make two pages blog. So, either you need to make your homepage to show latest posts or you can assign any other page as blog from “Appearance => Customize => Static Front Page”. Then you can select particular categories from “Appearance => Theme Options => Homepage/Frontpage Category Settings”
But if you want another pages to show blog as well. Then you need to build child theme and then create page template to show blog with particular categories. For that, you can create php file like
template-selected-category.phpand then copy code frompage-blog.phpthen change then change template name and add category_name. See the example code as below, where I change template name to Selected Categories Template and added category staff and news.Template Name: Selected Categories Template $blog_query = new WP_Query( array( 'category_name' => 'staff,news', 'post_type' => 'post', 'paged' => $paged ) );Note: You can read more about child theme at http://catchthemes.com/blog/create-child-theme-wordpress/ and WP_Query at https://codex.wordpress.org/Class_Reference/WP_Query
Sakin
Keymaster@Sarah: For page and post, the preview image will be your Featured Image. So, add featured images in your pages and posts. See this http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/
Then you can use the plugin like “WordPress SEO by Yoast” which allows you to add in image for archive pages. This facebook used open graph which is supported by this plugin.
After you make these changes, you can go to https://developers.facebook.com/tools/debug/ and test your site.
Sakin
Keymaster@Cesar R: Sorry this is not directly related to theme and I am not aware of script that you are using to support your code. Your Tactics should have responsive embed code then it will be fine. But when I check your page, it is using fixed height and width embed code. So, you need to get help from that code provider.
Sakin
Keymaster@roche5000: Excerpt/Summary will now show link.
To hide all and just show date in meta, you can add the following css in “Appearance => Theme Options => Custom CSS” Box:
.post-by .no-padding-left, .post-by .last { display: none; } #main #content ul.post-by li { padding: 0; }Sakin
Keymaster@Paul: Sorry I am bit confused. I don’t see any issue in the layout.
you can replace your current custom css:/* For Large Screen */ #primary { width: 750px; } #secondary { width: 180px; } @media screen and (max-width: 1224px) { #primary { width: 750px; } #secondary { width: 180px; } } @media screen and (max-width: 1060px) { #primary { width: 750px; } #secondary { width: 180px; } } @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) { #primary { width: 750px; } #secondary { width: 180px; } } @media screen and (max-width: 960px) { #primary, #secondary { width: 100%; } }With the following css:
@media screen and (min-width: 961px) { #primary { width: 670px; } #secondary { width: 180px; } } @media screen and (min-width: 991px) { #primary { width: 720px; } } @media screen and (min-width: 1024px) { #primary { width: 750px; } }Sakin
Keymaster@m4rkym: Three Columns ( Equal Primary and Secondary Sidebars ) layout option is there only in Catch Base Pro theme. See this demo http://catchthemes.com/demo/catch-base/layout-options/three-columns-equal-primary-secondary-sidebar/
But in Free version, you need to do it manually using custom css. So, try adding following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
@media screen and (min-width: 991px) { .three-columns #content_sidebar_wrap { width: 690px; } .three-columns #content_sidebar_wrap #main { width: 450px; } .three-columns .sidebar-primary, .three-columns .sidebar-secondary { width: 240px; } } @media screen and (min-width: 1101px) { .three-columns #content_sidebar_wrap { width: 735px; } .three-columns #content_sidebar_wrap #main { width: 460px; } .three-columns .sidebar-primary, .three-columns .sidebar-secondary { width: 275px; } } @media screen and (min-width: 1153px) { .three-columns #content_sidebar_wrap { width: 760px; } .three-columns #content_sidebar_wrap #main { width: 460px; } .three-columns .sidebar-primary, .three-columns .sidebar-secondary { width: 300px; } } @media screen and (min-width: 1281px) { .three-columns #content_sidebar_wrap { width: 820px; } .three-columns #content_sidebar_wrap #main { width: 480px; } .three-columns .sidebar-primary, .three-columns .sidebar-secondary { width: 340px; } }Sakin
Keymaster@jeremiah.j: Sorry for the late reply due to power outage. I am happy that you found solution by yourself. Cheers 🙂
Sakin
Keymaster@Dolomie: Sorry your question is bit confusing. Do you mean that you want your slider to show in entire site. If so then you can go to “Appearance => Customize => Featured Slider => Featured Slider Options” and in “Enable Slider on”, you need to select “Entire Site”
Sakin
Keymaster@RevCT: No problem. You can just add embed code in your page. See this screenshot https://www.pinterest.com/pin/548594798332210926/
Sakin
Keymaster@Gregory: You can add the semi transparent background color using rbga color code as following css. You can see, rgba color 255, 255, 255 is white and 0.6 is 60% transparent. So, change the color code and transparent as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#featured-content { background: #fff; /* Solid Color For Old Browser */ background: rgba(255, 255, 255, 0.6); /* 60 percent transparent background color */ }Sakin
Keymaster@dancingblu: It’s because you have added in your own background from custom background and it’s overwriting your css. To make that, you can add the following css instead:
body.custom-background.page-id-499 { background-color: #222930; }Sakin
Keymaster@Karl: Catch Responsive Pro used core WordPress Custom Menus so we don’t have extra control. You can create your custom menu from “Appearance => Menus” then assign location from “Appearance => Customize => Menus”.
You can read more abut Custom menu at http://catchthemes.com/blog/custom-menus-wordpress-themes/
Sakin
Keymaster@Vitaliy: Thanks for the update. Yes, this issue is totally a server configuration. It’s great that you were able to make changes in your php.ini file in your server. So, any other who doesn’t know how to edit that file. You can always ask your Website Hosting Server support to increase the upload limit.
Sakin
Keymaster@Cattext: For Adventurous free theme, you need to post in http://catchthemes.com/support-forum/forum/adventurous-free/ . So, from next time please post in proper theme support forum
So, to remove open in a blank page. You need to build child theme and then copy
adventurous_social_networks()function to your child theme functions.php file and then removetarget="_blank"from that function.Sakin
Keymaster@knudkp: Sorry there is no option to do that. That recent posts widget is from WordPress core. Maybe you can to try adding in Custom Menu with the selection of your posts. So, it just display that.
Sakin
Keymaster@Michaela: Sorry for late reply as I was out of internet for 2 days.
Here you can see in demo the design of ordered and unordered list: http://catchthemes.com/demo/catch-kathmandu/2013/01/11/markup-html-tags-and-formatting/
But if you want to change, then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
.entry-content ul { list-style: inside none disc; } .entry-content ul li { margin-left: 0; } .entry-content ul ul { list-style: inside none circle; } .entry-content ul ul li { margin-left: 36px; }July 21, 2015 at 3:01 pm in reply to: responsive home page not showing correct on mobiles and ipads #61269Sakin
Keymaster@fcexclusive: No I haven’t received it. I will email you and you can send me details there.
Sakin
Keymaster@Yuna: Child theme style.css and custom css are different. Custom CSS are given more priority then responsive.css and child theme style.css. Where as child theme style.css is less priority then responsive.css. So, CSS that work in Custom CSS might not work in child theme style.css
So, it depends what css are you changing. If you are changing responsive css then you need to be careful about it.
You can always ask me the css that you wanted to add in your child theme style.css which is not working.
July 21, 2015 at 11:07 am in reply to: responsive home page not showing correct on mobiles and ipads #61263Sakin
Keymaster@fcexclusive: Hum it’s strange. Can you go to W3 Total Cache settings and clear your cache and also check in your have any other cache.
-
AuthorPosts
