Forum Replies Created
-
AuthorPosts
-
Skandha
Participant@valelotartaro: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
@media screen and (min-width:1024px) and (max-width:1224px) { .navigation-classic .site-navigation a { padding:26px 10px; } }Let me know if this works out!
Kind Regards,
SkandhaSkandha
Participant@infoeyeamamazed-com: To display the footer slider only on homepage
Go to => Appearance => Customize => Additional CSS and add the following CSS Code.body:not(.home) #smartslider3-5 { display:none; }Let me know if this is what you want!
Kind Regards,
SkandhaMarch 15, 2019 at 12:44 am in reply to: Can i have two different Excerpt "Read More" text options? #167900Skandha
Participant@beltan: 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/foodie-world/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,
SkandhaSkandha
Participant@cheryle123: To make the top menu sticky you can use out Catch Sticky Menu plugin. You can check out the plugin instructions here in the instructions tab.
Kind Regards,
SkandhaSkandha
Participant@wellsphotoco: Do you mean to hide the site title? If yes you can hide it using a bit of CSS without having to delete the text in the customizer.
Go to => Appearance => Customize => Additional CSS and add the following CSS Code..site-title { display:none !important; }This will hide the site title in your entire site. If you want to hide the site title only on homepage add
.homebefore.site-titlein the above CSS code.Let me know if this works out!
Kind Regards,
SkandhaSkandha
Participant@cheryle123: Please post in your site URL so that I can look into the issue.
Kind Regards,
SkandhaSkandha
Participant@mikeymoo: Hello Mikey,
The video should show up both when homepage is selected as recent posts or a static page.
Yes you will need to select a header image to display the header video.
It is the design of the theme that there is a faint header image behind the video. If you want you can remove it using a bit of CSS Code.Regarding the header video appearing only when homepage is selected as recent posts. I will need to check your site to debug the issue. For that I will need your WP admin credentials. I will contact you shortly by email.
Kind Regards.
SkandhaSkandha
Participant@mithrand: I checked your site and still shows the
.singular-content-wrap .entry-title { display:none; }CSS Code.
The code seems to be coming from style.css line no 1768.
Did you alter the CSS Code in style.css itself?Kind Regards,
SkandhaMarch 14, 2019 at 5:15 am in reply to: The arrows in the dropdown meny pointing upp instead of down!? #167843Skandha
Participant@johanna: Hello Johanna, This is strange.
Please try reinstalling the theme and check if the issue is resolved.Let me know if the issuer persists.
Kind Regards,
SkandhaMarch 14, 2019 at 4:42 am in reply to: The arrows in the dropdown meny pointing upp instead of down!? #167841Skandha
Participant@johanna: Hello Johanna,
Can you try deactivating all your plugins and check if this resolves the issue?Let me know if the issue persists.
Kind Regards,
SkandhaMarch 14, 2019 at 4:04 am in reply to: Can i have two different Excerpt "Read More" text options? #167839Skandha
Participant@beltan: For that,
Go to => Child Theme folder => functions.php and add the Code in this link.This will change the slider read more text to Show Now.
Now to change the posts in your recipes page.
Go to => Appearance => Customize => Theme Options => Excerpt Options => Read More Text => Edit the text to Read the full recipe.Let me know if this works out!
Kind Regards,
SkandhaSkandha
Participant@beltan: Glad I could help you out. Let me know if you have anymore issues. 🙂
Kind Regards,
SkandhaSkandha
Participant@beltan: 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/foodie-world/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,
SkandhaSkandha
Participant@valelotartaro: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
@media screen and (min-width:1024px) and (max-width:1212px) { .navigation-classic #header-wrapper:not(.header-top) .site-navigation a { padding:26px 15px; } }Let me know if this resolves the issue.
Kind Regards,
SkandhaMarch 14, 2019 at 2:26 am in reply to: The arrows in the dropdown meny pointing upp instead of down!? #167832Skandha
Participant@johanna: The default feature of this theme is Menu is fixed at the top when you scroll down the page. Did you make any changes to the theme file as the menu doesnot seem to fixed on your site?
Please check out the demo of the theme. https://catchthemes.com/demo/clean-fotografie/Kind Regards,
SkandhaSkandha
Participant@beltan: You seem to be using 0be88.css. Are you using this as additional css? This css file seems to be a reason the cart layout is showing up differently.
Kind Regards,
SkandhaSkandha
Participant@mithrand: You seem to added the following piece of CSS Code due to which the page titles are not showing up.
.singular-content-wrap .entry-title { display:none; }Removing it should resolve the issue.
Let me know if this is what you want!
Kind Regards,
SkandhaSkandha
Participant@beltan: First you will need to create a child theme. If you do not know how to create a child theme you can Generate Child Theme Plugin. Install and Activate the plugin.
Go to => Dashboard => Generate Child Theme => Select Parent Theme as Foodie World Pro and fill other fields and Click Generate.
This will generate and active the child theme.Now, 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-pro' ); } elseif ( is_search() ) { /* translators: %s: search query. */ printf( esc_html__( 'Search Results for: %s', 'foodie-world-pro' ), '<span>' . get_search_query() . '</span>' ); } elseif( class_exists( 'WooCommerce' ) && is_woocommerce() ) { woocommerce_page_title(); } else { echo 'Recipes'; } }Let me know if this works out!
Kind Regards,
SkandhaSkandha
Participant@beltan: Hello there,
Can you post in your site URL so that I can look into the issue?Kind Regards,
SkandhaSkandha
Participant@beltan: Hello there,
To edit the Archives text you will need create a child theme and do a little bit of customization. Let me know if you are familiar with child theme customization so that I can guide you, otherwise I suggest you to hire a customizer.To customize the Recent Posts text
Go to => Appearance => Customize => Theme Options => Homepage/Frontpage Settings => Recent Posts Heading => Edit the text and publish.Let me know if this helps you out!
Kind Regards,
Skandha -
AuthorPosts
