-
Search Results
-
Topic: Error in admin area
We have the pro version of Toothy and have begun receiving an error when we go to edit pages. When we click on a page, we see the following message…
Failed to load content css: https://fidkids.com/wp-admin/admin-ajax.php/?action=dynamic_styles
I have done some research online and most posts point towards an issue with the theme. Is this an issue with the theme? How can we get this resolved?
Thanks,
~Clay
Topic: change footer STK corp pro
Hi, I built a website using your skt-music-pro theme as a subdomain wgile doing it. Then I moved it to the real domain and followed all the necessary guidelines to change the domain name and permalinks. However, all the permalinks attached to the theme options or theme customizer…in other words, image links, etc are not updating. Even the page links won’t update when I change permalinks setup in settings. I keep refreshing, I have even followed the steps to do it in PHPMyAdmin.
I try to change the permakinks back to their postname and I get a server error message that says
“Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at webmaster@pattersonbluesandbbq.org to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.”I own the server, I own the domains, I am the IT/webmaster. so, now, I turn to you. I have never had these issues with any other wordpress sites on my server. This is definitely a theme issue. Especially since the pages work when I leave them as their pageID format. Even though I named them originally.
http://pattersonbluesandbbq.org/?page_id=2
Same thing with images that are through your theme’s photogallery. the permalinks won’t update to point to the new website/wp-content/uploads… it keeps pointing to the old one which I deleted.
Example… I had to manually fix the header image, page banner, and started on my sponsors album but I shouldn’t have to manually do this for each. so this is the correct link structure:
http://pattersonbluesandbbq.org/wp-content/uploads/2017/08/SIXD-LOGO-NEW-SQ-01-e1503166230620.pngThe wrong links point to:
Photgallery image: http://pattersonbluesandbbq.org/wp-content/uploads/2017/08/roosevelt-e1503166119486.png (gets internal server error) permalink says it’s http://pattersonbluesandbbq.org/?photogallery=roosevelt-veterinary-center
widget links not updating:
[su_slider source=”taxonomy: gallerycategory/6″ link=”http://bluesnbbq.palomadomenico.com/bluesnbbq/sponsors/” width=”300″ height=”150″ responsive=”yes” title=”no” centered=”yes” pages=”no”] again, it’s from the photogallery album
shortcode button links didn’t update on theme option home sections:
[su_button]http://bluesnbbq.palomadomenico.com/bluesnbbq/sponsors/
[su_button]http://bluesnbbq.palomadomenico.com/bluesnbbq/music/This event is happening in less than a month. I need this resolved ASAP
Topic: Contact form Marvin
Which words in de css custom functions.php do I need to change to set the contactform words in Dutch? I have tried some words but they don’t show in the form.
function contactform_func( $atts ) {
$atts = shortcode_atts( array(
‘to_email’ => get_bloginfo(‘admin_email’),
‘title’ => ‘Contact enquiry – ‘.home_url( ‘/’ ),
), $atts );$cform = “<div class=\”main-form-area\” id=\”contactform_main\”>”;
$cerr = array();
if( isset($_POST[‘c_submit’]) && $_POST[‘c_submit’]==’Submit’ ){
$name = trim( $_POST[‘c_naam’] );
$email = trim( $_POST[‘c_email’] );
$phone = trim( $_POST[‘c_phone’] );
$website = trim( $_POST[‘c_website’] );
$comments = trim( $_POST[‘c_comments’] );
$captcha = trim( $_POST[‘c_captcha’] );
$captcha_cnf = trim( $_POST[‘c_captcha_confirm’] );if( !$name )
$cerr[‘name’] = ‘Please enter your name.’;
if( ! filter_var($email, FILTER_VALIDATE_EMAIL) )
$cerr[’email’] = ‘Please enter a valid email.’;
if( !$phone )
$cerr[‘phone’] = ‘Please enter your phone number.’;
if( !$comments )
$cerr[‘comments’] = ‘Please enter your message.’;
if( !$captcha || (md5($captcha) != $captcha_cnf) )
$cerr[‘captcha’] = ‘Please enter the correct answer.’;if( count($cerr) == 0 ){
$subject = $atts[‘title’];
$headers = “From: “.$name.” <” . strip_tags($email) . “>\r\n”;
$headers .= “MIME-Version: 1.0\r\n”;
$headers .= “Content-type: text/html; charset=iso-8859-1\r\n”;$message = ‘<html><body>
<table>
<tr><td>Naam: </td><td>’.$name.'</td></tr>
<tr><td>Email: </td><td>’.$email.'</td></tr>
<tr><td>Telefoon: </td><td>’.$phone.'</td></tr>
<tr><td>Website: </td><td>’.$website.'</td></tr>
<tr><td>Bericht: </td><td>’.$comments.'</td></tr>
</table>
</body>
</html>’;
mail( $atts[‘to_email’], $subject, $message, $headers);
$cform .= ‘<div class=”success_msg”>Dank u voor uw bericht. Het is verzonden.</div>’;
unset( $name, $email, $phone, $website, $comments, $captcha );
}else{
$cform .= ‘<div class=”error_msg”>’;
$cform .= implode(‘<br />’,$cerr);
$cform .= ‘</div>’;
}
}Regards,
Miranda