Vignesh Pichamani
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: different users login in same desktop, simultaneouslyI am not sure.
I think this way you can login simultaneously.
Create different user or register user then you can access the site simultaneously.In this also if the different user has editing the same post you get a lock screen saying this user has editing like this . This one is applicable in the recent version of wordpress
Forum: Fixing WordPress
In reply to: Sub-menu not showingMake sure to check the menu you are properly called or not.
Please go to the
Admin Dashboard then
Themes->Menus
In that you can set the menu with submenu like drag and drop and after that make sure you are entered the menu name or not
Then click the next tab as manage locations
In that you can see the drop down to select the menu you are named in previous tab.
then save changes after check it is appear properly or not in your site.
Let me know if it all works fine.Thanks,
vickyForum: Fixing WordPress
In reply to: How to Create a blog in wordpress@dnyanesh WordPress Plugin is to add the additional functionalities or enhancement to the blog. Not to create the Blog.
http://codex.wordpress.org/Getting_Started_with_WordPressForum: Fixing WordPress
In reply to: How to list child pages??<?php global $post; $children = wp_list_pages('title_li=&child_of='.$post->ID.'&echo=0'); if ($children) { ?> <ul> <?php echo $children; ?> </ul> <?php } ?>Try this hope it may work.
Forum: Fixing WordPress
In reply to: Big ErrorDeactivate your Plugin and check if the same problem persist.
Without Providing your site link, we can’t help you in much way of assist.Thanks
Forum: Fixing WordPress
In reply to: Update 3.6 and jqueryI think it is because of directly call the jquery library from google api. I think some of the plugin has using the jquery api instead of using default library in wp-includes folder.
This is the actual problem i face too in my site but not now.Forum: Fixing WordPress
In reply to: Site Logo not showinghtml5 is supported only version 9 or greater in internet explorer.
Add this following code in the
<head></head>tag.<!--[if lte IE 8]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]-->It may work.
Thanks,
vickyForum: Fixing WordPress
In reply to: How to remove grey box around imagesOh Sorry.
You could remove the same background in line 172 and 354Thanks.
Forum: Fixing WordPress
In reply to: How to remove grey box around imagesHi, In your Style.css (themes/canvas/style.css) go to line 354 and comment/remove
background: none repeat scroll 0 0 #F8F8F8;this alone..entry .wp-caption { background: none repeat scroll 0 0 #F8F8F8; border: 1px solid #E6E6E6; border-radius: 3px 3px 3px 3px; box-shadow: 0 0 1px 1px #FFFFFF inset; padding: 1px; text-align: center; }to
.entry .wp-caption { border: 1px solid #E6E6E6; border-radius: 3px 3px 3px 3px; box-shadow: 0 0 1px 1px #FFFFFF inset; padding: 1px; text-align: center; }That’s all. .
Forum: Fixing WordPress
In reply to: Spurious text above page headerI think your site has getting hacked.
You need to start working your way through these resources:
http://codex.wordpress.org/FAQ_My_site_was_hacked
http://wordpress.org/support/topic/268083#post-1065779
http://smackdown.blogsblogsblogs.com/2008/06/24/how-to-completely-clean-your-hacked-wordpress-installation/
http://ottopress.com/2009/hacked-wordpress-backdoors/Additional Resources:
http://sitecheck.sucuri.net/scanner/
http://www.unmaskparasites.com/
http://blog.sucuri.net/2012/03/wordpress-understanding-its-true-vulnerability.html
Hardening WordPress
http://www.studiopress.com/tips/wordpress-site-security.htmForum: Fixing WordPress
In reply to: wp-admin shows a blank screenRename the Plugin Folder via FTP or CPanel.
wp-content/plugins to wp-content/plugin_old and check if the same problem persist.Forum: Fixing WordPress
In reply to: How to get variable from another function?Make that variable as global here is the tutorial to do this http://codex.wordpress.org/Global_Variables
Forum: Fixing WordPress
In reply to: admin page not foundRead out this tutorial here
http://codex.wordpress.org/Changing_The_Site_URLForum: Fixing WordPress
In reply to: admin page not foundHi I just saw the admin page in here.
Forum: Fixing WordPress
In reply to: Pages with duplicate title tags due to changing in permalinksSee you didn’t find out the result as soon as changes made in permalink. Google Spider has crawl a millions of website a day. It take time to index your site. If the title tag in duplicate, then you could wait until the google reindex your site.
I am not Proficient in SEO even though i feel the same problem in 4 month before. . . Not Now 🙂Thanks.