Rajat Chodhary
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Child theme not appearing in themes optionsHello,
You code is working fine on my wordpress installation. You need to check for permission on your folder over server. If your is addressed as broken theme. Then, follow these simple steps.- Delete theme from your webserver using any mean FTP or Web based file manager.
- Go inside of folder where you are developing your theme. Select all file and compress it with .zip extension.
- Then, upload theme on you webserver using theme. Dashboard inbuilt theme installer.
- It will automatically in copy to your wordpress installation, to fulfil dependency of child theme. Otherwise, you will have to do on your own
Forum: Installing WordPress
In reply to: Site not on WordPress but on Local HostWell,
you have backup of your website at local enviornment. That is good, keep it a good place or other drive.
Here are some links that will be helpful to you.
https://codex.www.ads-software.com/Moving_WordPress#Moving_WordPress_to_a_New_Server
https://www.wpbeginner.com/wp-tutorials/how-to-move-wordpress-from-local-server-to-live-site/
I hope you will solve your problem.Forum: Fixing WordPress
In reply to: from text-align: justify to text-align: leftHello @gunter,
Replace this code with the previous one. It will make change only to your categories.div.categories .widget-wrap.widget-inside { text-align: left; }
Forum: Fixing WordPress
In reply to: from text-align: justify to text-align: leftDefinitely, you are not going to find anywhere in you theme. It is actually coded for you after looking in three different page. That’s why I asked you to post at the end of you stylesheet file.
I checked my self – it is working fine, and falls around line 1286.
PS I am still enjoying your posts. Keep them coming.Forum: Fixing WordPress
In reply to: from text-align: justify to text-align: leftHello @dave Naylor,
@barbapapa just want to make change for their categories list.Forum: Fixing WordPress
In reply to: from text-align: justify to text-align: leftHello sir,
All you want to change alignment for your categories. If that so, follow these simple steps:- log into your wordpress dashboard, and go to Appearance > Editor.
- On the Right hand side, you will file an option to select theme. Just select active theme (You can find your acitve them by click on Appearance. First theme in list is your active list).
- When your active theme is loaded. Just below that selection, you will find a list of files, and a file at it’s bottom say Stylesheet (style.css).
- Click open that file. Go to its bottom, and paste following code in and click update
.widget-wrap.widget-inside { text-align: left; }
- Remember: You editing will be removed as soon as theme get update.
I hope this snippet will solve your problem.
Forum: Installing WordPress
In reply to: Cannot install wordpress. Get the following message.Hello Dremotion,
I don’t know what this tutorial explained. But, I am pretty sure that your wp-config.php file not configured with proper credentials.- Go to your hosting account, and in Database section –
Check your server, database, username, password. Write it down on a paper or create a text file for it. - Using any free FTP client (like filezilla), download your wp-config.php file on your desktop.
- Open wp-config.php in a text editor, and make change related values for your database
define( 'DB_NAME', 'database_name_here' ); define( 'DB_USER', 'username_here' ); define( 'DB_PASSWORD', 'password_here' ); define( 'DB_HOST', 'server_name_here' );
- After editing your wp-config.php, using FTP client – upload back to your webserver
I hope your wordpress installation will be up and running this way.
Forum: Installing WordPress
In reply to: problem loading wp site after moving from subfolder to rootHello Axiom,
You can do it using any FTP client (like Filezilla). Use your FTP credentials for connecting to your server.Forum: Installing WordPress
In reply to: Repeating Items in the Menu- Login into your dashboard
- First, add a new page and give it a title blog. Don’t write anything in content area.
- Go to General > Reading.
- In reading settings, you will find front page displays.
- You will find two options, 1 is your latest posts and 2 is A Static page (Select below).
- You need to opt for A Static Page and specify it as your home page.
- Select nothing for post page, you need to select Blog (which you have create).
- Click Save changes.
If you are talking about WordPress Application for Android. I have just tested, and it works well (for self hosted on sub-domain). I don’t have any wordpress.com hosted account.
Forum: Fixing WordPress
In reply to: Menu – Home Page- Login into your dashboard, go to General > Reading.
- In reading settings, you will find front page displays.
- you will find two options, 1 is your latest posts and 2 is A Static page (Select below).
- You need to opt for A Static Page and specify it as your home page.
- Select nothing for post page, and leave it.
- Click save changes.
For second page, use menus.
Forum: Installing WordPress
In reply to: Feedback Button UDESIGNWhat is your website URL?
Now, it is working now. At that time, I tried many time to download your plugin by clicking “Download Version 1.3.3”, and failed.
Thanks for your time.
Forum: Themes and Templates
In reply to: Remove add to cart text from templateThe code above will remove Add-to-cart from every single page.
You want to go CSS way. Then, put following line of code at the end of your style.css ie stylesheet file.a.single-addtocart { display: none !important; }
Forum: Installing WordPress
In reply to: Repeating Items in the MenuHello Bellisama,
- Login into your dashboard, and go to Appearance > Menus.
- All menu-items is represented as tab in column.
- On the right hand side, you will find an arrow beside “Page” which pop-opens that menu-item.
- At lower left corner, you’ll find remove.
- Click away all un-necessary home links.