Forum Replies Created
-
AuthorPosts
-
MaheshParticipant
HI @Keir,
RSS feed is xml data. Firefox has a built-in feature to generate the markup RSS page from the xml code but chrome does not. So this is normal. Its working fine.
Regards,
MaheshMaheshParticipantHi @oleymedia,
The code you’ve used for adding and removing action is correct if you’re within theme territory, but for child theme you have to hook it into init. You can do it as follows:
add_action( 'init' , 'catchresponsive_child_add_and_remove' , 15 ); function catchresponsive_child_add_and_remove() { remove_action( 'catchresponsive_after_header', 'catchresponsive_add_breadcrumb', 50 ); add_action( 'catchresponsive_before_page_container', 'catchresponsive_add_breadcrumb', 20); }
Also the remove_action() needs to have the same priority when it was added.
Regards,
MaheshMaheshParticipantHi @Shannon,
For this purpose, you have to make a child theme. You can find detail on how to make child theme HERE.
In child theme’s
functions.php
add the following codes.function catchresponsive_child_widgets_init() { //Custom Sidebar One for page and post register_sidebar( array( 'name' => __( 'Custom Sidebar One', 'catch-responsive' ), 'id' => 'custom-sidebar-one', 'description' => __( 'This is Custom Sidebar One', 'catch-responsive' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>' ) ); register_sidebar( array( 'name' => __( 'Custom Sidebar Two', 'catch-responsive' ), 'id' => 'custom-sidebar-two', 'description' => __( 'This is Custom Sidebar Two', 'catch-responsive' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>' ) ); /* You can add as many widgets as you want to.*/ } add_action( 'widgets_init', 'catchresponsive_child_widgets_init' );
Copy the
sidebar.php
from Catch Responsive Pro to the child theme and add custom conditions after line 110 for displaying desired widget in the desired page.This is a bit tricky job, so I recommend you to hire a customizer.
Regards,
MaheshDecember 22, 2015 at 9:38 am in reply to: Remove borders around the content boxes and widgets and narrow sidebar #81504MaheshParticipantHi @Lucia,
Thank you for using Catch Evolution Pro.
“Customize” option is currently available only in free version, please use “Theme Options” instead. This feature will be available in next version update.
Yes, your above changes can be achieved with Custom CSS.Go to “Appearance=> Theme Options=> Custom CSS” box and add the following CSS:
#primary { width: 900px; /* Change as per required */ } #secondary { width: 260px; /* Change as per required */ } .widget { border: none; }
Please make sure the sum of #primary and #secondary’s width is 1160px.
Regards,
MaheshMaheshParticipantHi @Keir,
You’ve put the blog link in RSS field, that is why its taking you to the same page. The RSS field should contain the RSS/FEED link not the regular blog page’s url.
For catchthemes.com, we can use:
RSS => http://www.catchthemes.com/rssThis will take you to the RSS subscription page.
Regards,
MaheshMaheshParticipantHi @Keir,
I think you’re confused about the RSS field in the “Theme Options=> Social Links=> Predefined Social Icons”. All options here are just to link to the desired URL. Same with the RSS field too, it is not for the subscription. If you’ve put the blog url in RSS, and when clicked takes you to the exact same page, then its working fine. It is made for that very purpose. For example to be more clear:
Field => Value ( What it does )
Facebook => https://www.facebook.com/catchthemes ( Opens Catchtheme’s facebook )
Twitter => https://www.twitter.com/catchthemes ( Opens Catchtheme’s twitter )Similarly,
RSS => Some page’s url that displays RSS feeds. ( Opens the page with given url )Let me know if this helps you.
Regards,
MaheshMaheshParticipantHi @Nestro,
Full width template….. do you mean the full width layout option? We don not use templates. Catch Adaptive Free version includes 3 layout options:
1. Primary Sidebar, Content
2. Content, Primary Sidebar
3. No Sidebar (Content Width)Another Layout option i.e.
4. No Sidebar (Full Width) -> available only in Catch Adaptive Pro VersionIn either of the theme, no templates are used, layouts are controlled with body class not separate template files.
I hope this clarifies you.
Regards,
MaheshMaheshParticipantHi @rflores,
I checked your site, you’ve currently used Simple Catch. Simple Catch and Simple Catch Pro are two independent themes and are installed as two separate themes. Are you sure that you’ve followed the instructions correctly as mentioned in the Theme Instructions
Please try again and let me know if the problem persists. Please explain in brief the steps in installing theme and where actually do you get the error message.
Regards,
MaheshMaheshParticipantThere is no actual dimensions for the background image to use in the site. Small image is used and is repeated to cover the whole area and it looks like a single image covering the whole site’s background.
For that, please remove the Custom CSS having
background-color
rule and add the following styles:body { /* I have used used your logo for url for the idea */ /* Please Replace The String inside url('') with your desired image url */ background-image: url('http://www.trendfly.org/wp-content/uploads/2015/08/Web-Logo_Trendfly_4-shadow.png'); } #branding { background-color: transparent; }
I don’t quite get you on the second question i.e. “make background have a scroll”. Please clarify it.
Let me know if this helps you.
Regards,
MaheshMaheshParticipantHi @gordon,
Yes, white space displayed in the page is where the blogs are displayed. The white space is there because of following reasons:
1. By default, the title for aside post format are hidden
2. The option you’ve chosen for the layout in “Customize=> Theme Options=> Layout Options=> Archive Content Layout” is Show Full Content (No Featured Image) and you’ve also checked “Check to hide excerpt/content on archive pages” box.So different solutions would be following.
1. Change the post format to standard format.
2. Go to “Customize=> Theme Options=> Layout Options” either change “Archive Content Layout” to other options than Show Full Content (No Featured Image) or uncheck “Check to hide excerpt/content on archive pages” box.If you don’t want the blogs content, let me know, I’ll provide Custom CSS.
Regards,
MaheshMaheshParticipantHi @FOEC,
For changing both the color and background color of “Donate Now”, replace
/* For changing color for Donate Now. */ #secondary-menu ul.menu #menu-item-343 > a { color: #ff0000; /* Your desired color's hex value */ }
with this
/* For changing color and background color for Donate Now. */ #secondary-menu ul.menu #menu-item-343 > a { color: #ffffff; /* Your desired color's hex value */ background-color: #0000ff; /* Your desired color's hex value */ }
For the menu bar, I think you’ve managed it already.
Regards,
MaheshMaheshParticipantHi @Ash,
The CSS you’ve included changes the display properties for all elements with
entry-header
class in the page. If you only want to hide the page title then you have to specify it for the page title only.Replace your above CSS with the following:
.page #main .page .entry-header { display: none; }
Let me know if this fixes your issue.
Regards,
MaheshMaheshParticipantHi @Invisible Cat,
The steps you’ve used for creating sub menu is correct. You’ve used a plugin “Royal Image Hover Effect” and seems it is because of the plugin’s css that is causing the current issue.
Try deactivating the plugin and check it.Let me know if this fixes your issue.
Regards,
MaheshMaheshParticipantHi @tivonjohnson,
I checked your site, it seems fine. The slider in your site and in the live demo looks the same.
Regards,
MaheshMaheshParticipantHi @gordon,
This issue is because you have used different image sizes and they are very small too. The recommended size for image is as below:
Width: 410px
Height: 321pxPlease use the images with same aspect ratio.
Let me know if this solved your issue.
Regards,
MaheshMaheshParticipantHi @FOEC,
Thank you for using Adventurous Pro.
Assuming the current logo’s height, here is the Custom CSS for centralizing the menu bar vertically.
Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS:@media screen and (min-width: 981px) { /* Centralizing the menu bar */ #masthead #header-right { margin-top: 20px; } #masthead.fixed-header #header-right { margin-top: 0; } } /* For changing color for Donate Now. */ #secondary-menu ul.menu #menu-item-343 > a { color: #ff0000; /* Your desired color's hex value */ }
Let me know if this helped.
Regards,
MaheshMaheshParticipantHi @ABS,
For this, you have to create a child theme. You can find the details on how to create a child them here
Then in child theme’s functions.php file add the following function.
function fullframe_delete_slider_cache() { delete_transient( 'fullframe_featured_slider' ); } add_action( 'after_setup_theme', 'fullframe_delete_slider_cache' );
Let me know if this solved your issue or not and please post your site url.
Regards,
MaheshMaheshParticipantHi @tivonjohnson,
Thank you for using Simple Catch Pro.
The slider’s height depends on the image height used in the slider. The recommended width and height of the image for slider is:
Width: 976px
Height: 313px
The image used in the live demo has same width and height as above.Regards,
MaheshMaheshParticipantHi @Invisible Cat,
Thanks and if you like my support and Gridalicious theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/gridalicious?rate=5#postform
-
AuthorPosts