Radices
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal Error: Undefined functionI just saw this other thread that is similar to what your experiencing. It give good detail on the process.
https://wordpress.org/support/topic/cant-login-to-site-after-41-update?replies=6
Forum: Fixing WordPress
In reply to: Fatal Error: Undefined functionHi,
I can only suggest that you do a manual re-install of the 4.1 WordPress files. This is done using FTP or the File Manager in your Hosting Panel (Not the WordPress Dashboard).
DO NOT copy over the wp-content folder or wp-config.php file. This holds the sites content and configuration.
Forum: Fixing WordPress
In reply to: "Site not installed"There page indicates a Domain pointing issue … how is WordPress involved?
Forum: Fixing WordPress
In reply to: Posting shortcode syntax without executing itPerhaps you should make an image showing the code.
Forum: Fixing WordPress
In reply to: How Do I Create Child Theme (Plain Language, Please)I’m changing all my sites to use the newer method to enqueue the styles. I understand the @import would break some plugins/sites using JS / Jquery.
Forum: Fixing WordPress
In reply to: How Do I Create Child Theme (Plain Language, Please)This is my favorite method for creating a Child Theme. I believe it adds the style import line.
Forum: Fixing WordPress
In reply to: Remove Banner and Title From Homepage OnlyThat;s just the example using the WordPress is_home() key word to get you started.
You need to find where the banner and titles are being loaded and then wrap them in the conditional if statement.
If you post the header.php from your theme folder I’ll try to help you more.
Forum: Fixing WordPress
In reply to: Remove Banner and Title From Homepage OnlyYou will have to edit the header template.
<?php if ( is_home() ) { // This is the home page Don't show the title or Banner } else { // This is not the home page Show Banner and Title } ?>Forum: Fixing WordPress
In reply to: Deleting CatagoriesHi Kelly,
Are you able to edit the database directly with phpMyAdmin?
Forum: Fixing WordPress
In reply to: Dashboard Not LoadingDo you know how to do a manual update?
Forum: Installing WordPress
In reply to: Can WordPress Blog be Integrated with .Net Website?I think you might be in the wrong Forum. wordpress.org is Free and self hosted. WordPress.com is likely what you are speaking of.
Forum: Fixing WordPress
In reply to: Where to edit/remove source code?Look in Appearance > Widgets and see if there is any sections in there with it.
Forum: Localhost Installs
In reply to: WordPress 4.1 won't Install On Local MachineYou did not give the Database Users password.
Forum: Fixing WordPress
In reply to: Permalink Broken – 404 ErrorThis is a good write-up on these kind of issues.
http://websynthesis.com/fixing-wordpress-404-errors/
Really need to check the .htaccess file. I think its better to put it back to default permalinks and debug that first …then look at the rewrite rules and get the pretty links working.
Forum: Fixing WordPress
In reply to: Permalink Broken – 404 ErrorCan you post the URL please. Also can you post the contents of the htaccess file.
There seems to be a lot of Permalink issues lately. The standard debug methods is to disable all your plugins and test it. If it solves the issue then activate the plugins one at a time until it breaks again. Try a different theme is another step.