Forum Replies Created

Viewing 20 posts - 3,001 through 3,020 (of 4,908 total)
  • Author
    Posts
  • in reply to: Social icons in header-left #97527
    Mahesh
    Participant

    @cattext: This function is already built-in in Adventurous Pro. Header Right Sidebar widget area is what you need for this. I recommend you to upgrade to pro. Then put CT: Social Icons widget into the Header Right Sidebar widget area.
    If you want to have it in the child theme, and you are familiar with coding, I can help you further.

    Regards,
    Mahesh

    in reply to: Pictures/Photos not fitting in blog #97526
    Mahesh
    Participant

    @jodickie: I cannot see the image that you’ve mentioned above. Are you using any plugins? Try disabling it and check again, sometimes plugin may cause issues too. Let me know further.

    Regards,
    Mahesh

    in reply to: Keep navigation in the same category #97525
    Mahesh
    Participant

    @moskito7: Can you please clarify more? Do you mean the navigation on the blog list page?
    Let me know further.

    Regards,
    Mahesh

    in reply to: Update from 4.6.6 to 4.6.7 #97523
    Mahesh
    Participant

    @3punkt5: You can update the theme directly through Admin Dashboard using Catch Web Tools plugin’s Catch Updater module. You can find the video tutorial on how to update pro theme with catch updater in the link below:
    https://www.youtube.com/watch?v=W95SuabDZi8

    The update does not or should not effect the child theme.

    Regards,
    Mahesh

    in reply to: Posts in a page formatted right #97519
    Mahesh
    Participant

    @willo: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options and select Show Excerpt (Excerpt Image Left) and click Save & Publish.
    For other options like Excerpt Image Right / Excerpt Image Top I recommend you to upgrade to Pro.

    Regards,
    Mahesh

    in reply to: Featured Content is not abreviated #97518
    Mahesh
    Participant

    @c-baumbach: Seems like word excerpt doesn’t work on Japanese text. The excerpt depends on word counts. Read more text is displayed as soon as the content reaches the words length set in excerpt length in customizer.

    Regards,
    Mahesh

    in reply to: HTML tag in Slider excerpt text #97517
    Mahesh
    Participant

    @benjaminmw: For this, you’ll need to create a child theme. You can find more on creating child theme HERE. Then in your child theme’s functions.php add the code from the link below:
    http://bit.ly/2b36kAH
    Then go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #feature-slider .entry-content span.readmore {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: HELP URGENT! #97514
    Mahesh
    Participant

    @mauitheatre: For this, we need to check on your server. We’ll email you for details.
    For adding code snippet like this rather than using a child theme, I recommend you to use Catch Web Tools plugin’s Webmaster tools module and add the code to Header or Footer where appropriate.

    Regards,
    Mahesh

    Mahesh
    Participant

    @dawn: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Move site title & description #97512
    Mahesh
    Participant

    @paul-mac: Sorry, I changed the function name but forgot to change in the hook. And I’ve changed the hook for the header image too so only one image displays now. I have made the correction in the above code, please check.

    Regards,
    Mahesh

    in reply to: Remove title only on homepage #97455
    Mahesh
    Participant

    @moskito7: It would be easier if we could check the live site. Can you please send me the HTML of the page so that I can help you further.

    Regards,
    Mahesh

    in reply to: Move site title & description #97450
    Mahesh
    Participant

    @paul-mac:
    Hi Paul,

    For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php add the following codes:

    function catchkathmandu_child_move_title_below_slider_header_image() {
    	remove_action( 'catchkathmandu_before_main', 'catchkathmandu_slider_display', 10 );
    	add_action( 'catchkathmandu_before_hgroup_wrap', 'catchkathmandu_slider_display', 15 );
    
    	remove_action( 'catchkathmandu_before', 'catchkathmandu_featured_image_display', 10 );
    	add_action( 'catchkathmandu_before_hgroup_wrap', 'catchkathmandu_featured_overall_image', 20 );
    }
    add_action( 'init', 'catchkathmandu_child_move_title_below_slider_header_image' );

    Regards,
    Mahesh

    in reply to: Remove title only on homepage #97435
    Mahesh
    Participant

    @moskito7: Please try the following code:
    .home #primary .entry-header .entry-title,
    .home #primary .page-header .page-title {
    display: none;
    }

    Regards,
    Mahesh

    in reply to: HTML Template #97431
    Mahesh
    Participant

    @mmhgloba: For 2nd snippet, copy comments.php file to your child theme and add the code snippet after <?php comment_form(); ?> line 75. And I guess, for contact page, you are using some plugins, you’ll need to add the code after the form from the plugin.

    Regards,
    Mahesh

    in reply to: How to add author and date of post #97404
    Mahesh
    Participant

    @onnalomd: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and search for the following CSS codes and remove it.

    #content .entry-header {
        display: none;
    }

    This will display post date and author under blog post title.
    And for adding share button, you’ll need to use plugin. Please find an appropriate plugin in https://wordpress.org/plugins/

    Regards,
    Mahesh

    in reply to: Mobile Menu #97401
    Mahesh
    Participant

    @mauitheatre:
    Hi Dennis,

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

    #responsive-menu-button {
        color: #ff0000;
    }
    /* For hover color */
     #responsive-menu-button:hover {
        color: #00ff00;
    }

    Note: Please change the color to your desired hex vaule.

    Regards,
    Mahesh

    in reply to: Promotion Headline link #97400
    Mahesh
    Participant

    @mauitheatre: It should not have happened. Changing CSS doesn’t have to do anything with it. And if you haven’t modified codes for promotional headline, you are good to go. I check the same on our server, and it is working fine. I just checked yours and now its working fine too.
    Let me know further.

    Regards,
    Mahesh

    in reply to: HTML Template #97399
    Mahesh
    Participant

    @mmhgloba: Sorry but WordPress doesn’t work that way. It doesn’t have separate html template as the actual html. For first snippet, you can add it to header.php file before line 30 which will be before </head> tag or go to Dashboard=> Appearance=> Customize=> Webmasters Tools=> Header Footer Codes and add the code snippet in Code to display on header.
    And for the other snippet, which goes after footer, I guess you’ll need to put it in comments.php. The comment form displayed with this file.
    You’ll need to create child theme for this. You can find more details on creating child theme HERE.
    If you are not familiar with coding/programming, I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Removing the "Load More" bar on the Featured Content Grid #97398
    Mahesh
    Participant

    @phillycontemporary: It should have worked fine. I checked in our server and is working fine. What I actually did was removed the code style="display: none;" from line 502 in fabulous_fluid_grid_page_content function by overriding it with child theme.
    Yes you can send me the credentials in mahesh [at] catchthemes [dot] com. And please post in your site url.

    Regards,
    Mahesh

    in reply to: Remove title only on homepage #97395
    Mahesh
    Participant

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

    .home #content .entry-title {
        display: none;
    }

    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

Viewing 20 posts - 3,001 through 3,020 (of 4,908 total)