tomhanna
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: IE sidebar floating problemsTry changing
#content > #sidebar {
margin: 0px 20px 0px 10px;
float:right;
display:inline;
color:#fff;
list-style-type:none;to
#sidebar {
margin: 0px 20px 0px 10px;
float:right;
display:inline;
color:#fff;
list-style-type:none;And the same with
#content > #sidebar ul li
and
#content > #sidebar >
Forum: Fixing WordPress
In reply to: Multiple SidebarsChadwick is close, but you don’t need to modify any core files. You just need to follow the instructions in the Codex for Include Tags, specifically for “Including Any Template” on that page.
https://codex.www.ads-software.com/Include_Tags
If “sidebar_single.php” is in your theme directory, you should be able to use
<?php include (TEMPLATEPATH . '/sidebar_single.php'); ?>
Forum: Themes and Templates
In reply to: SIMPLE template-type themeCheck the Theme List on the Codex.
https://codex.www.ads-software.com/Using_Themes/Theme_List
And the Codex generally has lots of code examples for everything. You can take the examples, plug them in, break things, fix them and do what you like. Then if you decide you want it, the documentation is there to tell you what the code does.
Forum: Fixing WordPress
In reply to: Placing Adsense Skyscraper in KubrickOk, well, the simple answer is that while that looks like a Kubrick theme – it isn’t. AT least it’s seriously modified. It uses tables for placing content instead of straight CSS. The best suggestion I could give would be to look at the example you want to emulate. View page source?
Forum: Fixing WordPress
In reply to: Placing Adsense Skyscraper in KubrickKubrick is a pain in the rear to modify. You can put the skyscraper IN the sidebar by modifying the Sidebar template file. You can also put it in the post and wrap the post text around it (with a
<div style="float:right">
, for example).https://codex.www.ads-software.com/User:Tomhanna/Adding_Ads_to_Wordpress
Forum: Everything else WordPress
In reply to: Multiple blogs and sub domains2. Not only that but each installation requires one database each right? So if I want to set up 100 sub-domains I need 100 databases?
No. You can install multiple blogs on a single database. You just have to specify a different table prefix for each one in the database – the default prefix is “wp_”, so you might make them “blog1_”, “blog2_”, etc.
Forum: Themes and Templates
In reply to: edit free-site templates“If you are using wordpress.com or any of the WordPressMU driven sites, you cannot edit your Themes”
Actually, you can edit themes on Blogsome.
Forum: Fixing WordPress
In reply to: Multiple Sidebar ItemsEdit the Sidebar Template using standard HTML and CSS. Use PHP to include anything you want where that is required.
Forum: Plugins
In reply to: Looking for a list plugin.Right, that’s why I said leave the URL blank and create a separate category.
Forum: Installing WordPress
In reply to: database error… can you helpMaybe future versions should be setup to boldface
“If you’re unsure what these terms mean you should probably contact your host. “
Forum: Plugins
In reply to: Looking for a list plugin.I don’t know of a plugin, but I know another way to do this.
You could create a links category and simply leave the URL blank, or just link to your main page, then call just that category using wp_get_links in your sidebar.
https://codex.www.ads-software.com/Template_Tags/wp_get_linksForum: Plugins
In reply to: Help Needed Adding RSS feed to Front Page of SiteTry the CG-Feedread plugin. It can function standalone (without WordPress) using PHP. Mind you, I haven’t done it, but the instructions are included in the documentation.
Forum: Your WordPress
In reply to: Commenters website linkhttps://codex.www.ads-software.com/Template_Tags/comment_author_url
The example given is:
<a href="<?php comment_author_url(); ?>">Visit
<?php comment_author(); ?>'s site</a>Forum: Everything else WordPress
In reply to: Running WordPress with PHPsuexecAnd the correct file permissions for WP files are?
Forum: Fixing WordPress
In reply to: Two lists of pagesCreate a hierarchy of parent and child pages. The parent pages can be blank, they can be an index of the child pages or whatever works for you. Then do a separate instance of wp_list_pages for each parent page and us the child_of argument to show only the child pages for the particular parent you want to show.
child_of
(integer) Display only the subpages of the Page; use the numeric ID for a Page as the value. Defaults to 0 (display all pages).https://codex.www.ads-software.com/Template_Tags/wp_list_pages