ryans149
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: API to Submit Article?First of all, very good initiative.. 🙂
FYI, there are some weblog clients(softwares like outlook) who publish posts. You can take a reference here:
http://codex.wordpress.org/Weblog_Client
Also, there are some API’s in your wordpress installation. wp-config.php file. You can make a use of them
Forum: Fixing WordPress
In reply to: Elegant Theme issuesI have never used that theme, so cant say..
But just make sure there is no free space before and after the function call the_content_limit()Also, if it is paid, you can consult Elegant themes
Forum: Fixing WordPress
In reply to: can’t automatically upgrade from 2.8 to 2.8.1Automatic upgrade does not work on all the servers. Sometimes, it does not work at all..
So its better to install automatically..
Forum: Fixing WordPress
In reply to: extra line after http://can you provide the exact URL??
Also, what is in your .htaccess file? Also, you remove it, how???
Forum: Fixing WordPress
In reply to: WordPress redirecting website unintentionally?go to Settings –> General
Enter the BLOG URL with www
Forum: Fixing WordPress
In reply to: Show post in random orderyou can do this for any page (page.php, archive.php, archies.php). Steps are same..
Forum: Fixing WordPress
In reply to: Page doesn’t display Affiliate adsIs it Javascript and you are adding them to your page as contents?? No, it will not work.
Add the code in your page template..
Forum: Fixing WordPress
In reply to: upgradingAutomatic upgrade does not work on some servers (I still dont understand why). In any case, manuall upgrade is always suggested.
Follow the steps provided by Kichu and then restore the wp-content folder..
Forum: Fixing WordPress
In reply to: How to create a page showing categorized linksI think you want to create something like this:
check this tutorial:
http://dodesign.us/blog/create-a-custom-sitemap-for-wordpress/
or this:
http://sebastians-pamphlets.com/free-wordpress-add-on-categorized-sitemaps/
Go to your themme’s folder and open index.php.
You will find this tag:
the_content();Replace this tag with:
the_excerpt();That’s It!!
Comparison of the_excerpt() vs. the_content()
Sometimes it is more meaningful to use only the_content() function. the_content() will decide what to display according to whether <!–more–> tag was used.
<!–more–> tag splits post/page into two parts: only content before the tag should be displayed in listing.
Remember that <!–more–> is (of course) ignored when showing only post/page (singles).
Forum: Fixing WordPress
In reply to: How can separate article links by categoriesThere are three categories: Information’ Category, E-Lottery Affiliates and VWD Articles.
Your drop down menu seems to be working fine. What’s the issue?
Forum: Fixing WordPress
In reply to: Extra “0” at the bottom of Archive listvery strange issue!!
But check your sidebar.php and check the function call for archives. Also refer this:
Forum: Fixing WordPress
In reply to: Changed Domains, how do I login?You can do that using an FTP and SQL restoration..
you can manage the URL from database as well.. Go to wp_options table.. and see the siteurl field.