Renu Sharma
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Admin Panel Portion Not Working ProperlyYou need to update all plugins and theme as well.
Forum: Fixing WordPress
In reply to: Looking for this kind of sliderAre you looking like https://codemyui.com/pure-css-accordion-layout-hover-effect/ this?
Forum: Fixing WordPress
In reply to: Images randomly missing from Media LibraryHave you looked at the WPcontent/ upload folder from ftp? All the photos are there or not?
Forum: Fixing WordPress
In reply to: menu not showing on mobilePlease try this css code:
.navbar-toggle{
background: #000!important;
}Forum: Fixing WordPress
In reply to: Can’t login to Admin panel after migrating to new serverCould you please share your site url?
Forum: Fixing WordPress
In reply to: Admin Front end has lost its styleForum: Fixing WordPress
In reply to: Load code in the header of catogery, tag, archive pageCopy it in header.php
Forum: Fixing WordPress
In reply to: Admin Front end has lost its styleHow did you replace the site urls in the table for the new address? Are you able to login into wp-admin?
If yes you can use https://www.ads-software.com/plugins/better-search-replace/ this plugin to replace site url.
Forum: Fixing WordPress
In reply to: Redirect problems when logging in1. Clear Cookies to Resolve Login Issues
WordPress uses cookies for login authentication, so the first step in troubleshooting WordPress login issues is the simplest one. Clear your browser cookies and cache. Also make sure that your browser has cookies enabled. After doing that restart your browser and then try to login.2. Deactivate All Plugins
Connect to your web hosting using an FTP client. Rename /wp-content/plugins/ directory to plugins_backup.3. Revert Back to the Default Theme
Connect to your website using an FTP client. Go to /wp-content/themes/ directory and rename your current theme directory to anything.Forum: Fixing WordPress
In reply to: Can’t login to Admin panel after migrating to new serverJust create a new user using database query directly in database.
Below is the code to create a new admin account named newadmin with the password pass123. Note: We assume your database wp prefix is default.
INSERT INTO
wp_users
(user_login
,user_pass
,user_nicename
,user_email
,user_status
)
VALUES (‘newadmin’, MD5(‘pass123’), ‘firstname lastname’, ’[email protected]’, ‘0’);INSERT INTO
wp_usermeta
(umeta_id
,user_id
,meta_key
,meta_value
)
VALUES (NULL, (Select max(id) FROM wp_users), ‘wp_capabilities’, ‘a:1:{s:13:”administrator”;s:1:”1″;}’);INSERT INTO
wp_usermeta
(umeta_id
,user_id
,meta_key
,meta_value
)
VALUES (NULL, (Select max(id) FROM wp_users), ‘wp_user_level’, ’10’);Forum: Fixing WordPress
In reply to: Load code in the header of catogery, tag, archive pageBelow code should work for you.
<?php if ( is_front_page() ){ ?>
<style id=”above-the-fold-css”>
Custom CSS1
</style>
<?php } elseif ( is_page( ’14’ )) { ?>
<style id=”above-the-fold-css”>
Custom CSS2
</style>
<?php } elseif ( is_archive()) { ?>
<style id=”above-the-fold-css”>
Custom CSS3
</style>
<?php } elseif ( is_category( ‘1’ )) { ?>
<style id=”above-the-fold-css”>
Custom CSS4
</style>
<?php } elseif ( is_tag(‘hentry’)) { ?>
<style id=”above-the-fold-css”>
Custom CSS5
</style>
<?php } elseif ( is_search()) { ?>
<style id=”above-the-fold-css”>
Custom CSS6
</style>
<?php } elseif ( is_single()) { ?>
<style id=”above-the-fold-css”>
Custom CSS7
</style>
<?php } ?>Forum: Fixing WordPress
In reply to: Admin Front end has lost its styleIt seems migration is not done properly and files are missing on new server.
How did you migrate the site? Which tool did you use?
Please make sure the backup files are complete.