adeelshahid
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: access /wp-admin/post.phpjust reset the permission on the post.php file and you shall resolve the problem
Forum: Fixing WordPress
In reply to: access /wp-admin/post.phphow can IFRAME cause this, i have a similar problem where IFRAME is not present anywhere in the post.
Forum: Themes and Templates
In reply to: New to WordPressyou need to edit the header.php file it will be located in
wp-content/themes/Ads Minded/header.php
let me know if it helps or pm me, I will do it for you.
Forum: Themes and Templates
In reply to: Setting theme width in the CSSin the write page,
check right column, there is Discussion box, expand it and uncheck the Allow Comments checkbox that should resolve the problem.
Forum: Fixing WordPress
In reply to: Adding New Pages w/o Date Showingis the page online, if it is then i would like to have a look at it.
Forum: Themes and Templates
In reply to: Setting theme width in the CSSnopes
let me know how it works out.
Forum: Themes and Templates
In reply to: Feed Errori can’t seem to read the chinese in the feed, but if you are using some audio or video content and want that to be part of your feed then you need to use
rss_enclosure();template tag inside your feed so that audio and video content is read correctly be the feed readers.Forum: Fixing WordPress
In reply to: Child page not visibleThe display of the pages depends upon the theme that you are using,
here is how pages are displayed.
wp_list_pages();in your theme that is active on the blog at the moment must have something like this in the code,
wp_list_pages('depth=1');you need to change that to
wp_list_pages('depth=0&title_li=');to correctly display child pages inside your pages menu.
Forum: Fixing WordPress
In reply to: Adding New Pages w/o Date ShowingYou can goto WordPress admin and goto,
Write > Page and make a page there,
from your above comment it looks as if you have created a Post in wordpress not a comment.
Forum: Fixing WordPress
In reply to: wordpress.com -> ww.wp.xz.cnOnce you are done with finding a host you may need to transform your content or old data from your previous blog to this new one, try this.
Goto WordPress admin,
goto Manage > Import and you’ll find there the option to import your old blog data to the new site.
If you need a wordpress theme made, i am feeling getting my hands dirty in making one for you. Just pm me to let me know.
Forum: Fixing WordPress
In reply to: My Feed is invaliduse
bloginfo_rss(‘charset’);
in your feed because that is the template tag used to retrieve the charset
utf-8
etc for your blog.
Forum: Themes and Templates
In reply to: Setting theme width in the CSSwhat i know of, if you need to make left and right column a certain size and let the middle column be of flexible width, then you got to use percentage for all 3 columns.
If you use px width’s for 2 columns and have the middle flexible it won’t work.
Either you have all the 3 columns px with defined width or you need to have all the 3 columns with a % width.
So that your blog layout does’nt break.
Forum: Everything else WordPress
In reply to: Changing Permalink Structure: Hurting Archived SEO?use this by going to the Options > PermaLinks inside the WordPress administration,
/index.php/%year%/%monthnum%/%day%/
Forum: Fixing WordPress
In reply to: Advice on how to edit the permalinks…if the above
/FolderName/%category%/%postname%/
did’nt work for the permalinks then try this below, i tested it b4e posting,
/index.php/%category%/%postname%/
Forum: Fixing WordPress
In reply to: Advice on how to edit the permalinks…go to Options > Permalinks inside your WordPress admin and write the above code my HandySolo to make custom url available inside your WordPress blog.