Forum Replies Created

Viewing 20 posts - 3,961 through 3,980 (of 4,908 total)
  • Author
    Posts
  • in reply to: Jomsom Pro menu ubication #88909
    Mahesh
    Participant

    @daviddomi: You’ll need to create a child theme for this. You can find more details on creating child theme HERE. Then in your functions.php add the following code:

    function jomsom_featured_image_display() {
        $options = jomsom_get_theme_options();
    
        if ( "before-header" == $options['featured_header_image_position']  ) {
            add_action( 'jomsom_header', 'jomsom_featured_overall_image', 15 );
        }
        elseif ( "after-slider" == $options['featured_header_image_position'] ) {
            add_action( 'jomsom_before_content', 'jomsom_featured_overall_image', 20 );
        }
        elseif ( "after-header" == $options['featured_header_image_position'] ) {
            add_action( 'jomsom_after_header', 'jomsom_featured_overall_image', 40 );
        }
    }

    Note: Please make sure that Before Header option is selected in Featured Header Image Position.

    Regards,
    Mahesh

    in reply to: have no date on some blog posts #88907
    Mahesh
    Participant

    @hollyehrocketmail-com: I checked your site and did not see any CSS for removing the date. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS.

    .entry-meta .posted-on {
        display: none;
    }

    Note: This will hide date from all post in your entire site.

    Regards,
    Mahesh

    in reply to: Slider not working (jQuery Conflict?) #88906
    Mahesh
    Participant

    @bsmitty358gmail-com: How have you enqueued the custom script Budget Badge in your theme? Since you are already using a child theme, you can enqueue the script as follows, add the following code in your child theme’s functions.php

    function catchflames_child_enqueue_custom_script(){
    	wp_enqueue_script( 'budgetbadge', 'http://panthernet.net/wp-content/uploads/2015/11/budgetBadge.js', false );
    }
    add_action( 'wp_enqueue_scripts', 'catchflames_child_enqueue_custom_script' );

    Note: Please change the path to the script file to your site’s relative path.

    Regards,
    Mahesh

    in reply to: put site logo before site title #88904
    Mahesh
    Participant

    @mupa: Using the above given code and css, you can check the image in link below to see how it looks on mine.
    http://goo.gl/3eZ11e
    Can you please send me screenshot like above to see how is it displaying in yours.

    Regards,
    Mahesh

    in reply to: How to remove / change the Powered by text? #88872
    Mahesh
    Participant

    @minhbkx: I checked the site you’ve mentioned above. I don’t think that site is using infinite scroll. It is using simple pagination and page numbers are listed below the posts.
    If you don’t want the fixed footer to be displayed using jetpack infinite scroll, you can change the option in Dashboard=> Appearance=> Customize=> Theme Option=> Pagination Option and select Infinite Scroll (Click) instead of Infinite Scroll (Scroll).
    Or remove it using custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Option=> Custom CSS box and add the following CSS:

    #infinite-footer {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Featured widget content #88859
    Mahesh
    Participant

    @infocamponovo-it: I checked your site, the issue seems to be due to the wrapper div just outside the section displaying the widget. Seems to be a plugin issue.

    Regards,
    Mahesh

    in reply to: How to remove / change the Powered by text? #88855
    Mahesh
    Participant

    @minhbkx: Please check the images in the link below:
    1. http://goo.gl/7upw9z: Theme’s default footer text which can be changed with customizer’s Footer Editor Option.
    2. http://goo.gl/4STfE3: This sticky footer visible when you use jetpack’s infinite scroll, this cannot be changed from Footer Editor Option. To change this, you’ll need to contact Jetpack’s support.
    Hope you understand. Let me know if I am confused and this is not what you meant.

    Regards,
    Mahesh

    in reply to: put site logo before site title #88853
    Mahesh
    Participant

    @mupa: Please post in your site url.

    Regards,
    Mahesh

    in reply to: How to remove / change the Powered by text? #88850
    Mahesh
    Participant

    @minhbkx: Do you mean the footer text with white background? The footer content option in Customizer will only change the text with black background i.e. “Reading by insiders!”. The other one is from jetpack plugin, you are using jetpack’s infinite scroll and using it automatically puts the sticky footer in your site.
    I recommend you to contact the Jetpack’s support.

    Regards,
    Mahesh

    in reply to: Re: Background image #88841
    Mahesh
    Participant

    @sign-galaxy: You are using a background image which makes header background and content background different but is the same image. I don’t this this is possible using single image. You’ll need to assign a different background to header and different background to the content area.

    Regards,
    Mahesh

    in reply to: put site logo before site title #88839
    Mahesh
    Participant

    @mupa: Thank you for your appreciation. This is possible, but you’ll need to do some customization. For this, create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php, add the code from the link below:
    http://pastebin.com/T0E0dvSJ
    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #site-branding > a {
        display: inline-block;
        vertical-align: middle;
    }
    
    #site-header {
        display: inline-block;
        vertical-align: middle;
        width: 60%;
    }

    Regards,
    Mahesh

    in reply to: Catch Box #88797
    Mahesh
    Participant

    @rvtent: Sorry, there has been a huge confusion, you are using Catch Box free and you have posted the support for Catch Box Pro. The above solution is only for Catch Box Pro. For resolving the issue, you’ll need to either upgrade to Pro or hire a customizer.

    Regards,
    Mahesh

    Mahesh
    Participant

    @9punkt2: Thank you for using Chicago Pro. For the above you’ll need to use appropriate plugins from https://wordpress.org/plugins/. Or you’ll need to hire a customizer.

    Regards,
    Mahesh

    in reply to: Header Image Catch Adaptive Pro Child #88793
    Mahesh
    Participant

    @eabuel: Go to Dashboard=> Appearance=> Customize=> Header Image, I think you’ve chosen Excluding Homepage option in Enable Featured Header Image on . That is why the header image is not displaying in homepage but on other page. Change it to Entire Site and header image will be displayed in you whole site.

    Regards,
    Mahesh

    in reply to: Catch Box #88792
    Mahesh
    Participant

    @rvtent: On the last step, did you add a text widget to the Header Top Sidebar and put the other lines of code in that text widget’s content?
    Before I’ve given you code for 5 images and 5 line texts but if you just want 1 image and 2 line text, use the following codes instead.
    <img class="widget-img" src="link-to-image"><span class="widget-text">Line 1 Text</span><br /><span class="widget-text">Line 2 Text</span><br />

    Regards,
    Mahesh

    in reply to: Catch Box #88788
    Mahesh
    Participant

    @rvtent: Where have you put the above code I’ve provided you at the beginning? Didn’t it make any changes? How did you do it. Let me know and I’ll be help you further.

    Regards,
    Mahesh

    in reply to: Featured Content types, posts instead of pages? #88784
    Mahesh
    Participant

    @justanotherwordpressuser: That’s great, sometimes plugin does come handy. 🙂 Have a nice day!

    Regards,
    Mahesh

    in reply to: Problem with menu #88783
    Mahesh
    Participant

    @taquin21: Glad to know you were able to fix the issue. Have a nice day!

    Regards,
    Mahesh

    in reply to: Catch Box #88782
    Mahesh
    Participant

    @rvtent: The code I’ve given above will add the image and text as widget in the Top Header Sidebar. But if you want image for that you’ll need to create an image containing 5 images and text that you wanted and the put it in the header as logo same as you’ve put it now.

    Regards,
    Mahesh

    in reply to: Problem tanslating breadcrumbs (BUG!) #88781
    Mahesh
    Participant

    @raufaser: Thank you so much again for your help. We will make this translation available in our next update. Our team will contact you for further details. Have a nice day!!!

    Regards,
    Mahesh

Viewing 20 posts - 3,961 through 3,980 (of 4,908 total)