Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@fabger: There is no option that like in default. You might want to search for responsive table plugin at http://wordpress.org/plugins/ or google it.
Sakin
Keymaster@mvb:
1. Hum why you want “Content and Secondary Sidebar”. I don’t understand it. If you want to show your sidebar in the left and content in the right then you can use the layout “Primary Sidebar, Content”. You can see the list of layout options demo for Catch Base Pro at http://catchthemes.com/demo/catch-base/layout-options/2. Yes, if you have content less then then number of word count in “Appearance => Customize => Theme Options => Excerpt Options => Excerpt Length (words)”
So, we are adding Content Options in version 2.0 which will help you.
Sakin
Keymaster@stevan021: I am not sure if I understand you correctly. But if you want to add background color just in logo then you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#site-logo { background-color: #000; }May 31, 2015 at 1:09 am in reply to: Change position of 'read more' and how to add line breaks #58607Sakin
Keymaster@michaela2: Same goes, to you. You can go to “Appearance => Customize => Feature Content Options => Featured Content Type” and select “Show Full Content” in “Display Content” and then you can break content in your page using more tag
<!--more-->. Read more about more tag at http://devotepress.com/wordpress-writing-editing/how-to-split-content-using-the-more-tag-option/May 31, 2015 at 1:06 am in reply to: Change position of 'read more' and how to add line breaks #58606Sakin
Keymaster@klaarbenje: Oh you are talking about Featured Page Content. So, this will not take Layout Options as Archive Content Layout. Archive Content layout is only for the blog post.
Good News, we have just added in “Display Content” option in Featured Content Options. So, first update your Catch Responsive theme to latest version 1.5 and then go to “Appearance => Customize => Feature Content Options => Featured Content Type” and select “Show Full Content” in “Display Content”.
May 30, 2015 at 11:06 pm in reply to: Help! How to change promotion headline's text color, and other issues- Fullframe #58601Sakin
Keymaster@Steve: Which theme are you using it? Can you post in your site URL so that I can check in and send you css for this.
Sakin
Keymaster@stevan021:
1. For 5 products in line. Replace the following previous css:@media screen and (min-width: 769px) { .woocommerce ul.products li.product, .woocommerce-page ul.products li.product { margin-right: 2.5%; width: 18%; } }With the following css:
@media screen and (min-width: 769px) { .woocommerce ul.products li.product, .woocommerce-page ul.products li.product { margin-right: 1%; margin-left: 1%; width: 18%; } }2. To remove that from screenshot, add the following css:
.woocommerce-breadcrumb, .woocommerce-result-count, .woocommerce-ordering { display: none; }Sakin
Keymaster@Olivia: There is no such code. As WordPress only have option to add in Site Title and Tagline. If you want second text below tagline, then you need to build child theme and add in manually.
So, first 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.phpfile. In the following code, you just need to replace the textSecond line text below taglinewith your own text./** * Site Logo, Title, Tagline and Second Tagline * */ function catchresponsive_site_branding() { $options = catchresponsive_get_theme_options(); //Checking Logo if ( '' != $options['logo'] && !$options['logo_disable'] ) { $catchresponsive_site_logo = ' <div id="site-logo"> <a href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" rel="home"> <img src="' . esc_url( $options['logo'] ) . '" alt="' . esc_attr( $options['logo_alt_text'] ). '"> </a> </div><!-- #site-logo -->'; } else { $catchresponsive_site_logo = ''; } if ( display_header_text() ){ // Show header text if display_header_text is checked $catchresponsive_header_text = ' <div id="site-header"> <h1 class="site-title"><a href="' . esc_url( home_url( '/' ) ) . '">' . get_bloginfo( 'name' ) . '</a></h1> <h2 class="site-description">' . get_bloginfo( 'description' ) . '</h2> <h2 class="site-description">Second line text below tagline</h2> </div><!-- #site-header -->'; } else { $catchresponsive_header_text = ''; } if ( '' != $options['logo'] && !$options['logo_disable'] ) { if( ! $options['move_title_tagline'] ) { $catchresponsive_site_branding = '<div id="site-branding" class="logo-left">'; $catchresponsive_site_branding .= $catchresponsive_site_logo; $catchresponsive_site_branding .= $catchresponsive_header_text; } else { $catchresponsive_site_branding = '<div id="site-branding" class="logo-right">'; $catchresponsive_site_branding .= $catchresponsive_header_text; $catchresponsive_site_branding .= $catchresponsive_site_logo; } } else { $catchresponsive_site_branding = '<div id="site-branding">'; $catchresponsive_site_branding .= $catchresponsive_header_text; } $catchresponsive_site_branding .= '</div><!-- #site-branding-->'; echo $catchresponsive_site_branding ; }May 29, 2015 at 10:28 pm in reply to: Change position of 'read more' and how to add line breaks #58571Sakin
Keymaster@klaarbenje:
1. If you want manual read more text by adding in more tag<!--more-->, then first you need to go to “Appearance => Customize => Theme Options => Layout Options” and in “Archive Content Layout”, you need to select “Show Full Content”.2. Sorry I don’t get it what you mean. As you haven’t posted in your site URL to see the contact. So, please post in your site URL and explain please.
May 29, 2015 at 10:23 pm in reply to: Change background and remove toggle from the other pages #58570Sakin
Keymaster1. For masthead to display only in homepage, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#masthead { display: none; } .home #masthead { display: block; }2. For transparent background in your content area, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#content, #main { background-color: transparent; }Sakin
Keymaster@Veronica: So, what’s not working. Is that Mail Chimp Sign in box in your sidebar. then you might want to just assign that from “Appearance => Widgets”. The update process should be smooth like this http://devotepress.com/wordpress-writing-editing/upgrade-premium-version-wordpress-themes-eg-adventurous-pro/
If you want me to take a look at your settings then let me know it. I will send you email in your register email address. You can reply me there.
May 29, 2015 at 5:45 pm in reply to: Change background and remove toggle from the other pages #58552Sakin
Keymaster@Laura Pio: Yes, we are doing fine. Thanks for supporting us.
1. You default background should be from “Appearance => Background”, and change as per your need. I see currently you have this image as default background http://laurapiofotografia.com.br/wp-content/uploads/flormetal2leveee.jpg. Next, you should add like in free version. That’s fine. Free and Pro version are same.
But looks like you have added color or content and all. So, it’s not transparent to show that. Can you let me know what are the css that you have in “Appearance => Customize => Theme Options => Custom CSS” box.
Also let me know, where you want these background image to show. For example, if you want to show in your content area then, your content content area background needs to be transparent
#content { background-color: transparent; }Sakin
Keymaster@oly: Did you try re-install as well. Ask your hosing why it’s not loading when you can default theme and no plugin install.
May 29, 2015 at 11:00 am in reply to: Polylang: translating Featured Content title and description #58546Sakin
Keymaster@widespread: try adding xml file in your parent theme in
public_html/wp-content/themes/catch-base/wpml-config.xml. I am not sure how Polylang works. Here is complete list of XML file https://gist.github.com/sakinshrestha/6cc4ba393ade041c16ae#file-wpml-config-xmlSakin
Keymaster@oly: If this was theme issue, then your problem will be solved when you activate your default theme like twentyfifteen. The only option at this stage I suggest you.
1. Go to your plugin and deactivate plugin one by one to check if this is caused by any of your active plugin.
2. If this doesn’t fix then you need to “Re-Install” your WordPress update. For that, go to “Dashboard => Updates” from your WordPress Dashboard and then click on “Re-Install”.
3. For your Hosting support, you can ask why the site is not reading any.cssextension files. They can just check the your page source and try to click on any.cssfiles from plugin, themes and WordPress core. None of them are loading. For example, if you view your page source in your login page http://www.festivalfiresolutions.co.uk/wp-login.php and then click onbuttons.min.cssit will load like this https://dl.dropboxusercontent.com/u/81234910/css-not-loading.pngMay 29, 2015 at 10:45 am in reply to: Social Social Widget displays wrong on 1st loading of site #58544Sakin
Keymaster@invertedstaircase: It’s js loading issue which you will see when there is site loading issue. We are trying to replace this JS with custom css in next version update and it will be fixed. So, please wait for update.
Next, I see that there is width issue in your social icons. So, can you add the following css in “Appearance => Theme Options => Custom CSS” box:
ul.social-profile li { width: 42px; }Sakin
Keymaster1. You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
@media screen and (min-width: 769px) { .woocommerce ul.products li.product, .woocommerce-page ul.products li.product { margin-right: 2.5%; width: 18%; } } .woocommerce.post-type-archive-product a.product_type_simple { display: none; }2. Sorry I don’t understand this one. As I see your logo set fine.
Sakin
Keymaster@Veronica: Sorry, it shouldn’t be like that. All your custom css in “Appearance => Theme Options => Custom CSS” box will remain there. Please check in there.
If you have edit any theme files like style.css, index.php, functions.php and so on then this will be reverted back to original when you update or upgrade your theme.
Sakin
Keymaster@faritorero: I am able to view your gallery fine with all devices you have mentioned. Maybe you need to clear your browser cache, refresh your browser and check in. I see that you have activated “Photon” module from Jetpack, which will load image from WordPress.com CDN. So, you might be having issue there. So, try refreshing it.
-
AuthorPosts
