Thanks for the reply, i’m thinking if how about replacing the banner image here at this link http://jerichotransport.x10host.com/contact-us/ with google map instead, is it possible?
Oh, I see that I misunderstood your initial question. I’m sorry about that, thank you for clarifying!
Replacing the theme’s featured image with a Google Map is possible but fairly advanced, and requires some knowledge of HTML and basic PHP.
As a starting point, you should create a child theme. In case you’re not aware of what a child theme is or how it works, you can find a great introduction here:
Before I talk further about adding a Google Map as your featured image, I’m going to answer your other question:
and how can i make this page’s template be the same with the front page but not acquiring the widgets there!
You can find the code for the front page template in the parent theme’s page-templates/front-page.php file.
To create a special template for your “contact us” page, create a file named page-contact-us.php in your child theme and copy/paste the content from page-templates/front-page.php.
The theme will check for page-contact-us.php and load it prior to the other file as per the theme’s template hierarchy, which is explained further here:
https://developer.ww.wp.xz.cn/themes/template-files-section/page-template-files/page-templates/#creating-a-custom-page-template-for-one-specific-page
You can edit the code as you wish and remove the following to stop the front page widgets loading:
<?php get_sidebar( 'front-page' ); ?>
Back to your Google Map: This can also be added via your newly created page-contact-us.php file but, as mentioned, is fairly advanced.
I found the following tutorial that may help you out:
http://martyspellerberg.com/2012/03/using-the-wordpress-featured-image-post-thumbnail-as-a-google-maps-marker/
Alternatively, you could consider adding the embed code directly to the file, rather than trying to match it up to a featured image.
Let me know if that information is helpful! I’ll be happy to walk through any specifics of setting up a child theme too.