CMSHelpLive
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp-config.php 2 timesYes it is normal. No need to worry. Before installation there is only wp-config-sample.php file. wp-config.php file is created from wp-confi-sample.php after installation.
Forum: Installing WordPress
In reply to: WordPress 4.0It may be because of compatibility issue of WP 4 with any of your plugin. Un-install each plugin one by one and check which one is causing the problem.
Forum: Installing WordPress
In reply to: Adding second WordPress Site1. If you have you first site in a single folder then, its not an issue. You can simply add a separate folder for you new website.
2. If you have your first site in root, then you can do either of two things:
a) Create a new folder folder for first site, then move all the files related to first site into that folder. Accordingly you have to update home and site_url in wp_options tables of first site’s database.b) Or you can install in sub-directory of first site.
Forum: Themes and Templates
In reply to: Use php to align search box in nav?First thing you need to do is put the search button code outside the menus
<li> tag.</li>and then use float property of CSS to align it to the right.
[Moderator note: In future please wrap your code in backticks]
Forum: Themes and Templates
In reply to: Editing Menu ColoursTo change the box color when, when the hovered over text as following code in styelsheet:
.primary-navigation ul ul a:hover{ background-color:put your desired color code here; }To change the background-color of search box and following code in stylesheet:
.search-toggle{ background-color:put your desired color code here; }Forum: Themes and Templates
In reply to: Use php to align search box in nav?Please post URL of your site, only then we can help you out.
Forum: Fixing WordPress
In reply to: Admin DashboardIs there any other use also? Because i think your role as a user has been changed.
Forum: Installing WordPress
In reply to: Import issueTo import everything, you need to take the backup of your existing website. You can use BackUpWordpress plugin for that:
https://wordpress.org/plugins/backupwordpress/
After installing this plugin, you can follow these steps:
1. In dashboard, go to Tools -> Backups. Here you will find the setting option. Select “Both Database and File” option. And in “schedule“, select “Manual” option.
2. Take a backup and download it.
3. Unzip the backup zip folder and place it on your local server and rename it.
4. Create a database on local server and upload the .sql file from the unzip folder.
5.Look for wp_options table after you are done with database import. Change site_url and home_url.
You can read the below link to know about home and site_url
6. Look for the wp-config.php file on the root of the unzipped folder. Change database name, username, password, and host name.
Post this, you should have a working site on your localhost, and you may login using existing site credentials.
Forum: Installing WordPress
In reply to: Problem with backup wordpressWhen you re-install from backup you need to change the host name, username, password, database name in wp-config file. You can find the wp-config file in the root of your WordPress folder.
Also, if you will have to update the site_url and home url in wp_options table in database.
Forum: Everything else WordPress
In reply to: Change color post by CategoryIf you post the URL of your site then it will be helpful.
Forum: Fixing WordPress
In reply to: text only appears in full page width overlapping right sidebarYou can try to resolve the issue by adding the following code in stylesheet:
.site-main .sidebar-container{ position: relative; width: 30%; float: right; } #postbg{ width: 70%; float: left; }Forum: Fixing WordPress
In reply to: how to access my server via ftpTo access ftp, you need to have FTP client software like Filezilla or cuteftp on your machine. You will need host name(website domain name or IP address), username and password. Fill these details and you will get access to ftp.
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Getting rid of "Leave a Reply"No problem; enjoy WordPress.
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Getting rid of "Leave a Reply"1. In dashboard, select “Pages->All Pages”
2. There is “Quick Edit” option under page title.
3. Un-check “Allow Comment” option.
That should get you rid of “Leave a Reply” form.
Forum: Themes and Templates
In reply to: [Adaptive Flat] how to hide single page title homeIt will be helpful if you post the url of your site. May be this will help you:
.home #title-container{
display:none;
}