Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Michaela: It’s depend on the widget you have added in and also the title you have given in the widget. For example: if you add “Recent Posts” widget to your site sidebar. Then it will show you option to Add in Title. If you add that title then it will show your widget as “Recent Posts: Your Title name” otherwise it will just show as “Recent Posts”.
Sakin
Keymaster@Alison: Ok for that
1. Go to “Appearance => Theme Options => Promotion Headline Options => Promotion Position” and select “After Featured Content”.Then you will see
i. Header Image
ii. Featured Content
iii. Promotion HeadlineBut you want
i. Featured Content
ii. Promotion Headline
iii. Header Image2. For that you need to build child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/.
Then add the following code in your child theme functions.php file.
// Unhook default Adventurous functions function unhook_adventurous_functions() { remove_action( 'adventurous_before', 'adventurous_featured_image_display', 10 ); } add_action( 'init', 'unhook_adventurous_functions' ); //Adding Featured Image after promotion headline add_action( 'adventurous_before_main', 'adventurous_featured_overall_image', 101 );Sakin
Keymaster@beatmaniaNZ: Page layout will not work as BBPRESS has it’s own template which control it. See this for bbpress templates https://codex.bbpress.org/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/
Copy those file form BBPress template to your child theme and then remove
<?php get_sidebar(); ?>Sakin
Keymaster@Kevin: Looks like you are viewing your site from very large screen. It’s not good to upload very large image as it hamper site loading. That is why we recommend maximum image size that most of the user browse web. Maybe you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#header-featured-image img { width: 100%; }Sakin
Keymaster@Kevin: Sorry I don’t get it that you mean. Maybe you can create screenshot and upload it in your site or any photo sharing site then add in your screenshot url here.
Sakin
Keymaster@toni: For full slider, go to “Appearance => Theme Options => Featured Slider => Slider Options => Slider Layout” and select “Full Width Slider”
Sakin
Keymaster@heather: Oh in your are looking to change single post/page. Then yes, you need to edit content-single.php and content-page.php file. Then you need to copy function
fullframe_featured_page_post_image()to your child theme and functions.php file and add the following code where you want to show title.
<h1 class="entry-title">' . get_the_title(). '</h1>'
Maybe you can just add it after
$fullframe_featured_image = '<div id="header-featured-image" class =' . $featured_image_size . '>Sakin
Keymaster@heather: You can just copy
fullframe_archive_content_image()function fromfullframe-core.phpfile to your child themefunctions.phpfile and then add in Title as per your need. Then you can copycontent.phpto your child theme and remove title from there.Sakin
Keymaster@barbyma31: Thanks for your detail response.
Sakin
Keymaster@afeauto: I have already mentioned to you that you need to update Catch Base Pro theme to latest version. See it at http://catchthemes.com/support-forum/topic/featured-image-and-sidebar-on-shop-page/
Then add the detail mentioned there and it will work fine.
Sakin
Keymaster@vlts: Once you check in “Disable Responsive Design” and save changes from “Appearance => Theme Options => Responsive Design”, it should work fine. Can you send me your site URL, then I can check in.
Sakin
Keymaster@Pier: If you want mixed slider, then I recommend you to upgrade to pro version and use “Featured Image Slider”, when you can upload image and link to any page, post, category, external links as per your need.
Sakin
Keymaster@Tracey: Yes, I understand and this is the design that works like that. So, if you want same image to work on all.
Then
1. For slider and featured content, please user Featured Image Slider and Featured Image Content.
2. Then for featured image, upload image size of 800px width and height 484px. This is size of featured image size.
3. Then go to “Appearance => Customize => Layout Options”. Then in ” Archive Content Layout”, select the option “Excerpt Image Top” and in “Single Page/Post Image Layout”, select option “Featured Image Size”.Sakin
Keymaster@toni: Looks like there is conflict with image and the “Photon” module of Jetpack plugin. I guess that you had inserted that image in your page before changing the Layout. So, trying removing that image and add it again as Full Size image. If this doesn’t solve then for now, you might need to deactivate “Photon” module of Jetpack from Jetpack setting.
For others to insert image as Full Size image. See this screenshot https://www.pinterest.com/pin/548594798336717816/
Sakin
Keymaster@Cybersnaby: Are you using Gallery post type then it will only show the image that are uploaded from that particular page “Add Media” button.
Sakin
Keymaster@effess: For that you need to build child theme and edit that menu script. Sorry no option to do that in default.
July 2, 2015 at 10:50 am in reply to: Polylang: translating Featured Content title and description #60437Sakin
Keymaster@Pius: Yes, looks like there is issue with your child theme.
Sakin
Keymaster@aparente001 You have played totally with CSS which is causing issue. As your menu is being overlapped by your header. You can remove your header css and it will be fine.
-
AuthorPosts
