I am a newbie to WordPress but I am pressed by a deadline to create a landing page on a fully hosted site on Dreamhost.
I downloaded this landing page template: https://themeforest.net/item/landlr-the-allinone-landing-page-wordpress/6952895
I extracted the download but found no installation instructions. I am completely lost here, not knowing what to do.
Can anyone help me through this? I have only less than 24 hours to finish it by the deadline. Thank you SOOO much in advance!
]]>I am trying to create a landing page template based on one my cousin \ made for another site, however I cannot seem to figure out how to lay everything out correctly. This is the landing page format she has made and I would like to have for the new site:
Direct link to page:
https://orange-restoration.com/services/flood-water-damage-restoration/san-diego-flood-and-water-damage-remediation/san-diego-service-area-water-damage-restoration/coronado-water-damage/
Link to landing page template: https://pastebin.com/7gtnL9E3
Link to CSS file: https://pastebin.com/pmP05izD
Here is what I currently have for the landing page I have started working on:
Direct Link to page:
https://gogreendrainsplumbing.com/landingpagetest/
Link to landing page template: https://pastebin.com/zu4tFgtC
Link to CSS file: https://pastebin.com/ApfcyiPZ
If anyone can help me make my landing page look like the one my cousin made it would be greatly appreciated. Don’t worry about the image, I am still working on that. I just need the format to be laid out the same way. Thanks!
]]>My boss asked me create a landing page template based on one she made for another site, however I cannot seem to figure out how to lay everything out correctly. This is the landing page format she has made and I would like to have for the new site:
Direct link to page:
https://orange-restoration.com/services/flood-water-damage-restoration/san-diego-flood-and-water-damage-remediation/san-diego-service-area-water-damage-restoration/coronado-water-damage/
Link to landing page template: https://pastebin.com/7gtnL9E3
Link to CSS file: https://pastebin.com/pmP05izD
Here is what I currently have for the landing page I have been asked to create:
Direct Link to page:
https://gogreendrainsplumbing.com/landingpagetest/
Link to landing page template: https://pastebin.com/zu4tFgtC
Link to CSS file: https://pastebin.com/ApfcyiPZ
If anyone can help me make my landing page look like the one my boss made it would be greatly appreciated. Don’t worry about the image, I am still working on that. I just need the format to be laid out the same way. Thanks!
Please do not create duplicate threads – https://www.ads-software.com/support/topic/help-with-landing-page-template?replies=1
]]><?php
/**
* This file adds the Landing template to the Outreach Child Theme.
*
* @author StudioPress
* @package Generate
* @subpackage Customizations
*/
/*
Template Name: Landing
*/
// Add custom body class to the head
add_filter( ‘body_class’, ‘outreach_add_body_class’ );
function outreach_add_body_class( $classes ) {
$classes[] = ‘outreach-landing’;
return $classes;
}
// Remove header, navigation, breadcrumbs, footer widgets, footer
add_filter( ‘genesis_pre_get_option_site_layout’, ‘__genesis_return_full_width_content’ );
remove_action( ‘genesis_header’, ‘genesis_header_markup_open’, 5 );
remove_action( ‘genesis_header’, ‘genesis_do_header’ );
remove_action( ‘genesis_header’, ‘genesis_header_markup_close’, 15 );
remove_action( ‘genesis_after_header’, ‘genesis_do_nav’ );
remove_action( ‘genesis_before_content_sidebar_wrap’, ‘genesis_do_subnav’ );
remove_action( ‘genesis_after_header’, ‘genesis_do_breadcrumbs’);
remove_action( ‘genesis_before_footer’, ‘outreach_sub_footer’, 5 );
remove_action( ‘genesis_before_footer’, ‘genesis_footer_widget_areas’ );
remove_action( ‘genesis_footer’, ‘genesis_footer_markup_open’, 5 );
remove_action( ‘genesis_footer’, ‘genesis_do_footer’ );
remove_action( ‘genesis_footer’, ‘genesis_footer_markup_close’, 15 );
genesis();
]]>The sidebar appears fine in other subpages, but any page using the landing page template doesn’t get it. Boxes and Wide appear, but none of the Sidebar layout areas (and yes I put widgets in them).
Here’s another subpage using Landing Page template, also no sidebars:
https://www.ottawaecodistrict.org/home-test/
And here’s a subpage using the default template, sidebar appears just fine:
https://www.ottawaecodistrict.org/existing-assets-in-the-downtown-core/
Any ideas? I’m supposed to be launching this site tomorrow.
Sorry if its a stupid question.
All help is much appreciated.
]]>