cdhishna
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [WEN Corporate] Menu problem – duouble navigationTry and add this to your css file
.entry-header { display:none !important; }
Forum: Fixing WordPress
In reply to: Getting this when trying to updateYour update.php file may have been compromised. Download the update/php file from www.ads-software.com manually and then update it on your server. That might help
update.php file is in wp-includes
Forum: Fixing WordPress
In reply to: Working off-line or via a HostHi Mike,
It’s more about your preference.
Working locally will be faster and it will be much easier for you to edit code since you can edit them in your preferred editors.
Also you can work offline and don’t have to rely on your internet connection.However, you might face some issues in transferring the site from local to live environment. Also, you might come across small bugs on the live environment compared to XAMP/MAMP.
Bottom line – If you are going to edit a lot of code, you might want to start locally. If you are completely new, transferring will be a pain hence go for a live environment. Hope that helps!
Forum: Fixing WordPress
In reply to: mysql error messagesHi kjellmyhrer,
Did you update WP recently? I did see a few people facing errors with Easy contact forms after the update. You can disable the plugin via FTP and then check if you still face the issue
Forum: Fixing WordPress
In reply to: pug insWhich plugin?
Forum: Installing WordPress
In reply to: Moving from WordPress to GoDaddyWere you able to move it successfully?
Forum: Installing WordPress
In reply to: Self Host import xml problemDid you get it working?
Forum: Installing WordPress
In reply to: Connecting WP to database file from hostPost the error
Forum: Your WordPress
In reply to: Your reviews please!Your CSS isn’t loading right.
Here’s a screenshot (available for 3 days)
Forum: Installing WordPress
In reply to: Creating Database without tablesAre you sure the database name and one in the wp-config.php are same?
Check for thatForum: Fixing WordPress
In reply to: Lost passwordYou can access your database from your hosting. Which hosting are you using?
Forum: Fixing WordPress
In reply to: new pages won't load after 3.9 installCan you post the url where this is happening?
Forum: Fixing WordPress
In reply to: How do You Turn off New Drag and Drop Image FeatureNot sure whether you can disable it or not.
You can insert image by link from “Add Media” only.
To view the pixel size of your images, go to “Text editor”
This is how the image code looks like:
<img class=”alignnone size-medium wp-image-13506″ src=”https://yourwebsite.co/wp-content/uploads/2014/04/lb1.png” alt=”lb1″ width=”540″ height=”347″ />
you need to change the highlighted text to what you need.
Forum: Fixing WordPress
In reply to: www.ads-software.com BLOG and BLOG POSTS not showing on Google Index1) For your Gravatar pic, check this:
https://www.wpbeginner.com/wp-tutorials/how-to-change-the-default-gravatar-on-wordpress/2) For Google indexing, you will have to submit your website. Login to your Google account (create 1 if you don’t have it), Go to https://www.google.com/webmasters/tools/submit-url and submit your blog.
Also follow as many steps as possible from this:
https://www.google.com/submityourcontent/website-owner/3) Your website has no SEO done. Install WordPress for Yoast, go through the basic tips on SEO and optimize each article.
4) Your blog has Jetpack installed so I am assuming it is connected to WordPress.com
If not, connect it so your posts appear there tooHope that helps.
Forum: Installing WordPress
In reply to: How can I get a Page splitted to two columns?You can use CSS to accomplish this:
In the text section of your editor, add this before your content
<style type="text/css"> #wrap { width:600px; margin:0 auto; } #left_col { float:left; width:300px; } #right_col { float:right; width:300px; } </style>
And then this is where content goes
<div id="wrap"> <div id="left_col"> content for column 1 </div> <div id="right_col"> content for column 2 </div> </div>
Ensure that the wrap width is equal to the total of two columns.
Alternatively, you can use plugins for this, one example is
https://www.ads-software.com/plugins/easy-bootstrap-shortcodes/If you are looking at a more elegant layout with the shortcodes, try
Shortcodes Ultimate or premium plugins like Shortcodelic or Styles with Shortcodes.