Forum Replies Created
-
AuthorPosts
-
Pratik
Member@danceregistry: Currently, the site has Clean Business Pro theme. I am confused as to what really the issues is? Do you want to decrease the size of Slider Background?
Pratik
MemberHI @taher,
I think you want pretty permalinks that will show url as
http://example.com/category-name/post-name.For this, you do not need to edit the theme files. You can simply achieve it by following steps:
1. Goto Dashboard=> Settings => Permalinks
2. In Common Settings select Custom Structure
3. There add this in the box /%category%/%postname%/
4. Save and view the links
For more info, checkout the screenshot here.Pratik
Member1-I want to buy the theme, and needs to know how much it will cost and for how many websites I can use it?
* You can view the details of pro theme here: https://catchthemes.com/themes/catch-responsive-pro/
For theme re-usability, all our WordPress themes are licensed under the GNU general public license. You may use your purchased theme on as many websites as you like.2-I want to link the pages name in the Navigation bar with text or certain paragraph on the home page (to scroll home page down like a page jump) not to go to any other page?
You can do this if you have simple HTML knowledge. You can use the bookmark/anchor facility provided by HTML. For more details, please view HTML Links – Create a Bookmark section of http://www.w3schools.com/html/html_links.asp3-How can I maximize the slider to fit the page width?
Catch Responsive theme is a boxed layout theme. So in order to make slider full width, you will need to do a lot of customizations, so please hire a customizer to perform that task.Regards,
PratikPratik
Member@danceregistry: Can you post in your site url so i can check it? Also, by header section less tall, what do you exactly mean, do yo mean header image section?
Pratik
Member@tosgood: Thank you for using Simple Catch Theme. You can use Text widget in Appearance Widgets to add html and js code in any sidebar.
If you want it in any post or page, you can paste this code there as well.
However, please be very careful and use reliable resources before adding any scripts to your site. Adding malicious code can result in site being hacked.
Regards,
PratikPratik
Member@huca: Yes, this is what I meant. Catch Responsive uses Page/Post thumbnail. If multiple images on multiple languages is needed, it needs to be provided by the plugin.
Pratik
Member@huca:
2) I meant the image used from theme, which is then used to featured slider. I believe this is not any plugin´s issue, but template only?
I am afraid, the featured slider will not work that way. If you want that sort of functionality, you will need to hire a customizer and do some custom work.3) disabled caching plugin, but no change, this is really weird as I look at it in the same way that it should work in the same way as the text :/
It uses the same code as the text so this is very strange issue indeed. I will net you know if I come up with anything.Pratik
MemberCan you let me know what exact issues you are facing with menu and slider?
Pratik
MemberHI @wilkinsontr:
We will try to fix this and send the update asap. Just need to perform a few tests before pushing the next version live. I hope you understand.Thank you for your patience.
Regards,
PratikPratik
MemberHi @stevejonesmo:
Can you try following css code:#header-featured-image img { width: auto; }Let me know if this works or not. If not, please post in your site url.
Regards,
PratikPratik
Member@huca:
It should work, but you should make modifications via child theme. If done so, the changes will not be lost after update.Regards,
PratikPratik
Member@huca:
Thank you for using Catch Responsive Theme. Although this theme is translation-ready, the free version does not support multi-language plugins. And Pro version too officially supports WPML Plugin.I will try to solve the issues you have mentioned but I am not 100% sure that they will work because our theme does not support this plugin.
1) the featured slider is not changing when switching languages
For this, you will need to do some customizations via child theme. For creating child theme, please follow this link. Then append code given in following link in the child theme’s functions.php file: http://pastebin.com/iSfBWshR2) featured images remain the same for EN and CZ pages
This should be handled by plugin as it needs to create separate images holders for separate languages. Please contact their support3) the logo link leads to CZ version when being on EN version of the webpage. This is really strange because the text after logo leads to correct EN version
This is really strange as both logo and text use same link(although generated separately) via a functionhome_url('/'). Can you try disabling any caching plugins and see if the problem persists?Pratik
Member@erx87: Please use following CSS to change the main menu color background:
#access, #access ul.menu li:hover > a { background: #2a3e74 none repeat scroll 0 0; }Pratik
Member@theproperva: The contents in homepage, about page, etc are all there. Can you check it?
Pratik
Member@marie21:
If you want the widget to show on right side, then you will need to upgrade to pro version. Header right sidebar is a pro feature. I recommend you to upgrade to Pro version.Regards,
PratikPratik
Member@vlts: There is no shortcode functionality for slider, but you can display slider in templates by using function
catchbox_sliders()Pratik
MemberI cannot see the code, have you added it?
Please remove the previous code in your custom css box from
#content .wrapper { width: 1300px; /* Increase/Decrease the size that suits to your need */ }and everything below it and add in following code:
@media screen and (min-width: 1024px){ #content .wrapper { width: 1300px; /* Increase/Decrease the size that suits to your need */ } /* Use following to increase main content width too if needed */ #main { width: 850px; /* Increase/Decrease the size that suits to your need */ } .sidebar-primary { width: 400px; } } #text-3 .widget-title { border-bottom: 1px solid black; /* Increase/Decrease 1px to increase/decrease border size */ } .sidebar-primary .widget-title { border-bottom: 1px solid black; /* Increase/Decrease 1px to increase/decrease border size */ } #text-3 .widget-title { border-bottom: 1px solid black; /* Increase/Decrease 1px to increase/decrease border size */ } /* Add black line above footer */ #colophon { border-top: 1px solid pink; } #site-generator { padding-bottom: 0px; /* Increase/decrease to add space on top of footer */ padding-top: 0px; /* Increase/decrease to add space on bottom of footer */ } .sidebar-primary section { border: 1px dotted pink; padding: 20px; /* Remove this if you do not want any space between widgets and border */ }Pratik
Member@marie21: There is a small issue with the code. The last line should be
add_action( ‘catchresponsive_header’, ‘catchresponsive_extra_header_sidebar’, 55);before}So your final code becomes as follows:
/** * Register extra custom widgetized area */ function catchresponsive_extra_header_widget_init() { //Extra Header Widget Area register_sidebar( array( 'name' => __( 'Extra Header Widget Area', 'catchresponsive' ), 'id' => 'extra-header-widget-area', 'before_widget' => '<section id="%1$s" class="widget %2$s"><div class="widget-wrap">', 'after_widget' => '</div><!– .widget-wrap –></section><!– #widget-default-search –>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', 'description' => __( 'This is the extra header sidebar widget area that appears in homepage only.', 'catchresponsive' ), ) ); } add_action( 'widgets_init', 'catchresponsive_extra_header_widget_init' ); /** * Add Extra Header Widget Area below header#masthead */ function catchresponsive_extra_header_sidebar() { global $wp_query; // Get Page ID outside Loop $page_id = $wp_query->get_queried_object_id(); // Front page displays in Reading Settings $page_for_posts = get_option('page_for_posts'); if ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) { dynamic_sidebar('extra-header-widget-area'); } } add_action( 'catchresponsive_header', 'catchresponsive_extra_header_sidebar', 55);Let me know how it goes.
Regards,
Pratik -
AuthorPosts
