eswank
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Zerif Lite] Footer not stickyOk so I’ve found that the footer works properly when the sidebar is present, but not otherwise. Is there any way to keep the footer functionality without including the sidebar?
Forum: Themes and Templates
In reply to: [Zerif Lite] Footer not stickyIf the link is broken, the page is spotmystuff.co/partner-submission/
Forum: Themes and Templates
In reply to: [Zerif Lite] Contact Email Not SendingFixed using WP-Mail-SMTP plugin and changing settings to PHP mail() function.
Forum: Themes and Templates
In reply to: [Zerif Lite] Contact Email Not SendingWhoops the second link was supposed to be: http://pastebin.com/xVYn8nL7
Forum: Themes and Templates
In reply to: [Zerif Lite] Change placeholder text in Contact formThe code for the contact form is found in the front-page.php file. You can find the beginning of the code with the following:
<!– CONTACT FORM–>
or more directly, the first can be found here:
<input type=”text” name=”myname” placeholder=”Your Name” class=”form-control input-box” value=”<?php if(isset($_POST[‘myname’])) echo $_POST[‘myname’];?>”>
All you need to do is find each of the <input> and change the placeholder.
Forum: Themes and Templates
In reply to: [Zerif Lite] Contact Form CustomizationAh, premature question. To anyone having similar problems, the code is in the front-page.php file in sections like below:
“/* email */
if(trim($_POST[‘myemail’]) === ”):”Just delete the code sections for the input boxes you don’t want to be forced-entry.