mojowill
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Site has disappeared!!There doesn’t appear to be any DNS for your domain name. It is pointing to a Nameserver however no A records are returned. I would contact your host certainly not a WordPress issue.
Forum: Fixing WordPress
In reply to: Password reset has been sent to wrong e-mail address?Forum: Fixing WordPress
In reply to: Cannot remove share buttonsIt could be that your theme has sharing buttons hard coded in and is not part of a plugin.
Forum: Fixing WordPress
In reply to: increasing memory size for a beginnerFirstly if you are a complete beginner then you should be NO WHERE near your php.ini. Leave your server configuration to someone who really knows what they are doing.
Secondly you shouldn’t have to make changes to your php.ini you should be able to jsut place overrides in your .htaccess depending on your server settings.
See about .htaccess overrides: https://roshanbh.com.np/2008/01/uploading-larger-files-in-php.html
Thirdly after making changes to your php.ini you will need to restart apache for changes to take effect.
More help can be found here: DO NOT FOLLOW METHOD 1, you should never override server settings in a theme!
https://www.wpbeginner.com/wp-tutorials/how-to-increase-the-maximum-file-upload-size-in-wordpress/
Forum: Fixing WordPress
In reply to: hide post titlesAh ok dumb moment that is a HTML comment to comment out php you use
//
So it should read
<?php //the_title();?>
Or you can simply delete it all.
Forum: Fixing WordPress
In reply to: hide post titlesIt looks like the_title() is already commented out so shouldn’t be showing. The second bit of code you showed is merely the link to the article.
You should have a title though I really couldn’t think of any reason not to have one? Google does require a title at the very minimum.
Forum: Fixing WordPress
In reply to: Register users without password by emailA plugin is not really the answer here. If you hosting cannot send emails they should either address that or you should find a new host. Alternatively you can just tell WordPress to use a SMTP server for emails instead of sendmail().
Forum: Fixing WordPress
In reply to: Post Will Not Show Up when Viewed Using Internet ExplorerFirstly it is not a WordPress problem, it is either a theme problem or an issue when creating your content.
Firstly you should address the 140 errors on your homepage
Validating your code goes along way to making sure that it will render correctly across all platforms.
You are running WP Super Cache which also can’t run correctly as you have errors in your theme. Simply looking at your Home Page Source code you can see this at the bottom.
<!-- Page not cached by WP Super Cache. No closing HTML tag. Check your theme. -->
Thirdly you are using WordPress 2.7.1 which is extremely outdated having been released in February 2009 the current version is 3.4.2.
Tidy up your theme and make it properly coded and think about upgrading your WordPress install then it might be a bit easier to help.
Forum: Fixing WordPress
In reply to: hide post titlesYou need to open up the template file in question and look for the the_title you can remove that to hide the title.
Forum: Fixing WordPress
In reply to: 500 Internal Server Error – after 2 days of down serverA 500 Internal Server Error normally relates to a problem with your htaccess file.
either make sure wp_debug is not set to true or disable PHP errors, these are not errors but warnings.
Firstly WOW. Really no need to post the whole thing here. These aren’t technically errors only notifications the plugin will still work and you should just make sure errors are suppressed on your production site.
Forum: Themes and Templates
In reply to: PHP variable as css valueYour pretty much there just make sure it’s inside your loop and you will get a different number.
Forum: Themes and Templates
In reply to: PHP variable as css valueand is this css inline in your template? It obviously wouldn’t work in your style.css but could work if you make it inline.
Forum: Themes and Templates
In reply to: For Premium Themes, Is a Child Theme Required?Usually with premium themes it is best to put any changes in a child theme so that they dont get overwritten if and when they release an update.