Forum Replies Created

Viewing 20 posts - 3,561 through 3,580 (of 14,506 total)
  • Author
    Posts
  • in reply to: Insert table button in the toolbar #58613
    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.

    in reply to: Page: layout options #58609
    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.

    in reply to: General help with some stuff #58608
    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;
    }
    Sakin
    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/

    Sakin
    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”.

    Sakin
    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.

    in reply to: General help with some stuff #58574
    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; }

    in reply to: Site Logo hyperlink #58573
    Sakin
    Keymaster

    @Phil: No you can skip cropping or you can just add in your image URL.

    in reply to: Adding second line to the tag line #58572
    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.php file. In the following code, you just need to replace the text Second line text below tagline with 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 ;	
    }
    Sakin
    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.

    Sakin
    Keymaster

    1. 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;
    }
    in reply to: All custom settings are gone after update #58569
    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.

    Sakin
    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;
    }
    in reply to: All Catch Everest formatting gone #58548
    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.

    Sakin
    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-xml

    in reply to: All Catch Everest formatting gone #58545
    Sakin
    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 .css extension files. They can just check the your page source and try to click on any .css files 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 on buttons.min.css it will load like this https://dl.dropboxusercontent.com/u/81234910/css-not-loading.png

    Sakin
    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;
    }
    in reply to: General help with some stuff #58543
    Sakin
    Keymaster

    1. 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.

    in reply to: All custom settings are gone after update #58540
    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.

    in reply to: Problem with wordpress gallery #58539
    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.

Viewing 20 posts - 3,561 through 3,580 (of 14,506 total)