JenniferLedger
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Help They Don’t Know Who The Super Admin IsWe got the previous Super Admin tracked down. I think going through the cPanel would have been the next best fix though. Thank you all!
Forum: Networking WordPress
In reply to: Help They Don’t Know Who The Super Admin Is@obt28 wait. If I go to the top right “My Sites”, Blog, Dashboard… I cannot gain access to that dashboard.
Forum: Networking WordPress
In reply to: Help They Don’t Know Who The Super Admin Is@ellissharp I am not the one who registered the site it was registered many years ago. They don’t know who registered it. I am hoping they know their host login so I can access things from the back end.
Forum: Networking WordPress
In reply to: Help They Don’t Know Who The Super Admin Is@obt28 Yes, I can login and see the WordPress dashboard. I can even access users, as I am an admin. I do not see a super admin on the list though. As the admin it is only giving me the option to add an existing user.
I am hoping to find out today if they know their host login. So that cpanel link might come in handy. Thank you so much.
Forum: Networking WordPress
In reply to: Help They Don’t Know Who The Super Admin IsAlso I currently only have access to the subdomain. mysite.com/blog/ I am logged into the blog subdomain. The super admin would have to log into the main domain right? It’s not a WordPress site just the blog is WordPress.
Forum: Installing WordPress
In reply to: Installed 3.5 now edit and other buttons don't workNo, that was a different problem. Fixed it.
Forum: Installing WordPress
In reply to: Installed 3.5 now edit and other buttons don't workOops, that broke the Cycle and Flex Sliders on my website.
Forum: Installing WordPress
In reply to: Installed 3.5 now edit and other buttons don't workThank you.
Forum: Installing WordPress
In reply to: Installed 3.5 now edit and other buttons don't workThat did the trick. I know a little about php, but not enough. Can anyone tell me what this function does?
Forum: Fixing WordPress
In reply to: Contact Page Template Won't WorkAventador e-Commerce 1.0 by Alex Gurghis
WordPress E-Commerce Theme
Is that Premium? Just purchased the 1 use.
Forum: Fixing WordPress
In reply to: Contact Page Template Won't WorkI have deleted the old page and recreated a new one. It still isn’t sending any email. Suggestions?
Forum: Fixing WordPress
In reply to: Contact Page Template Won't WorkIt is a php template that came with my theme. I would assume the problem is somewhere in this area:
//If there is no error, send the email
if(!isset($hasError)) {
$emailTo = $contact_email;
$subject = ‘Contact Form Submission from ‘.$name;
$body = “Nume: $name \n\nEmail: $email \n\nComments: $comments”;
$headers = ‘From website <‘.$emailTo.’>’ . “\r\n” . ‘Reply-To: ‘ . $email;
mail($emailTo, $subject, $body, $headers);
$emailSent = true;
}