Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #227796
    Evdel
    Participant

    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

    #227820
    Skandha
    Participant

    @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,
    Skandha

    #227904
    Evdel
    Participant

    Hi 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

    #227967
    Skandha
    Participant

    @evdel: Hello Evdel,
    Can you let me know which page you have selects as your blog page?

    Kind Regards,
    Skandha

    #228279
    Evdel
    Participant

    Hi 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!
    Evdel

    #228486
    Skandha
    Participant

    @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,
    Skandha

    #228690
    Evdel
    Participant

    Hi 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.
    Evdel

    #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

    #228984
    Evdel
    Participant

    Thanks for your help Skandha!

    Great.

    #229028
    Skandha
    Participant

    @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,
    Skandha

    #229491
    Evdel
    Participant

    Hi 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

    #229541
    Skandha
    Participant

    @evdel: Hello Evdel,
    Never mind you can always leave a review when it is possible. Have a good day! 🙂

    Kind Regards,
    Skandha

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Blog page Foodie World Pro theme’ is closed to new replies.