plloi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: home tab is hilighted when it shouldn’tMaybe try something more like this?
<? $WeAreHere = $_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']); $TheForum = "mipages.net/forum"; $TheHome = "mipages.net/"; if ($WeAreHere == $TheHome) { $HomeClass = ' class="current_page"'; } elseif($WeAreHere == $ TheForum){ $ForumClass = ' class="current_page"'; } echo "<li" . $HomeClass . "><a title='Home'><span>Home</span></a>"; echo "<li" . $ForumClass . "><a title='Forum'><span>Forum</span></a>"; echo list_all_pages();?>
Forum: Fixing WordPress
In reply to: Making a Page appear instead of all my PostsIn the dashboard under settings–> Reading you can set Front Page to the created page of your choice.
Forum: Fixing WordPress
In reply to: [Plugin: Lifestream] Not getting Twitter feedYou might want to ask your host if they are blocking feed pulls though php, it’s a problem i’ve had in the past.
Forum: Fixing WordPress
In reply to: [Plugin: Lifestream] Not getting Twitter feedFor the first one try this instead:
https://twitter.com/statuses/user_timeline/captainnapalm.rss?page=1&count=20
And for the second replace https with http
https://twitter.com/statuses/user_timeline/17840669.rss
Forum: Fixing WordPress
In reply to: Cutomer support?All of wordpress’ content(Posts,comment,Pages) are stored in a SQL database. deleting the files won’t remove that part of the data
Forum: Fixing WordPress
In reply to: Add static content to the main homepageThis should point you in the right direction
https://www.ads-software.com/support/topic/192538?replies=6Forum: Fixing WordPress
In reply to: Stop page appearing in navigation.https://www.ads-software.com/support/topic/249070?replies=6
That topic should help
Forum: Fixing WordPress
In reply to: Add static content to the main homepageIn the dashboard under settings–> Reading you can set Front Page to the created page of your choice.
Forum: Fixing WordPress
In reply to: [solved]Make your homepage a pageIn the dashboard under settings–> Reading you can set Front Page to the created page of your choice.
Forum: Fixing WordPress
In reply to: Changing URL of page and blog- Ok Move wordpress to site root.
- Create a New Page called blog, leave Empty.
- In the dashboard under settings–> Reading you can set the Main wp index to your news page, then set Posts to blog.
- all that’s left after that is configuring your permalink structure.
Add you might find this pages in the docs useful https://codex.www.ads-software.com/Linking_Posts_Pages_and_Categories
Forum: Fixing WordPress
In reply to: Comments.php shrinks text in sidebar?np, Glad i could help
Forum: Fixing WordPress
In reply to: Comments.php shrinks text in sidebar?I’m Just looking at the rendered page HTML Output.
you might wanna disable that plugin or uninstall it, if that fixes te problem them problem solved, if not you can always put it back.Forum: Fixing WordPress
In reply to: Comments.php shrinks text in sidebar?Looks like the comment preview ajax script is interfering with it, I’m not sure where though…
/me starts poking a little deeper
Forum: Fixing WordPress
In reply to: Comments.php shrinks text in sidebar?Judging from the HTML Source of you page I’d say Your Comments.php template is missing a
</small>
tag on this line
<p><small><strong>Want a picture next to your comment?
looked at the page and the tag never closed. 98.4% sure that’s your problem.Forum: Fixing WordPress
In reply to: Adding a New Page Without a Tabdepend on your setup page id’s can be found 1 of 2 ways,
1. go to the page if the url looks like thisyoursite.com/blogifnotroot/?page_id=#
Then number is the Page id. This might not always display this way.2. go to the admincp, Click pages and select the page you want excluded.
yoursite.com/blogifnotroot/wp-admin/page.php?action=edit&post=#
. # is the page id.Hope this helps