Forum Replies Created

Viewing 20 posts - 3,521 through 3,540 (of 4,908 total)
  • Author
    Posts
  • in reply to: Adding "Terms and conditions"link on the footer #92996
    Mahesh
    Participant

    @monicavilas: Upgrading from Free to Pro won’t cause any data loss. All data and setting will be automatically transferred. If you are using child theme, your codes won’t go in vain either. It will work in Pro as it work in Free version.
    Let me know if any confusion.

    Regards,
    Mahesh

    in reply to: Site Title and Custom Promotion Header #92995
    Mahesh
    Participant

    @alwilleford: Adding Custom font can be done with Custom CSS. First you’ll need to upload Playlist Script font to your site. Upload it to the wp-content/uploads folder. Then go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    @font-face {
        font-family: 'Playlist Script';
        src: url('http://yoursite/wp-content/uploads/Playlist Script.otf');
    }
    /* Change site-title's font to Playlist Script */
    .site-title {
        font-family: 'Playlist Script';
    }

    Note: Please change the your src url in the above code to match your font file.

    Regards,
    Mahesh

    in reply to: size pictures Featured Page Grid Content #92976
    Mahesh
    Participant

    @calmo16:
    1. For this you’ll need to create child theme. You can find more details on creating child theme HERE. Then add the code in the link below, in your child theme’s functions.php
    http://goo.gl/4atlZN
    2. This is only possible in Pro version. I recommend you to upgrade to Pro.
    3. It is recommended size, you can use any image with aspect ratio 4:3

    Regards,
    Mahesh

    in reply to: Hyperlink color change #92975
    Mahesh
    Participant

    @scubafreak:
    Hi Dan,

    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    a, 
    .widget-area .widget a {
        text-decoration: underline;
        color: #21759b;
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Upgrade to pro old sidebar #92974
    Mahesh
    Participant

    @bobbim: Are you still having problem. Let me know so that I can help you.

    Regards,
    Mahesh

    in reply to: audio #92973
    Mahesh
    Participant

    @hollyehrocketmail-com: Sorry, by changing theme to default I mean activate WordPress’s core theme Twenty Fourteen and check if the problem persist.
    I did checked you site and saw the problem in Mozilla.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Upgrade to pro old sidebar #92955
    Mahesh
    Participant

    @bobbim: Thank you for using Catch Responsive Pro. You have posted the issue in Catch Adaptive Pro’s thread.
    I checked your site, do you mean the Gallery that is at the bottom? This widget is put in the Footer Widget Area and is displaying fine. Let me know further.

    Regards,
    Mahesh

    in reply to: Site Title and Custom Promotion Header #92954
    Mahesh
    Participant

    @alwilleford: What font do you want to use? Google fonts? If so, this can be done through Custom CSS. Let me know the font you want to use and I’ll provide you the CSS. Please post in your site url.
    Promotion area is for main Headlines or something, image can’t be added to this. If you do want image it this anyway, I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: audio #92953
    Mahesh
    Participant

    @hollyehrocketmail-com: Please post in your site url. May be the loading problem is because of file. Try changing the theme to default and check, if the issue persists, this is not a theme issue. Let me know further.

    Regards,
    Mahesh

    in reply to: How to change first page thubnail's size #92952
    Mahesh
    Participant

    @leonardo-martinez: Changing thumbnail will change size for all post’s thumbnail. For changing thumbnail, you’ll need to create a child theme first. You can find more details on creating child them HERE. Then in your child theme’s functions.php add the following codes:

    add_action( 'init', 'catchresponsive_child_custom_thumbnail_size' );
    function catchresponsive_child_custom_thumbnail_size() {
    	remove_image_size( 'catchresponsive-square', 200, 200, true ); // used in Archive Left/Right Ratio 1:1
    	add_image_size( 'catchresponsive-square', width, height, true ); // used in Archive Left/Right Ratio 16:9
    }

    Note: In the above code, Please change the X and Y to your desired Width and Height in px for 16:9 appect ratio
    Then after that use Regenerate Thumbnails to regenerate the thumbnails for existing images.
    https://wordpress.org/plugins/regenerate-thumbnails/
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Mobile site now has border #92945
    Mahesh
    Participant

    @fmck718: I checked your site and seems that the border is no gone. Please check the image in the link below.
    http://goo.gl/n82nwd
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Menu issue after upgrading to 4.4.9 #92944
    Mahesh
    Participant

    @nadupadu: Thank you for your appreciation. If you like my support and Catch Box theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-box?rate=5#postform
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Fixed topics in the featured content. #92943
    Mahesh
    Participant

    @opublicerad-se: By topic, I guess you mean Category, selecting Featured Category Content, will display posts of selected category latest posts first. You can either use Featured Image Content or Featured Post Content and select desired post.
    Let me know further.

    Regards,
    Mahesh

    in reply to: search icon #92860
    Mahesh
    Participant

    @calmo16: Your site says “Deze Website Is Momenteel Niet Actief!”.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Menu issue after upgrading to 4.4.9 #92859
    Mahesh
    Participant

    @nadupadu: Seems like you are using RTL. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #access ul ul, 
    #branding #access-secondary ul ul {
        right: unset;
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Hover & Breadcrumb colors, a bug, etc #92831
    Mahesh
    Participant

    @hmiller: There is no color options for those two in the customizer, if you want to change the default color, you can use Custom CSS. If you want, we can help you further.

    I tested the theme with Jetpack Extra Sidebar option, and everything is working fine. Featured Content and Featured Slider are displaying fine. If you have other plugins, try disabling it and check if it resolves the issue.

    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    /* Remove lines between links on the sidebar */
    .widget ul li {
        border-bottom: none;
    }
    /* Change background Color of the sidebar */
    #secondary {
        background-color: #bbb;
    }

    Let me know if any problem. Please post in your site url.

    Regards,
    Mahesh

    in reply to: Menu issue after upgrading to 4.4.9 #92830
    Mahesh
    Participant

    @nadupadu: I checked for the same in our server but didn’t find any issue. Please post in your site url. Are you using any plugin, try disabling it and check if it resolves the issue. Please check the demo link for the theme and check if the issue persists in demo.
    https://catchthemes.com/demo/catchbox/
    Let me know further.

    Regards,
    Mahesh

    in reply to: Adding "Terms and conditions"link on the footer #92829
    Mahesh
    Participant

    @monicavilas: In Pro version, there is built-in option for editing footer content. I recommend you to Pro version. Or it seems you are already using a child theme, you can add the function to override the default footer content.

    function catchbase_footer_content() {
    	//catchbase_flush_transients();
    	if ( ( !$catchbase_footer_content = get_transient( 'catchbase_footer_content' ) ) ) {
    		echo '<!-- refreshing cache -->';
    
    		$catchbase_content = catchbase_get_content();
    
    		$catchbase_footer_content =  '
        	<div id="site-generator" class="two">
        		<div class="wrapper">
        			<div id="footer-left-content" class="copyright">' . $catchbase_content['left'] . '</div>
    
        			<div id="footer-right-content" class="powered">' . $catchbase_content['right'] . '</div>
    			</div><!-- .wrapper -->
    		</div><!-- #site-generator -->';
    
        	set_transient( 'catchbase_footer_content', $catchbase_footer_content, 86940 );
        }
    
        echo $catchbase_footer_content;
    }

    Replace variable $catchbase_content['left'] in the above code with your desired content. And remove the default action hook and add the new function to the same hook using remove_action and add_action.
    Let me know if any problem.
    Note: You can find this code in catchbase-core.php line 1410

    Regards,
    Mahesh

    in reply to: search icon #92828
    Mahesh
    Participant

    @calmo16: Do you mean to get full posts in search results? By default, the full post is displayed in search result.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Featured Slider #92803
    Mahesh
    Participant

    @allindesign: Have you added featured image to your pages as in this video?
    https://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/
    If not please add, and the image will appear.
    If you do have featured image add in the page already and its not displaying, try disabling plugins one by one and check if it resolves the issue.

    Have you selected same page in all three slides in the Featured Slider?
    Let me know further.

    Regards,
    Mahesh

Viewing 20 posts - 3,521 through 3,540 (of 4,908 total)