CMSHelpLive
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can I have one theme active while customizing another theme?You can build your actual site in the subdirectory. After you are done with the development then you can move it in the root. This is the best to do.
Forum: Installing WordPress
In reply to: from wp.com to wp.org1. In WordPresss.com site’s go to Dashboard->Tools->Export. You can export all the content like pages, posts, comments, users into an xml file.
2. Now install a fresh WordPress. You can download it from WordPress.org site.
3. After installation goto Dashboard->Tools ->Import. Now import that xml file here. All the content from your blog will be imported into your WordPress site.
Forum: Fixing WordPress
In reply to: MenuI have visited your site. it seems fine. Is it resolved?
Forum: Installing WordPress
In reply to: Zip theme installation failureWhere did you get this zip theme file? Unzip that file and check if it contains the style.css file in its root.
Forum: Installing WordPress
In reply to: install wordpres pluginCan you be more specific what do you want to ask?
Forum: Localhost Installs
In reply to: Image not working when loading on wordpress localhostCheck the path of images, because currently images may have the url of server instead of localhost.
Forum: Fixing WordPress
In reply to: I want to create my own text headerindex.php file works for blog page. Put this title above loop in the indx.php file of your theme.
Forum: Fixing WordPress
In reply to: PLEASE HELP – Reverting Back from changes i madeEverytime you make change to any page, WordPress keep its older version in its revision, so that, you can revert it back, if you want.
Under page editor box, you can find revision of that particular page. Link in the above comment can help you.Forum: Fixing WordPress
In reply to: How to change the hyperlink color within posts onlyYou can use the parent class or id to change the hyperlink color of an particular area.
Like to change the hyperlink color of content area of blog page having class “page-id-12”, you can use the following css:.page-id-12 .content a{
color:give your desired color here;
}Forum: Everything else WordPress
In reply to: Hi is it possible to create aAdd the following code in your theme’s stylesheet. You can find it in wp-content->Themes->Flatty->style.css
.post-80 .media-heading{ display:none; }Forum: Fixing WordPress
In reply to: Need to Migrate to New ServerYou can give it a try. Every time, I use the same method to migrate site to a new server.
Forum: Fixing WordPress
In reply to: wordpressIt is not WordPress error. This belongs to server, contact them. They will resolve it for you.
Forum: Fixing WordPress
In reply to: Need to Migrate to New Server1. You can move your site to the new server without loosing anything, for this install BackUpWordPress Plugin to take a backup of your site:
https://wordpress.org/plugins/backupwordpress/After installing it,
a. Take a manual backup of the files and database both. Unzip this and move all the files to the new server.
b. Create an database and import the database from the unzip folder.
c. In the root you will see a wp-config.php file, Update database information in it.
d. In database, open wp_options table, update home and site_url information.
e. Re save your permalinks.Forum: Fixing WordPress
In reply to: Background image on a pageWhat i understand is to remove the white background and place the content on the white area on the background image. To do this please add the following css in your theme’s stylesheet:
.page-id-2 body.landline .wrapper{ background:transparent; box-shadow: none; }Have you changed the home and site_url in wp_options table of your database? If not then please do update it.