Forum Replies Created
-
AuthorPosts
-
December 24, 2014 at 12:54 am in reply to: Responsive Design – Kat Pro: Sec & Footer Menu stopped displaying #49249
Sakin
Keymaster@Norbert: It’s strange as it’s working fine in our server. I have set it “Primary and Secondary Menus” and then checked option “Enable Secondary & Footer Menu in Mobile Devices” in “Appearance => Theme Options => Responsive Design”.
If you are not getting after this then please share your site URL and then I will check if I can find any issue looking at your site. Also sometime, there might be plugin conflict, so try disabling plugin one by one to check in if there is any plugin conflict.
Sakin
KeymasterHello ,
1. I don’t get it what you mean. You can remove your drop down items from your custom menus directly. You can go to “Appearance => Menus” and edit your custom menu items.
But if you just want to hide the drop down of the menu then you can add the following css in “Appearance => Theme Options => Custom CSS” box:#access ul li ul { display: none !important; }But if you totally want to hide your menu, then add the following css instead:
#access { display: none; }2. The layout narrow in not from the css that you have added but it’s from the layout option that you have select. So, please go to “Appearance => Theme Options => Layout Options” and check your “Default Layout”, it should be set to “Left Sidebar” or if you don’t want sidebar then it should be set to “No Sidebar, Full Width”
Sakin
KeymasterHello,
1. You can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
#main ul { color: #000; list-style: outside none disc; }2. You can add the following css in “Appearance => Theme Options => Custom CSS” box:
/* Make Social Icons Color by Default */ ul.social-profile li.facebook a { background-position: 0 -43px; } ul.social-profile li.linkedin a { background-position: -603px -43px; } ul.social-profile li.pinterest a { background-position: -216px -43px; } ul.social-profile li.you-tube a { background-position: -87px -43px; } ul.social-profile li.email a { background-position: -1119px -43px; }Sakin
Keymaster@aleks.mavric123: Simple Catch theme only have option to have thumbnail image and not the full image in the archive page. You can show full width image only in Single post. You can select other theme like Catch Kathmandu, Catch Evolution, Adventurous or Catch Flames theme which has this option.
You can only change the content layout in this theme. That is from “Appearance => Theme Options => Default Layout”
December 24, 2014 at 12:10 am in reply to: Lower right header menu & use posts page as front page #49244Sakin
Keymaster@Kim:
1. I don’t get it what you mean. As when I check in your Front page. It’s the archive page listing your latest posts. Can you explain your issue in detail. For which site are you asking for. You are using Catch Box Pro and is posting it in Catch Flames Pro support forum. Do you mean to to make it like your site with Full Content layout and then use more tag to break the content. Then you can go to “Appearance => Theme Options => Layout Options” and in “Archive Content Layout”, you need to check the option “Full Content Display”2. For this, please post in your site URL so that I can check in the alignment and suggest you the css.
Sakin
Keymaster@adamsh: Yes, it works with WPML and has wpml-config.xml file. We have compatibility certify from WMPL http://wpml.org/theme/catch-kathmandu-pro/
But we haven’t added support for this plugin. So, I don’t think it will work properly. You might need to build child theme. You can ready about child theme and download sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/ and then add the following code in your child theme functions.php file.
/** * Template for Clearing polylang Invalid Cache * * @since Catch Kathmandu Pro */ function catchkathmandu_polylang_invalidcache() { delete_transient( 'catchkathmandu_post_sliders' ); delete_transient( 'catchkathmandu_page_sliders' ); delete_transient( 'catchkathmandu_category_sliders' ); delete_transient( 'catchkathmandu_image_sliders' ); delete_transient( 'catchkathmandu_homepage_headline' ); delete_transient( 'catchkathmandu_homepage_featured_content' ); delete_transient( 'catchkathmandu_footer_content' ); delete_transient( 'catchkathmandu_footercode' ); delete_transient( 'catchkathmandu_featured_image' ); } add_action( 'after_setup_theme', 'catchkathmandu_polylang_invalidcache' );December 23, 2014 at 11:55 pm in reply to: Getting rid of faint grey box around inserted image #49242Sakin
Keymaster@Arcturus: You can add the following css in “Appearance => Theme Options => Custom CSS” box
#content .entry-summary img.wp-post-image, #content .entry-content img { border: none; max-width: 100%; padding: 0; }Sakin
Keymaster@jjs: It’s little strange as Catch Evolution Theme is fully tested theme and we haven never experienced this problem till date. Also we haven’t got any message from our users about this type of issue.
In you screenshot, I have see that you have lot of plugins installed and also there is 18 updates needed. So, please update your WordPress, Plugins and Themes and check in. If this doesn’t solve it then please disable all plugins and check in. To find the conflicting plugin, you can disable plugin one by one and check in.
Sakin
Keymaster@talkleft: We have no plans to phase our Catch Box Pro. Catch Box Pro is one of our best theme. We are in the process of making it strong in coming year.
Catch Base Pro is actually our new Base Theme. This theme is simple and also have lot of cool features added. Further, we have migrated from Theme Options panel to Theme Customizer in this theme. We will be using theme as our base theme for our most of our new themes coming in 2015.
It’s really difficult to describe the difference as these two theme are totally different. For Featured of Catch Base Pro, you can read theme instructions page at http://catchthemes.com/theme-instructions/catch-base-pro/
Sakin
Keymaster@Sakin: Then you can disbale that menu and add it in as Secondary Menu.
Sakin
Keymaster@alukaszewicz: Sorry I don’t know which Screen Options you are talking about. IN WordPress Dashboard, each section have different Screen Options. So, if you are talking about screen options in All Posts Section then first you need to go to “Posts => All Pots” and then click on “Screen Options”
Sakin
Keymaster@alukaszewicz: You shouldn’t edit any core theme file inside ‘catch-box’ directory. As all these changes will be reverted back to original when you update the theme. So, if you want to change any functions, then you need to first build child theme. Read this for child theme http://catchthemes.com/blog/create-child-theme-wordpress/, from here you can also download sample child theme. Then you can copy and paste the following code in your child theme functions.php file.
function catchbox_posted_on() { printf( __( '<span class="by-author">Posted by <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'catchbox' ), esc_url( get_permalink() ), esc_attr( get_the_time() ), esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), esc_attr( sprintf( __( 'View all posts by %s', 'catchbox' ), get_the_author() ) ), get_the_author() ); }Sakin
Keymaster@adamsh: There is no option like uploading second logo in the right of logo. But you can try adding in widget in Header Right Sidebar from “Appearance => Widgets”. You can use “2. Catch Kathmandu: Advertisement” widget to add image URL.
Sakin
Keymaster@Jacopo: I cannot check with the screenshot. I need your live site URL then only I can check in with my mobile and send you custom css.
Sakin
Keymaster@vidyaekta: I have already given you tutorial on Menus to add Title in your like in menu http://en.support.wordpress.com/menus/#adding-custom-links.
About alt tag in image. We have alt tag in image which is generated from theme. But if you have added image in your posts/pages then you need to manage this yourself. See this http://en.support.wordpress.com/images/uploading-images/ and http://en.support.wordpress.com/images/image-settings/
Sakin
Keymaster@vidyaekta: I though you are talking about internal link. I still don’t know what are you talking about. Sorry for that.
Maybe you are talking about Title tag in your menu. Then you can add that in your menu from “Appearance => Menus”. See this http://en.support.wordpress.com/menus/#adding-custom-linksSakin
Keymaster@vidyaekta: Maybe it’s talking about the breadcrumb. You can add Breadcrumb pugin such as wordpress.org/plugins/breadcrumb-navxt .
Sorry I don’t understand. Please ask this to the support of the site from where you find this issue.
December 21, 2014 at 12:47 am in reply to: Background Header Image and Centering Title/Subtitle #49147Sakin
Keymaster@thekathrynjoy: We only support theme developed by Catch Themes. You can add background in any theme but the css will be different.
Sakin
Keymaster@vidyaekta: I still don’t get it what you mean. You site name will be in “Settings => Reading”
-
AuthorPosts
