Forum Replies Created

Viewing 20 posts - 1,701 through 1,720 (of 14,495 total)
  • Author
    Posts
  • in reply to: Header Right Siderbar #79296
    Sakin
    Keymaster

    @Nadae: Can you go to “Appearance => Theme Options => Header Options” and make sure you have un-checked “Disable Header Right Sidebar?” and save changes. After then, you need to go to “Appearance => Widgets” and then add widgets to your Header Right sidebar.

    in reply to: Updated catch pro 4.3 #79295
    Sakin
    Keymaster
    in reply to: Sidebar missing in a POST #79293
    Sakin
    Keymaster

    @orim: Looks like you have edit core theme files and can you check your single.php file with this file https://themes.svn.wordpress.org/catch-base/2.5/single.php. You must have deleted code there.

    in reply to: Disable comments? #79292
    Sakin
    Keymaster

    @msdossfl: Can you check your settings at “Appearance => Theme Options => Comment Options” and then make sure you have selected “Use WordPress Settings”. If this is fine then you need to go to “Settings => Discussions” and make sure you have selected “Allow people to post comments on new articles”. This will create comment for new post only. But for your old posts, you need to edit those posts. See this screenshot https://www.pinterest.com/pin/548594798333128024/

    in reply to: Problem with CatchBox Pro 4.3 #79291
    Sakin
    Keymaster

    @schliggi: Thant’s nice 🙂

    in reply to: change Pictures in the Slider #79290
    Sakin
    Keymaster

    @Stuli: If you just want image slider without link then you need to select slider type as “Featured Image Slider” where you have option to upload image, title, content and link all option. But Image Slider type is only there in pro version. For more about pro version additional features, you can refer to theme instructions page at http://catchthemes.com/theme-instructions/adventurous-pro/

    in reply to: Function.php file shows an error #79289
    Sakin
    Keymaster

    @cterreri: Please don’t edit any code theme files inside ‘catch-mustang’ theme directory. As all these files will be reverted back to original when you update the theme. So, best option if to build child theme and then only edit those files in child theme. For child them, refer to http://catchthemes.com/blog/create-child-theme-wordpress/

    in reply to: Table layout look right in browsers #79288
    Sakin
    Keymaster

    @mbfadmin: Your table code is not responsive. So, you can either use responsive columns plugin or responsive table plugin and then add the details.

    in reply to: Content suddenly aligning center #79287
    Sakin
    Keymaster

    @chatfield-court: It’s because of adsense code. You have started <center> code and instead of closing it you have again open <center> code. So, either remove that center code in the following code:

    <center><div id="adsense"> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
    <!-- chatfieldcourt.com_300x250top of post -->
    <ins class="adsbygoogle"
         style="display:inline-block;width:300px;height:250px"
         data-ad-client="ca-pub-3962782087565969"
         data-ad-slot="3724409336"></ins>
    <script>
    (adsbygoogle = window.adsbygoogle || []).push({});
    </script>
     </div><center>

    Or make that closing like below:

    <center><div id="adsense"> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
    <!-- chatfieldcourt.com_300x250top of post -->
    <ins class="adsbygoogle"
         style="display:inline-block;width:300px;height:250px"
         data-ad-client="ca-pub-3962782087565969"
         data-ad-slot="3724409336"></ins>
    <script>
    (adsbygoogle = window.adsbygoogle || []).push({});
    </script>
     </div></center>
    in reply to: Continue reading adds extra characters #79286
    Sakin
    Keymaster

    @ShayC: Great. Thanks for sharing your site.

    in reply to: Change Font color in Header widget #79285
    Sakin
    Keymaster

    @Cathy: You can add the following css:

    #branding #s {
        background: none transparent;
        box-shadow: none;
    }
    in reply to: Disable comments? #79212
    Sakin
    Keymaster

    @msdossfl: Please post in your site URL and let me know it. Then I can check in. Is comment box showing or not?

    in reply to: header image size #79207
    Sakin
    Keymaster

    @priya: Please post in your site URL and then I can check in.

    in reply to: Featured Images of Posts not Adapting to Size #79206
    Sakin
    Keymaster

    @defuentes: Thanks for your appreciation 🙂

    in reply to: Featured Images of Posts not Adapting to Size #79187
    Sakin
    Keymaster

    @defuentes: But if you still want to use that old table in that post, then you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .postid-296 .site-main td {
        display: block;
        float: left;
        width: 33.33%;
    }
    in reply to: Featured Images of Posts not Adapting to Size #79186
    Sakin
    Keymaster

    @defuentes: I see that you have added in series of image in table which is not good method. I see that you have Jetpack plugin installed. So, you can use “Tiled Gallery” module. Just go to “Jetpack” settings and then activate “Tiled Gallery” and insert those images as gallery.

    See this https://jetpack.me/support/tiled-galleries/ and example at https://en.blog.wordpress.com/2012/10/04/tiled-image-galleries/

    in reply to: Polylang: translating Featured Content title and description #79184
    Sakin
    Keymaster

    @Pius: Nice one. I love the images in your site. Thanks for your appreciation and I am so happy that it’s been fixed.

    If you like my support and Full Frame theme, then please support by providing your valuable review at https://wordpress.org/support/view/theme-reviews/full-frame?rate=5#postform

    Thanks 🙂

    in reply to: Header Right Siderbar #79180
    Sakin
    Keymaster

    @Nadae: Sorry I don’t get it what you mean. Can you explain in reference with your site URL and also is possible add in screenshot url explaining the issue.

    in reply to: widget area problem #79179
    Sakin
    Keymaster

    @stecu: You shouldn’t edit any core theme files directly. You shouldn’t add/edit any files inside catch-resposnive theme directory. As all these files will be reverted back to original when you update or upgrade the theme.

    So, if you want to add extra sidebar and add it below featured content. Then you need to build child theme. You can 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

    /**
     * Register extra sidebars
     *
     * @since Catch Responsive
     */
    function catchresponsive_child_widgets_init() {
    
    	//under featured content sidebar
    	register_sidebar( array(
    		'name' => __( 'Under Featured Content Sidebar', 'catch-responsive' ),
    		'id' => 'sidebar-under-featured-content',
    		'before_widget' => '<section id="%1$s" class="widget %2$s"><div class="widget-wrap">',
    		'after_widget'  => '</div><!-- .widget-wrap --></section><!-- .widget -->',
    		'before_title'  => '<h4 class="widget-title">',
    		'after_title'   => '</h4>',
    		'description'	=> __( 'This is the extra sidebar under Featured Content', 'catchresponsive' ),
    	) );	
    
    }
    add_action( 'widgets_init', 'catchresponsive_child_widgets_init' );
    
    /**
     * Add extra sidebar below Featurd Content 
     */
    add_action( 'catchresponsive_before_content', 'catchbox_under_featured_content_sidebar', 50 ); 
    function catchbox_under_featured_content_sidebar() {
    	if ( is_active_sidebar( 'sidebar-under-featured-content' ) ) : 
    		?>
    		<div id="sidebar-under-featured-content" class="widget-area">
    			<div class="wrapper">
    				<?php dynamic_sidebar( 'sidebar-under-featured-content' ); ?>
    			</div>
    		</div> <!-- #sidebar-under-featured-content -->
    	<?php endif;
    }
    in reply to: change Pictures in the Slider #79177
    Sakin
    Keymaster

    @Stuli: In Adventurous Free theme, you can change that demo image slider with “Featured Post Slider” or “Featured Category Slider”. You can follow instructions at http://catchthemes.com/theme-instructions/adventurous/. Also you can check screencast at http://catchthemes.com/blog/videos-blog/video-series-adding-featured-post-slider/

Viewing 20 posts - 1,701 through 1,720 (of 14,495 total)