- This topic has 11 replies, 2 voices, and was last updated 4 years, 11 months ago by Skandha.
-
AuthorPosts
-
November 27, 2019 at 3:55 pm #227796EvdelParticipant
Dear Sir/Madam,
I would like to create a blog page just like the one on the foodie world pro demo site: https://catchthemes.com/demo/foodie-world/blog/
Can you explain how I can create a similar page for my website: http://www.vandeloosoriginals.com.
Thank you in advance.
Evdel
November 27, 2019 at 10:58 pm #227820SkandhaParticipant@evdel: Hello there,
For that you will need to
Go to => Appearance => Customize => Homepage Settings => Your homepage displays => Select a static page and then select the page where you want all our blog posts to be displayed.Let me know if this works out!
Kind Regards,
SkandhaNovember 28, 2019 at 3:31 pm #227904EvdelParticipantHi Skandha,
Thanks. It works partly. Meaning that indeed posts are shown on the specific page. But I really want to get the same look and feel of the posts on your blog posts. https://catchthemes.com/demo/foodie-world/blog/
Can you explain how I can recreate the same look and feel of the posts with an header image (incl mouse over), grey block background, etc.
Thanks in advance.
Evdel
November 29, 2019 at 6:10 am #227967SkandhaParticipant@evdel: Hello Evdel,
Can you let me know which page you have selects as your blog page?Kind Regards,
SkandhaDecember 2, 2019 at 3:42 pm #228279EvdelParticipantHi Skandha,
Sure, that would be https://www.vandeloosoriginal.com/news/ (still hidden).
And in addition, could you also explain how I can change the header Archives into News?
Thanks a lot!
EvdelDecember 4, 2019 at 12:14 am #228486SkandhaParticipant@evdel: Hello Evdel,
I checked your blog page and you seem to have just one post. Can you add some more posts and see if the posts show up like in the theme demo.To check the Archive text in the blog page you will need to create a child theme and do a little bit of customization. Let me know if you are familiar with child theme customization.
Kind Regards,
SkandhaDecember 5, 2019 at 5:28 pm #228690EvdelParticipantHi Skandha,
I am getting close to the look & feel of the blog page and posts. See: https://www.vandeloosoriginal.com/news/
However I still want to change ‘Archives’ in the header for News (and I am not familiar with child them customization.
Next to that I want to get rid of the title ‘Recent posts’.Thanks.
EvdelDecember 6, 2019 at 2:20 am #228724SkandhaParticipant@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,
SkandhaDecember 8, 2019 at 3:51 pm #228984EvdelParticipantThanks for your help Skandha!
Great.
December 9, 2019 at 1:54 am #229028SkandhaParticipant@evdel: Hello Evdel, 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,
SkandhaDecember 11, 2019 at 2:21 pm #229491EvdelParticipantHi Skandha,
Thanks for your help.
I wanted to give you reviews several times, but for some reason I cannot log in (which you need before you can give the review). I will try again.
Evdel
December 12, 2019 at 2:45 am #229541 -
AuthorPosts
- The topic ‘Blog page Foodie World Pro theme’ is closed to new replies.