Forum Replies Created

Viewing 20 posts - 8,901 through 8,920 (of 12,034 total)
  • Author
    Posts
  • in reply to: Hero Content Header #167133
    Skandha
    Participant

    @somelis: Hello Peter,
    Please post in your site URL with the Hero Content enabled.

    Kind Regards,
    Skandha

    in reply to: Header Highligt Content #167073
    Skandha
    Participant

    @vraba: I will look into the issue and get back to you on this.

    Kind Regards,
    Skandha

    in reply to: Remove grey lines on sites #167072
    Skandha
    Participant

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

    Kind Regards,
    Skandha

    in reply to: Couple of questions Re Side Bar and Images #167071
    Skandha
    Participant

    @paulpagen-ltd: Hello Paul,
    Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: Organic Cosmetics theme #167070
    Skandha
    Participant

    @teglatfalasar: If you like the design of the theme why not. If you are trying create a eCommerce website for Organic Cosmetics I suggest you to have a look at Catch Store Pro. Also you can check out are other themes here and select any one.

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

    in reply to: featured slider help #167068
    Skandha
    Participant

    @logjammusic: I will need to check out your site to look into the issue. Since your site is not live I will need your WP admin credentials. I will contact you shortly by email.

    Kind Regards,
    Skandha

    in reply to: FoodMenu Frontpage Fullwidth #166987
    Skandha
    Participant

    @andre-g: Hello there,
    You seem to be using sidebar on single post/pages. If you want the menu on single pages to be full width you will need to remove the sidebar.

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

    in reply to: Background image size issue #166985
    Skandha
    Participant

    @catwingz: Hello there,
    1600×1200 px size of image or size of the same aspect ratio would look good on the background.

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

    in reply to: Food items with thumbnail image #166984
    Skandha
    Participant

    @andre-g: Hello Andre, 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/plugin/essential-content-types/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: SVG logo is blank #166982
    Skandha
    Participant

    @spesriks: Hello there, WordPress doesnot recommend uploading SVG as SVG files are extremely insecure. I suggest you to use a image instead for the logo. If you still want to risk it and upload an SVG I suggest you to hire a customizer to get it done.

    Kind Regards,
    Skandha

    in reply to: Food items with thumbnail image #166973
    Skandha
    Participant

    @andre-g: Hello there,
    Can you please update Essential Content Types Pro Plugin and check the option to add a featured image shows up in Menu item page inside the Food Menu?

    Let me know if the issue is resolved.
    Kind Regards,
    Skandha

    in reply to: menu background #166917
    Skandha
    Participant

    @valelotartaro: Glad I was able to help you out. Let me know if you have anymore issues. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: How to apply #166916
    Skandha
    Participant

    @torinski: Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: View in iexplore #166907
    Skandha
    Participant

    @hwfoto: Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: Resize header image #166906
    Skandha
    Participant

    @catwingz: Please insert the image so that I can look into the issue on your site.

    Kind Regards,
    Skandha

    in reply to: String translation #166904
    Skandha
    Participant

    @uschelbert: I tried sending you an email but the email you have registered doesn’t seems to be a valid one.

    Kind Regards,
    Skandha

    in reply to: String translation #166903
    Skandha
    Participant

    @uschelbert: I will need to have a look into your site to properly enable the polylang functions. For that I will need you WP admin login credentials. I will contact you shortly by email.

    Kind Regards,
    Skandha

    in reply to: caption for images #166900
    Skandha
    Participant

    @m-tenbrink: 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/clean-journal/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: Main menu position on the first page #166898
    Skandha
    Participant

    @rayo: Hello there,
    Do you want to try it using a child theme?

    Kind Regards,
    Skandha

    in reply to: caption for images #166897
    Skandha
    Participant

    @m-tenbrink: Can you try adding the following code and check if it works out?
    Go to => Child Theme Folder => functions.php and add the following Code.

    function clean_journal_archive_content_image() {
    	$options 			= clean_journal_get_theme_options();
    
    	$featured_image = $options['content_layout'];
    
    	if ( has_post_thumbnail() && 'full-content' != $featured_image ) { ?>
    		<figure class="featured-image">
                <a rel="bookmark" href="<?php the_permalink(); ?>">
                <?php
    					if ( 'excerpt-image-left' == $featured_image  || 'excerpt-image-right' == $featured_image  ) {
    	                     the_post_thumbnail( 'clean-journal-landscape' );
    	                }
    	                elseif ( 'excerpt-image-top' == $featured_image  ) {
    	                     the_post_thumbnail( 'clean-journal-featured' );
    	                }
    	               	elseif ( 'excerpt-full-image' == $featured_image  ) {
    	                     the_post_thumbnail( 'full' );
    	                }
    				?>
    			</a>
    		<?php if (get_post(get_post_thumbnail_id())->post_excerpt) { // search for if the image has caption added on it ?>
    			    <span class="featured-image-caption">
    			        <?php echo wp_kses_post(get_post(get_post_thumbnail_id())->post_excerpt); // displays the image caption ?>
    			    </span>
    			<?php } ?>	
            </figure>
       	<?php
    	}
    }

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

Viewing 20 posts - 8,901 through 8,920 (of 12,034 total)