Forum Replies Created

Viewing 20 posts - 6,721 through 6,740 (of 12,027 total)
  • Author
    Posts
  • in reply to: Image in Sticky Playlist #228826
    Skandha
    Participant

    @jordan: Hello there,
    Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: Not All Items Visible on Mobile View #228825
    Skandha
    Participant

    @mtwhite: Hello there,
    Please post in your site URL so that I can look into the issue you are having.

    Kind Regards,
    Skandha

    in reply to: Header Image not loading #228824
    Skandha
    Participant

    @foia: Hello Francesco,
    You don’t seem to have selected a header image.

    Go to => Appearance => Customize => Header Media => Select a Header Image and Publish.

    Let me know if this resolves your issues.
    Kind Regards,
    Skandha

    in reply to: Promotion headline link not working #228823
    Skandha
    Participant

    @nomade-2018: Glad you were able to figure it out. Have a great weekend.

    Kind Regards,
    Skandha

    in reply to: Difference free versus pro version #228822
    Skandha
    Participant

    @gramdoezie: Hello there,
    1. Yes it is possible to change color of headings, background color and also hover color from the customizer itself.

    2. I am afraid that is not possible. The header image changes randomly only when the page is refreshed.

    Let me know if this helps you out!
    Kind Regards,
    Skandha

    Skandha
    Participant

    @infogranufunk-de: Hello there,
    Please try checking in your span/junk folder as well.
    I have forwarded your issue to the concerned department. Our representative will get back to you soon.

    Kind Regards,
    Skandha

    in reply to: Changing content in widget #228820
    Skandha
    Participant

    @gramdoezie: Hello there,
    You can setup all your widgets in the sidebar first. Then I can provide you the CSS Code to display a widget in a specific page. Please post in your site URL as well.

    Kind Regards,
    Skandha

    in reply to: Fix Primary Menu #228819
    Skandha
    Participant

    @fireflywebs: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #header-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 200;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    Skandha
    Participant

    @billsteelike-com: Hello Bill,
    Glad you were able to figure it out. Have a great weekend.

    Kind Regards,
    Skandha

    in reply to: Issues to install my Catch Responsive Pro 4.4 #228755
    Skandha
    Participant

    @marilyne: Hello there,
    Please follow the instructions in this link.

    Let me know if you are still having issues installing the theme.
    Kind Regards,
    Skandha

    in reply to: Catch Fullscreen #228754
    Skandha
    Participant

    @lili13: Hello there,
    Please check this link.
    http://catchthemes.com/demo/catch-fullscreen-pro/

    Kind Regards,
    Skandha

    in reply to: apparition chiffre sur page accueil #228753
    Skandha
    Participant

    @pla16: Hello Patrick,
    Can you try deactivating all your plugins and see if the text still appear?

    Let me know if the issue persists!
    Kind Regards,
    Skandha

    in reply to: Logo size and portfolio picture size #228752
    Skandha
    Participant

    @reservehifi: I am afraid it is not possible to have two logos.

    Since you are using Custom Type Portfolio the image size you upload, the portfolio images will be displayed in the same ratio. You will need to change the size of the images you have uploaded to get the desired result. The images you have uploaded are of different ratios.

    Kind Regards,
    Skandha

    in reply to: Menu issues. Image resizing issues. #228732
    Skandha
    Participant

    @soundlocation: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    /* To reduce the width of the sub menu */
    @media screen and (min-width: 910px) {
    	.main-navigation ul ul a {
    		width: 200px !important;
    	}	
    }
    /* To have a transparent background menu */
    #masthead {
    	background: #000;
    }

    Let me know if this works out.
    Rest of the issues are not possible to debug with out having a look of your site.

    Kind Regards,
    Skandha

    in reply to: Menu not appearing on mobile devices #228731
    Skandha
    Participant

    @foia: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/bold-photography/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely
    appreciated. Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Spotify embed in theme style #228730
    Skandha
    Participant

    @folkertspoken: Hello there,
    I am afraid it is not possible have a spotify playlist in the style of the theme.

    You will need use the option available in the theme to have a playlist like in the demo.

    Kind Regards,
    Skandha

    in reply to: Header transition appears only on home page #228726
    Skandha
    Participant

    @johnmarketos: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .home .site-header-main {
        background-color: #000;
    }

    Let me know if this is what you want!
    Kind Regards,
    Skandha

    in reply to: Blog page Foodie World Pro theme #228724
    Skandha
    Participant

    @evdel: Hello Evdel,
    To get rid of the title Recent Posts.
    Go to => Appearance => Customize => Theme Options => Homepage/Frontpage Options => Recent Posts Heading => Edit the heading.

    To change the Archive text in blog page
    Firstly you will need to create a child theme. You can use our plugin Generate Child Theme to create a child theme. Install and Activate the plugin.
    Now,
    Go to => Dashboard => Generate Child Theme => Select Parent Theme as Foodie World Pro, fill the remaining fields and Click Generate. This will create and activate the child theme.

    Go to => Child Theme Folder => functions.php and add the following Code.

    function foodie_world_header_title() {
    	if ( is_front_page() ) {
    		echo wp_kses_post( get_theme_mod( 'foodie_world_header_media_title' ) );
    	} elseif ( is_singular() ) {
    		the_title();
    	} elseif ( is_404() ) {
    		esc_html_e( 'Oops! That page can’t be found.', 'foodie-world' );
    	} elseif ( is_search() ) {
    		/* translators: %s: search query. */
    		printf( esc_html__( 'Search Results for: %s', 'foodie-world' ), '<span>' . get_search_query() . '</span>' );
    	} elseif( class_exists( 'WooCommerce' ) && is_woocommerce() ) {
    		woocommerce_page_title();
    	} elseif ( is_home() && ! is_front_page() ) {
    		echo 'Blog';
    	} else {
    		the_archive_title();
    	} 
    }

    Replace the text Blog with your text.

    Also you will need to migrate your customizer settings from the parent theme to the child theme. For that you can use our Catch Import Export Plugin.

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Automatic Update License Key Problem #228716
    Skandha
    Participant

    @astraiton: Hello Amy,
    I will need to look into your site to debug the issue. I will contact you shortly by email.

    Kind Regards,
    Skandha

    in reply to: no extend license #228715
    Skandha
    Participant

    @jcachero: Hello there,
    If you don’t renew your subscription you can use the theme but you will no longer be able to update your theme to newer version which contains bug fixes and code optimization or feature addition.

    Kind Regards,
    Sknadha

Viewing 20 posts - 6,721 through 6,740 (of 12,027 total)