Forum Replies Created

Viewing 20 posts - 161 through 180 (of 2,016 total)
  • Author
    Posts
  • in reply to: IDs #127345
    Pratik
    Participant

    Hi Frank,

    Add following code in your child theme’s functions.php file:

    
    function catchflames_child_remove_multi_id() {
    	remove_filter( 'manage_posts_columns', 'catchflames_post_id_column' );
    	remove_filter( 'manage_pages_columns', 'catchflames_post_id_column' );
    
    	remove_action( 'manage_posts_custom_column', 'catchflames_posts_id_column', 10, 2 );
    	remove_action( 'manage_pages_custom_column', 'catchflames_posts_id_column', 10, 2 );
    
    	remove_action( 'admin_head-edit.php', 'catchflames_posts_id_column_css' );
    }
    add_action( 'admin_init', 'catchflames_child_remove_multi_id' );
    

    Let me know how it goes.

    Regards,
    Pratik

    in reply to: Logo in the same line of menue #127305
    Pratik
    Participant

    Hi @malni,

    Can you post in your site url too?

    Regards,
    Pratik

    in reply to: Default child theme #127304
    Pratik
    Participant

    Hi Frank,

    Custom css will work. Let me know what exact modification you want to do.

    Regards,
    Pratik

    in reply to: IDs #127302
    Pratik
    Participant

    Hi Frank,
    One Id is from theme and other one is from Catch IDs. If you want to remove them, then you need to do it via child theme. If you are comfortable with making modifications via child theme, let me know and I will provide you further codes.

    Regards,
    Pratik

    in reply to: Only one row of my posts displaying in the front page #126469
    Pratik
    Participant

    @vfxphotog: Did you activate the child theme?

    in reply to: Only one row of my posts displaying in the front page #126401
    Pratik
    Participant

    Hi @vfxphotog,

    That option is not available. If you want to change the number of posts there, then you need to do it via child theme. First, create a child theme. Details for it is here: https://catchthemes.com/blog/create-child-theme-wordpress/

    Then, copy verity-pro/template-parts/recent-posts/front-recent-posts.php and paste it in child theme like verity-child/template-parts/recent-posts/front-recent-posts.php. Finally change line 74 in that file 'posts_per_page' => 4, to any number you want.

    in reply to: Change only gallery page's width to full width #126398
    Pratik
    Participant

    Hi @vfxphotog,

    Archive pages for Portfolio and other post types are generated automatically. You can use portfolio shortcodes and select portfolio via tags or categories. Check https://catchthemes.com/wp-plugins/essential-content-types/

    in reply to: Change only gallery page's width to full width #126392
    Pratik
    Participant

    Hi @vfxphotog:

    You can do it via page templates. Just goto the edit page of that certain page and select Full Width Template for that page.

    Check Screenshot: http://nimb.ws/uvKSBM

    Let me know how it goes.

    Regards,
    Pratik

    in reply to: Only one row of my posts displaying in the front page #126390
    Pratik
    Participant

    Hi @vfxphotog,

    It looks like you have specified Static Home Page but have not specified a posts page. Please add a page to display as blogs in Dashboard- Settings- Reading- Your homepage displays and select a posts page there.

    Check http://nimb.ws/WKPqNp for more info.

    Regards,
    Pratik

    in reply to: Update package not available? #126389
    Pratik
    Participant

    @IONadmin: I am glad you worked it out. Reason for the Pro theme’s updating difficulty is because we have to hide pro theme inside a paywall. For free themes, we can just push it to everyone, but for Pro themes, we need to provide the new versions to subscribed users only. Hope you understand.

    Regards,
    Pratik

    in reply to: Only one row of my posts displaying in the front page #126309
    Pratik
    Participant

    @vfxphotog: Please post in your site url.

    in reply to: Update package not available? #126308
    Pratik
    Participant

    @IONadmin,
    Upgrading pro theme is a bit different process. Please see video https://youtu.be/gVvrbKJNfkE
    If you have further trouble, please let me know.

    Regards,
    Pratik

    in reply to: Change only gallery page's width to full width #126307
    Pratik
    Participant

    @vfxphotog: Can you please post in your site url and link to the page you want to change the width in?

    Regards,
    Pratik

    in reply to: CTA button, featured image and banner questions #126070
    Pratik
    Participant

    Hi @catwingz,

    It seems you do not need a child theme. Just do following:
    1. Add a text widget in Promotion Headline Right Widget Area

    2. Add following code in that Text Widget in ‘Text’ tab:

    
    <a class="promotion-button mobile" href="tel:123456789">123456789</a>
    <a class="promotion-button desktop" href="http://distresseddebt1.com/">123456789</a>
    

    Here, you can make 123456789 to your number in tel:123456789. The 123456789 between and is text, whatever you write here, will be displayed as text. The desktop link http://distresseddebt1.com/ can be changed to anything you like as well.

    2. Add following code in Appearance- Customize- Additional CSS box:

    
    @media only screen and (max-width:768px) {
        #promotion-message .promotion-button.desktop{
            display: none;
        }
    }
    
    @media only screen and (min-width:768px) {
        #promotion-message .promotion-button.mobile{
            display: none;
        }
    }
    

    This should work. Let me know if you have trouble.

    Regards,
    Pratik

    in reply to: CTA button, featured image and banner questions #125957
    Pratik
    Participant

    @catwingz:

    1. Ok got it. Add in following code:

    
    @media screen and (min-width: 1280px){
       #header-highlights-content #large-featured-image img {
          width: 1280px;
       }
    }
    

    2. There is some error when adding CSS. This has been added:

    
    .sidebar-header-right p {
        font-family: 'Oswald', sans-serif;
    }
    

    You need to add 'Oswald', sans-serif; instead of the given code.

    4. If you want different for mobile and different for desktop, then you will need to go via different solution. Add two buttons and show one on desktop and one on mobile. You will need to do quite a bit of modification via child theme. If you are comfortable with using child theme, please let me know and maybe I can help you further.

    Regards,
    Pratik

    in reply to: Header image slider? #125955
    Pratik
    Participant

    @mistyfog: Thats great ? If you liked my support, please leave a review at https://wordpress.org/support/theme/adventurous/reviews/#new-post. A simple one line review can help a lot.

    Regards,
    Pratik

    in reply to: How to add space between header image and slider #125952
    Pratik
    Participant

    @james: Thats great 🙂 If you liked my support, please leave a review at https://wordpress.org/support/theme/adventurous/reviews/#new-post. A simple one line review can help a lot.

    Regards,
    Pratik

    in reply to: Header image slider? #125909
    Pratik
    Participant

    @mistyfog: Please follow instructions here: https://catchthemes.com/theme-instructions/adventurous/#enable-featured-slider

    Let me know if you face further issues.

    in reply to: CTA button, featured image and banner questions #125908
    Pratik
    Participant

    @catwingz:
    1. Please add in the Header Highlight Content and then maybe we adjust it with CSS.

    2. Try following code:

    
    .sidebar-header-right p {
        font-family: 'Oswald', sans-serif;
    }
    

    — My client has the blog posting to the home page. He wants to know if it is possible to make it so that the featured image shows on the home page but not in the post.
    To show Featured Images on Homepage but not on posts, it is possible. Since you have already added images on homepage, only issue would be removing it from single page right? For that, goto Appearance- Customize- Theme Options- Layout Options- Single Page/Post Image Layout , then select on Disable Option

    — What do I need to do to make it so that the button for the promotion headline can be a ‘click to call’ for a phone number?
    In Promotion Headline Link add following: tel:8773595319

    Let me know if you have any issues.

    in reply to: How to add space between header image and slider #125907
    Pratik
    Participant

    @jhscantonaol-com: Please add following code in Appearance- Customize- Additional CSS:

    
    #header-featured-image {
        margin-bottom: 25px;
    }
    

    If you want to increase or decrease space, please try increasing 25px to more or less.

    Regards,
    Pratik

Viewing 20 posts - 161 through 180 (of 2,016 total)