Softcodelink solutions
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Editing Site Title & Tagline in Suits themeChange text “Your name” (bold in below code) to your name.
Replace old header.php code with this one.
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id=”main”>
*
* @package Suits
* @since Suits 1.0
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset=”<?php bloginfo( ‘charset’ ); ?>”>
<meta name=”viewport” content=”width=device-width”>
<title><?php wp_title( ‘|’, true, ‘right’ ); ?></title>
<link rel=”profile” href=”https://gmpg.org/xfn/11″>
<link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>”>
<?php wp_head(); ?>
</head><body <?php body_class(); ?>>
<div id=”page” class=”hfeed site”>
<header id=”masthead” class=”site-header” role=”banner”>
” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home”>
<h1 class=”site-title”><?php bloginfo( ‘name’ ); ?></h1>
<h2 class=”site-description”>Your Name </h2>
<h2 class=”site-description”><?php bloginfo( ‘description’ ); ?></h2>
<div id=”navbar” class=”navbar”>
<nav id=”site-navigation” class=”navigation main-navigation” role=”navigation”>
<h3 class=”menu-toggle”><?php _e( ‘Menu’, ‘suits’ ); ?></h3>
<?php wp_nav_menu( array( ‘theme_location’ => ‘primary’, ‘menu_class’ => ‘nav-menu’ ) ); ?>
<?php get_search_form(); ?>
</nav><!– #site-navigation –>
</div><!– #navbar –>
</header><!– #masthead –><div id=”main” class=”site-main”>
Forum: Fixing WordPress
In reply to: Plugin Updates – now posts appear w/error codesYou are most welcome… ??
Forum: Fixing WordPress
In reply to: Editing Site Title & Tagline in Suits themesend me your theme header.php . i will edit it and send you.
[moderator note: please do not ask for anything to be send to your – keep the support in the forum]
Forum: Fixing WordPress
In reply to: Plugin Updates – now posts appear w/error codesseems like your issue resolved…
Forum: Fixing WordPress
In reply to: Plugin Updates – now posts appear w/error codesdisable your all plugins and check it.
if issue still persists, try this procedure https://forum.bytesforall.com/showthread.php?t=21276
Forum: Fixing WordPress
In reply to: Plugin Updates – now posts appear w/error codesjust disable contact form 7 plugin and see…
Forum: Fixing WordPress
In reply to: My site disappeared when I changed nameClear old .htaccess code and add default wordoress .htaccess file, this will resolve your issue. if issue still persists contact Go daddy,,,it a seems like server issue (cgi is broken)
Forum: Fixing WordPress
In reply to: Problem Moving Site From Local to RemoteHope your website working fine now ??
Forum: Fixing WordPress
In reply to: Login page blankYes, its better to contact him, since you don’t have hosting login details or else contact your hosting provider to resolve this issue. The issue might be because of php version or crashed theme.
Forum: Fixing WordPress
In reply to: Login page blankAlso, let me know your hosting provider php version.
Forum: Fixing WordPress
In reply to: Login page blankSeems like your theme or plugin crashed…Hope I can help you.
enable error logs by using this method:
Login to hosting account
>>Go to Filemanger
>>>Go to website root folder.now you can find file name “wp-config.php” just click on edit. Make these change on the file code .
define(‘WP_DEBUG’, false);
to
define(‘WP_DEBUG’, true);
Make it as true, this will help us to find errors and give you proper solution.
Forum: Fixing WordPress
In reply to: Cannot log in via /wp-adminI had the same issue and resolved myself. Seems like your theme crashed.
Just enable error logs by using this method:
Login to hosting account
>>Go to Filemanger
>>>Go to website root folder.now you can find file name “wp-config.php” just click on edit. Make these change on the file code .
define(‘WP_DEBUG’, false);
to
define(‘WP_DEBUG’, true);
Make it as true, this will help you out to find errors.
Forum: Fixing WordPress
In reply to: Plugin Updates – now posts appear w/error codesLogin to hosting account
>>Go to Filemanger
>>>Go to folder name “Cat-Mews” next >> “wordpress” folder.now you can find file name “wp-config.php” just click on edit. Make these change on the file code .
define(‘WP_DEBUG’, true);
to
define(‘WP_DEBUG’, false);
Make it as false and let me know.
Forum: Fixing WordPress
In reply to: Problem Moving Site From Local to Remotejust upload filename “wp-settings.php” into folder “susanchi.com” . It will resolve your issue.
Forum: Fixing WordPress
In reply to: My website went blankI had the same problem, I resolved it myself using small .htaccess code.
Go to website filemager and edit .htaccess file with 2 these lines.
# Use PHP5.4 Single php.ini as default
AddHandler application/x-httpd-php54s .php