mrmccarrin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Stretch Image length of pagePerfect thank you so much for your help.
And, thanks for the instructions. I did follow them, but I think I made a mistake in my parent theme. I get a “your parent theme is not registered error.” ugh! I will figure it out at some point ??
Forum: Fixing WordPress
In reply to: Stretch Image length of pageNever mind. I got around it by adding a CSS editor and added background-size: cover;. My next question is, how do I close the page div before the banner div? I do not see that in my front page template? Could you please explain?
Thank you very much!
Forum: Fixing WordPress
In reply to: Stretch Image length of pageThank you. I understand now. However, I went to go and try and make a child theme. However, I made my theme from scratch. So, it tells me I need to install the parent theme. Is this a normal problem when creating your own theme?
Forum: Fixing WordPress
In reply to: Stretch Image length of pageOh no I did not. I mean that I want it to go the entire width of the page. Like the menu bar. I have searched for an answer and nothing is working. Any suggestions?
Forum: Fixing WordPress
In reply to: Stretch Image length of pageHi!
I would like the height of my image to stay the same and I would like to expand the width.
My image is currently the width of my site and I can’t figure out how to go past it so it goes the width of the whole page.
Does that make sense?
Thanks again!Forum: Fixing WordPress
In reply to: Redirecting My URL after submitting my contact formThis is not a plugin. It is a custom template. Unfortunately, I am not the one who created it. It was someone that my company has lost contact with. It was not working at all a few days ago, but I did get it to work.
I would be willing to recreate from scratch if you do not think this is a good way to set up a contact form, but I honestly know nothing about PHP – do you have a suggestion about where to get started? Everything I google gets very confusing?
Forum: Fixing WordPress
In reply to: Redirecting My URL after submitting my contact formYes, the email gets sent without a problem and then it keeps the user on the page with the “Thank you for contacting us …..” message and it looks awful. I want to redirect the user to a new url after submitting the contact form.
Forum: Fixing WordPress
In reply to: Redirecting My URL after submitting my contact formThank you for your reply, however, it did not work and I get the same result?
Forum: Fixing WordPress
In reply to: Redirecting Contact Form after SubmissionHello again,
I added this code:
header("location: https://www.pearsonkoutcherlaw.com/abl-form-submit/"); exit;
to
<?php if (isset($_POST['formSubmit'])) { header("location: https://www.pearsonkoutcherlaw.com/abl-form-submit/"); exit; print "<p style=\"font-weight:bold;\">Form has been sent!</p>"; print '<p>Thank you for your submission. </p>'; print "<p>What You Sent</p>"; print "<b>Name:</b><br/>".$name."<br/><br/>"; print "<b>Email:</b><br/>".$email."<br/><br/>"; print "<b>Phone:</b><br/>".$phone."<br/><br/>"; print "<b>Message:</b><br/>".$message."<br/><br/>"; } else { ?>
And it is now redirecting me correctly, however, I am now wondering how I get the following to appear on my newly directed page?
`print “<p style=\”font-weight:bold;\”>Form has been sent!</p>”;
print ‘<p>Thank you for your submission. </p>’;
print “<p>What You Sent</p>”;print “<b>Name:</b><br/>”.$name.”<br/><br/>”;
print “<b>Email:</b><br/>”.$email.”<br/><br/>”;
print “<b>Phone:</b><br/>”.$phone.”<br/><br/>”;
print “<b>Message:</b><br/>”.$message.”<br/><br/>”;
} else { ?>Thank you.
Megan
Forum: Fixing WordPress
In reply to: How do I edit my home Page?I figured it out.
1. On the dashboard, go to settings –> Reading
2. Select “static posts”
3. Choose the page you want to point your home page too.Forum: Fixing WordPress
In reply to: Not Showing up On Mobile siteThank you.
Forum: Fixing WordPress
In reply to: get_header( 'customheader' ); ?>That worked! Thank you ??
Forum: Fixing WordPress
In reply to: Pages loading duplicate contentGreat! Thanks for letting me know.
Forum: Fixing WordPress
In reply to: Pages loading duplicate contentThank you for your response. I do not have links that point to the page without dashes and I do have a canonical tag on each page. I am just concerned about having nothing to worry about because doesn’t it mean there is duplicate content if the page just reloads with my original content instead of a “Not Found” error?
Thank you for your time!
Forum: Fixing WordPress
In reply to: Contact form not working on Mobile SiteOk – Thank you for your help.