XenelSoft Technologies
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Non-Www Not Auto Redirecting To WwwBut when i Clicked the Url: http://doctorofcredit.com it is taking me to http://www.doctorofcredit.com.then what is the issue here?
Forum: Fixing WordPress
In reply to: error 504 in post editCheck the htaccess file is in place or not and increase the memory limit and then try.
Forum: Fixing WordPress
In reply to: Non-Www Not Auto Redirecting To WwwPlease check in admin->Settings->General:
WordPress Address (URL) and Site Address (URL) and add www in the URL.
Forum: Fixing WordPress
In reply to: Google not showing Yoast meta tagsIn your admin, go to Appearance > editor
On the right hand side, click header. phpFind </title> and add these 2 lines below this :
<meta name=”robots” content=”index, follow” />
<meta name=”robots” content=”NOODP” />and click update file.
Thanks.
Forum: Fixing WordPress
In reply to: Google not showing Yoast meta tagsIt may happen that google shows old meta tags of your website if you have recently updated meta tags. Just to make sure that Google picks up your meta tags,please add the following in header.php file of your theme:
<meta name=”robots” content=”index, follow” />
<meta name=”robots” content=”NOODP” />This will force all the bots including Googlebot to show the meta tags on your website.
Forum: Fixing WordPress
In reply to: Can't add new postThis is a very strange problem.Please check if you are using latest version of wordpress and update the plugins if you are using old versions.
Forum: Fixing WordPress
In reply to: Can't add new postAs you said,you were doing something in Settings. Probably you have changed permissions for admin user.Are you able edit a Post?
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Form name blankTo resolve this issue you can just add: html_name=”any-name-for-form” in your form shortcode.
For example: [contact-form-7 id=”894″ title=”Footer custom quote” html_name=”custom-quote-form” html_id=”contact-form-894″ ]This will assign name and id to your form and the error will be resolved.Let me know if this resolves your problem.
Thanks.
Forum: Plugins
In reply to: [Contact Form 7] Latest version breaks HTML5Yes Html5 validation check is showing this as error from some time for contact form 7 plugin. To resolve this issue you can just add: html_name=”any-name-for-form” in your form shortcode.
For example: [contact-form-7 id=”894″ title=”Footer custom quote” html_name=”custom-quote-form” html_id=”contact-form-894″ ]This will assign name and id to your form and the error will be resolved.Let me know if this resolves your problem.
Thanks.