UrbaneGroup
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Website downThanks for that Mark.
Just so you know, I have renamed the PlugIns file (to PlugIns1), so there are now no active PlugIns at all. That has not fixed the issue either.
I will give your debug suggestion a shot and see if that helps any.
In the meantime, I will also call Go Daddy again and see if they can fix things from their end once again.
Best,
JenForum: Fixing WordPress
In reply to: Website downHi Mark,
One other quick thing…
When the Go Daddy tech fixed the issue on Saturday, he came back on the phone and told me that “we were using up all our available resources because our PHP not closing and the problem is likely re-occur, therefore we need to check our code.”
Although this is Swahili to me, does that help you any to diagnose the problem and make a recommendation for a fix?
Thanks again.
Best,
JenForum: Fixing WordPress
In reply to: Website downHi Mark,
Thank you so much for your speedy response.
Yes it did reoccur again after they said they fixed the issue. And the site has been down ever since.
I will call them again.
There seems to be many and ongoing ‘issues’ with Go Daddy. As such, we have just subscribed to A2 Hosting and are in the process of moving our site to them. I sure hope they are better.
Thank you again for your help.
Best,
JenThank you so much for your speedy and comprehensive reply johnny_n, it is greatly appreciated. I shall follow your advice. Have yourself a fabulous day!
Best,
JenHello experts. We designed and built a new Website using the THBusiness WP Theme. Out of the clear blue sky, we started getting this, “Recently an error occurred while creating the CSS / JS minify cache: No sources to serve.” and some other intermittent error messages as well showing up on the Admin Panel. We are using Go Daddy Hosting and I believe it is on an Apache Server.
In addition to that, when we run an SEO site check https://nibbler.silktide.com/en/reports/urbaneresidentialgroup.com, among other things, it is reporting that the ‘Code quality’ is very poor. See below:
A total of 275 errors and 59 warnings were found on the 5 pages tested. No pages are W3C compliant. Because there are errors in the code, some web browsers may not be able to read this website correctly and it may not always display correctly.
Resolve the validation errors that are listed in the table below. These errors are preventing this website from being fully W3C compliant. The table shows the first 100 errors only.
5 of the pages of this website were found to use presentational HTML elements and/or attributes. It is widely regarded that use of presentational HTML like <font> and <p bgcolor=”#FF0000″> should be avoided.
Replace all the instances of presentational tags with a semantic alternative. This means where possible, use semantically correct HTML and then style it with CSS.Admittedly, I am lost, as to what to do to fix this. Is this caused by something we are doing/not doing, or is it a more common or overall problem with other people as well? I don’t know if it helps of not, but our new Website is at: https://urbaneresidentialgroup.com
If anybody can give me some guidance how to repair these issues, I would be forever grateful. If you’d like to email me so advice, please do at: [email redacted – these forums do not provide email support] Thanks a million!
Forum: Fixing WordPress
In reply to: Change Widget Headings from H1 to H2 through H6Hello again WP Gurus,
Well, I took a shot at it, now fingers crossed that I didn’t wreck something… LOL.
Previously, everything had H1 on it, so I changed what I thought was appropriate and hit the update button. Just so you can have a look, here is what I did:
function thbusiness_widgets_init() {
register_sidebar( array(
‘name’ => __( ‘Main Sidebar’, ‘thbusiness’ ),
‘id’ => ‘thbusiness-main-sidebar’,
‘description’ => ”,
‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ‘</aside>’,
‘before_title’ => ‘<h2 class=”widget-title”>’,
‘after_title’ => ‘</h3>’,
) );
register_sidebar( array(
‘name’ => __( ‘Business Template Top Area’, ‘thbusiness’ ),
‘id’ => ‘thbusiness-business-top-sidebar’,
‘description’ => ‘Shows the widgets on the top area of the business page.’,
‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ‘</aside>’,
‘before_title’ => ‘<h1 class=”business-page-widget-title”>’,
‘after_title’ => ‘</h2>’,
) );
register_sidebar( array(
‘name’ => __( ‘Business Template Left Area’, ‘thbusiness’ ),
‘id’ => ‘thbusiness-business-left-sidebar’,
‘description’ => ‘Shows the widgets on the left area of the business page.’,
‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ‘</aside>’,
‘before_title’ => ‘<h3 class=”business-page-widget-title”>’,
‘after_title’ => ‘</h4>’,
) );
register_sidebar( array(
‘name’ => __( ‘Business Template Right Area’, ‘thbusiness’ ),
‘id’ => ‘thbusiness-business-right-sidebar’,
‘description’ => ‘Shows the widgets on the right area of the business page.’,
‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ‘</aside>’,
‘before_title’ => ‘<h3 class=”business-page-widget-title”>’,
‘after_title’ => ‘</h4>’,
) );
register_sidebar( array(
‘name’ => __( ‘Business Template Bottom Area’, ‘thbusiness’ ),
‘id’ => ‘thbusiness-business-bottom-sidebar’,
‘description’ => ‘Shows the widgets on the bottom area of the business page.’,
‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ‘</aside>’,
‘before_title’ => ‘<h2 class=”business-page-widget-title”>’,
‘after_title’ => ‘</h3>’,
) );
register_sidebar( array(
‘name’ => __( ‘Footer Left Sidebar’, ‘thbusiness’ ),
‘id’ => ‘footer-left’,
‘description’ => ”,
‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ‘</aside>’,
‘before_title’ => ‘<h2 class=”footer-widget-title”>’,
‘after_title’ => ‘</h3>’,
) );
register_sidebar( array(
‘name’ => __( ‘Footer Mid Sidebar’, ‘thbusiness’ ),
‘id’ => ‘footer-mid’,
‘description’ => ”,
‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ‘</aside>’,
‘before_title’ => ‘<h2 class=”footer-widget-title”>’,
‘after_title’ => ‘</h3>’,
) );
register_sidebar( array(
‘name’ => __( ‘Footer Right Sidebar’, ‘thbusiness’ ),
‘id’ => ‘footer-right’,
‘description’ => ”,
‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ‘</aside>’,
‘before_title’ => ‘<h2 class=”footer-widget-title”>’,
‘after_title’ => ‘</h3>’,
) );
}
add_action( ‘widgets_init’, ‘thbusiness_widgets_init’ );I hope that fixes things. If you have any further advice, I would welcome it. Thank you so much once again.
Very best regards,
JenForum: Fixing WordPress
In reply to: Change Widget Headings from H1 to H2 through H6I think I might have found it. There is one called ‘Theme Functions’. I’ll have a look in there and get back to you.
Forum: Fixing WordPress
In reply to: Change Widget Headings from H1 to H2 through H6Hello again WP Gurus,
I hate to be the bearer of bad news, but on our Template there is no ‘functions.php’. There is on called ‘widgets.php however. Should I go in there? I must admit I am a bit afraid to take any steps because I have little knowledge of what I am doing. Any assistance you can offer would be greatly appreciated. Thank you.
Best,
JenForum: Fixing WordPress
In reply to: Change Widget Headings from H1 to H2 through H6Thank you very much for your speedy reply WP Gurus. Hopefully I can follow your instructions and I will be able to give that a try. Have a good day and thank you again.
Best,
Jen