Forum Replies Created

Viewing 20 posts - 5,201 through 5,220 (of 14,497 total)
  • Author
    Posts
  • in reply to: Site verification ID – Where? #50764
    Sakin
    Keymaster

    @MMchen: I did option two in one of my site and it was working. Looks like you have Cache plugin setup. In that case you need to go to that Cache plugin setup and cache your cache and it will work.

    in reply to: Site verification ID – Where? #50762
    Sakin
    Keymaster

    @MMchen: In Catch Box Free version, it was remove from version 2.5.1 as required by WordPress.org Theme Review Guideline. They ask to to do that from plugin. So, you have options as below:
    1. You can simply upgrade to Pro version, where you will get this options and many more features. Read this http://catchthemes.com/theme-instructions/catch-box-pro/
    2. If you don’t want to upgrade to Pro version then you can copy the whole verification code and add it in the header box: For example: if you are using google site verification then you can just change the key in the following meta and add it in “Appearance => Theme Options => Webmaster Tools => Header and Footer Codes => Code to display on Header” box:
    <meta name="google-site-verification" content="Add your Key Here" />
    3. There is another options as well. Just install “Catch Web Tools” plugin and add in http://catchthemes.com/wp-plugins/catch-web-tools/

    in reply to: Changes to Theme Options appear only to logged in users #50760
    Sakin
    Keymaster

    @jurekjerem: Once you disable it, no one will see it. I see that you have WP Super Cache plugin installed. So, it’s showing like that. Go to your WP Super Cache plugin settings and clear the cache and it will show same for all.

    in reply to: Google authorship #50759
    Sakin
    Keymaster

    @MMchen: Thanks for your appreciation. If you like Catch Box theme, then pleas support it by providing review and rating at https://wordpress.org/support/view/theme-reviews/catch-box/

    in reply to: Padding beneath Homepage Featured Content Images #50752
    Sakin
    Keymaster

    @Jobonis: Yes that is possible but I cannot view your site to check in the issue. It’s not opening.

    in reply to: Remove page's Title HyperLink – Kathmandu theme #50751
    Sakin
    Keymaster

    @dawfx: For this, you need to build child theme and edit content-page.php file. So, first look at this article http://catchthemes.com/blog/create-child-theme-wordpress/ and build child theme. Then copy only content-page.php file in your child theme and find the following code
    <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'catchkathmandu' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>

    Then replace it with the following:
    <h1 class="entry-title"><?php the_title(); ?></h1>

    in reply to: Blank Featured Slider # #50749
    Sakin
    Keymaster

    @veetam: Are you using Latest version of WordPress and Theme. Can you let me know about it. Looking at the Screenshot, it looks like you are using older version of WordPress and Theme.

    in reply to: Blank Featured Slider # #50726
    Sakin
    Keymaster

    @veetam: After you choose the slider type. You need to add in the slider details.
    For Example: if you choose Featured Image Slider from “Appearance => Customize => Featured Slider Options => Featured Slider Type” then you need to Click on “Select Image” and upload the images for your slider. If you choose Featured Page Slider, then you need to select pages. But when you choose Featured Page slider, make sure you have added in Featured Image in those pages. Same with Featured Post Slider and Category Slider.

    The original image that come with the slider is Featured Demo Slider. This is just for demo purposes. After selecting the featured type and adding in the details, send me your site URL and then I will check in.

    in reply to: Remove borders from images #50725
    Sakin
    Keymaster

    @reefadmin: You can add the following css to remove border from the images.

    .featured-image img, .entry-content img, .comment-content img, .widget img, img.header-image, .author-avatar img, img.wp-post-image {
        box-shadow: none;
    }
    in reply to: Password protect wp-admin #50706
    Sakin
    Keymaster

    @greg2015: I don’t see any issue in Header Image.

    in reply to: Password protect wp-admin #50702
    Sakin
    Keymaster

    No sure about it. Can you post in your site URL then I can check in.

    in reply to: Remove borders from images #50698
    Sakin
    Keymaster

    @reefadmin: You can change the color code in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:

    /* Footer Text Color */
    #site-generator { color: #999;}
    /* Footer Link Color */
    #site-generator a { color: #ddd; }
    /* Footer Link Hover Color */
    #site-generator a:hover { color: #fff; }
    in reply to: External URL in slider ? #50697
    Sakin
    Keymaster

    @Cyril: For that you need to use “Featured Image Slider” instead of Page or Post Slider. Just go to “Appearance => Theme Options => Featured Slider => Slider Options” and then select “Featured Image Slider” and Save Change. This will give you your own image slider where you can upload image, add title, content and link as per your need. You might want to check this screencast http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-slider/

    in reply to: portfolio #50696
    Sakin
    Keymaster

    @luismarioochoa: This is more of plugin incompatibility. So, can you ask in plugin support forum. I don’t know about this plugin.

    in reply to: Password protect wp-admin #50694
    Sakin
    Keymaster

    @greg2015: Sorry I am not sure about .htaccess and server configuration. You need to ask to your server.

    in reply to: mobile friendly feature #50693
    Sakin
    Keymaster

    @ssl2: Sorry you are not supposed to add all the css in “Appearance => Theme Options => Custom CSS” box. You just need to add the css which you want to change it. That is why it is having issue. Please remove all the css and just add which you want to change it.

    in reply to: Change width of catch box pro theme vs change to Evolution #50654
    Sakin
    Keymaster

    @Keith: thanks for your appreciation. Cheers 🙂

    in reply to: Header Featured Image #50653
    Sakin
    Keymaster

    @Kim: that is logo not header image. You can add the following css:

    @media screen and (min-width: 961px) {
    #logo-wrap {
        display: inline-block;
        text-align: center;
        width: 70%;
    }
    #site-logo {
        float: none;
    }
    #sidebar-header-right {
        width: 30%;
    }
    }
    in reply to: Change width of catch box pro theme vs change to Evolution #50650
    Sakin
    Keymaster

    @Keith: I found the issue in your custom css. You have added comment like below:
    /* Stretches Entire Site - From CatchBox Pro Theme
    But it should be as below:
    /* Stretches Entire Site - From CatchBox Pro Theme */

    So, just delete your current custom css and add the following css instead:

    /* Hide Author */
    .entry-meta .by-author { display: none; }
    
    /* Removes Gray Box Around Captioned Images */
    .wp-caption { background: none transparent; max-width: 100%; padding: 0; }
    
    /* Stretches Entire Site - From CatchBox Pro Theme */
    @media screen and (min-width: 1025px) {
    	.site {
    	    max-width: 94%;
    	    width: 100%;
    	}
    	#primary {
    	    width: 72%;
    	}	
    	#secondary {
    	    width: 26%;
    	}	
    }
    @media screen and (min-width: 1360px) {
    	.site {
    	    max-width: 1300px;
    	    width: 100%;
    	}
    }
    in reply to: post author and date #50648
    Sakin
    Keymaster

    @Will: You have already remove the shade of gradient and make is solid color by changing menu background color.

Viewing 20 posts - 5,201 through 5,220 (of 14,497 total)