Forum Replies Created

Viewing 20 posts - 2,421 through 2,440 (of 4,908 total)
  • Author
    Posts
  • in reply to: button missing in featured content slider in iphone browser #101890
    Mahesh
    Participant

    @compyfox: In small devices, the Read More button is left as a link only. And Since you content in slider is more, the read more button is push down and not visible. Please decrease the Excerpt Length in Dashboard=> Appearance=> Customize=> Theme Options=> Excerpt / More Tag Settings.
    You can adjust font-size as well.

    Regards,
    Mahesh

    in reply to: update problem #101889
    Mahesh
    Participant

    @ikh1: You cannot update Pro themes by just directly Update Now button like Free themes. You’ll need to first download the theme from https://catchthemes.com/my-account/ page. Then use Catch Updater plugin or Catch Updater module of Catch Web Tools plugin.
    https://catchthemes.com/wp-plugins/catch-updater/
    https://wordpress.org/plugins/catch-web-tools/
    Please check the tutorial video in the link below:
    https://www.youtube.com/watch?v=W95SuabDZi8

    Regards,
    Mahesh

    in reply to: Translation fr-BE #101888
    Mahesh
    Participant

    @philzeweb: You can send the fr_BE.po file to our email, info [at] catchthemes [dot] com. And we’ll contact you for further details. We really appreciate it.
    Yes, you can test on localhost, put the fr_BE.po and fr_BE.mo files into themes languages folder and go to settings and change the language to Français de Belgique and you are good to go.
    Hope this helps.

    Regards,
    Mahesh

    in reply to: Blog-Page 404 #101887
    Mahesh
    Participant

    @himynameisanton: Go to Dashboard=> Appearance=> Customize=> Static Front Page and select Your latest posts option in Front page displays and see if selecting this, show blog list on the home page. Then put it back to as it is and see if it works.
    Have you modified anything in the theme?
    Admin access is necessary, sometimes the plugin may cause the issue, so you need to check by disabling the plugins too.
    Hope you understand.

    Regards,
    Mahesh

    in reply to: Featured Content Selections #101838
    Mahesh
    Participant

    @canthe: Thank you for using Clean Magazine Pro theme. In Featured Post #, you’ll need to put the Post Ids.
    Please refer to Featured Post Content in the theme instruction below:
    https://catchthemes.com/theme-instructions/clean-magazine-pro/#featured-content
    If you can’t find out the Post id, please use Catch Ids plugin.
    https://wordpress.org/plugins/catch-ids/
    Hope this helps.

    Regards,
    Mahesh

    in reply to: Move Logo left from Page Title #101836
    Mahesh
    Participant

    @chrsbat: Add the following CSS:

    @media screen and (min-width: 1281px) {
        #site-header {
            padding-top: 80px;
        }
    }

    Regards,
    Mahesh

    in reply to: Text button in Homepage #101826
    Mahesh
    Participant

    @ginkho: I mean your website. For example: https://catchthemes.com. To check how’s it displaying on your site right now.

    Regards,
    Mahesh

    in reply to: widgets sizes #101825
    Mahesh
    Participant

    @venus: You are using SM YouTube Subscribe, seems like its a plugin issue. Please contact the plugin contact support.
    In Catch Box Free version, if you need to add something to the header section, you’ll need to create a child theme and customize if further as necessary. You can find more detail on creating child theme HERE.
    In Catch Box Pro version, you’ll have Header Widget option, with which you can place ad code with the help of widgets. So I recommend you to upgrade to Pro version.

    Regards,
    Mahesh

    in reply to: HELP! Slider & Featured images / white space /uneven #101824
    Mahesh
    Participant

    @mindfulsami:
    1. The problem you are having is because of inconsistency of the image size you are using. The recommend image size for Slider is Width: 1680px Height: 720px. Use image with similar dimensions and the problem will be resolved.
    2. Featured Content seems to be fine.
    3. Use image with same dimensions, Featured Grid Content uses image with 4:3 aspect ratio. Small grid image is Width: 420px Height: 283px and large grid image is Width: 840px Height: 565px. These sized image are auto generated by the theme.
    Hope you understand. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Move Logo left from Page Title #101823
    Mahesh
    Participant

    @chrsbat: For moving logo to the left, go to Dashboard=> Appearance=> Customize=> Site Identity and make sure Check to move Site Title and Tagline before logo option is Unchecked.
    For hiding search box, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .sidebar-header-right {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: relocate search #101822
    Mahesh
    Participant

    @brandonsm: I’m glad to got it. Have a nice day!

    Regards,
    Mahesh

    Mahesh
    Participant

    @matthias: Can you please clarify more, I don’t quite get it what you mean by blog language.

    Regards,
    Mahesh

    Mahesh
    Participant

    @matthias: I checked your site. And it seem a bit strange. All your network sites are working fine except https://www.aquariumcomputer.com/de/ one. Customizer is not working on this one. But I checked the first one https://www.aquariumcomputer.com/start/ and the customizer worked on this. The site is completely in German and customizer is still working.
    The problem might be because of incomplete translation. But since it worked on one of your sites. Its a bit ambiguous.
    Have you tried changing themes (like core WordPress themes)? Did it work?
    Let me know further.

    Regards,
    Mahesh

    in reply to: Feature-Slider on touch devices #101759
    Mahesh
    Participant

    @spot0608: For this, you’ll need to create a child theme and enqueue some scripts. You can find more details on creating child theme HERE.
    1. Download touchwipe library from the link below (I used the minified version)
    http://www.netcu.de/jquery-touchwipe-iphone-ipad-library
    2. Create a file and name it custom-swipe-script.js and add the following code into it.

    jQuery(document).ready(function() {
    	jQuery(".cycle-slideshow").touchwipe({
    	      wipeLeft: function() {
    	            jQuery(".cycle-slideshow").cycle("next");
    	      },
    	      wipeRight: function() {
    	            jQuery(".cycle-slideshow").cycle("prev");
    	      }
    	});
    });

    3. Then in your child theme’s functions.php add the following codes:

    add_action( 'wp_enqueue_scripts', 'parallax_frame_child_swipe_scripts' );
    function parallax_frame_child_swipe_scripts() {
        wp_enqueue_script( 'parallax-frame-touch-swipe', get_stylesheet_directory_uri() . '/jquery.touchwipe.min.js' );
        wp_enqueue_script( 'parallax-frame-custom-script', get_stylesheet_directory_uri() . '/custom-swipe-script.js' );
    }

    I have tested it on our server, and worked fine. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Social Icons Header Right #101758
    Mahesh
    Participant

    @jeremie-marty: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Removing Header Padding? #101757
    Mahesh
    Participant

    @defur: I checked your site and see not gap at the top.
    http://bit.ly/2ejSykk
    For centering content, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .wrapper {
        margin: 0 auto;
    }

    Regards,
    Mahesh

    in reply to: how to remove default content on home page? #101755
    Mahesh
    Participant

    @vijaya-chari: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Social Icons Header Right #101753
    Mahesh
    Participant

    @jeremie-marty: Seems like, your Header Right Sidebar is disabled. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Header Right Sidebar Options and make sure that Check to disable Header Right Sidebar option in Unchecked.
    Hope this helps.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Page navigation not working #101752
    Mahesh
    Participant

    @micha: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Full Frame Pro Appearance Customize not working after update #101751
    Mahesh
    Participant

    @matthias: We’ll contact you through email shortly.

    Regards,
    Mahesh

Viewing 20 posts - 2,421 through 2,440 (of 4,908 total)