Forum Replies Created

Viewing 15 replies - 241 through 255 (of 350 total)
  • Would setting this up as categories work?

    Two top level categories:
    family
    work (or expertise, or …)

    The two URLs would go to the category pages. [If you have subcategories of each, then it might take some tweaking with the page templates – or not …]

    One question, though, is what do you want to have happen when someone goes to http://www.yourdomain? My guess is you’d want it to go to
    yourdomain/category/work

    Then you’d need to have another address you’d uses to go to the page that shows all the posts. So, I’d start out trying to set this up as

    Settings > Reading, check static front page and set
    Home Page – something whose template shows just the work posts
    Posts Page – the default blog page that shows all posts

    Then set up a “family” page with and appropriate link (maybe with a .htaccess redirect to take out the “/category/”) to show all posts in the family category.

    Hope that helps you think through the options.

    This sounds like

    http://ww.wp.xz.cn/support/topic/137716?replies=4

    You don’t say whether you’re using any role manager plugin (which was the case in the earlier thread), but if so, the fix there may work (if you haven’t moved long beyond this).

    Check

    http://ww.wp.xz.cn/support/topic/170694?replies=2

    I haven’t tested it (I got here and there looking up something else) but it seems to be an answer to your question.

    converting2wp

    (@converting2wp)

    Yes “!” is “not” and && is the logical AND.

    Note the new set of parentheses that group your original two conditions, so the flow is

    ( TEST1 OR TEST2) AND TEST3

    Thread Starter converting2wp

    (@converting2wp)

    Never mind. User error.

    converting2wp

    (@converting2wp)

    Looks like you got it working. If you didn’t have a .htaccess file in your WordPress directory, then you won’t need one in the folder above /wordpress. It’s index.php that does the magic.

    converting2wp

    (@converting2wp)

    Google Ajax Search is the only plugin I’ve seen that does that. But I haven’t tried it recently — http://ww.wp.xz.cn/extend/plugins/google-ajax-search/ says compatible to 2.2.

    converting2wp

    (@converting2wp)

    Dreamhost.com (one of the hosting options listed at http://ww.wp.xz.cn/hosting/) has recently started optionally setting up hooks for Google apps – calendar.domain.com, docs.domain.com, sites.domain.com, and start.domain.com – when you set up a domain that’ll be hosted at Dreamhost.

    The WordPress installation is still separate in the “main” domain. Does this sound like a good solution?

    converting2wp

    (@converting2wp)

    Skip WordPress for a bit.

    Until you can upload a file index.htm to the directory that the hosting service tells you is the “root” of your web site, and then browse to rootxperts.com and see that file, the rootxperts.com domain has not been configured correctly.

    Once you can do that, then look at WordPress.

    If you’ve already done that, look at http://codex.ww.wp.xz.cn/Giving_WordPress_Its_Own_Directory
    to see the instructions for the index.php file (delete the index.htm if you used the test above) that needs to live in the root of the web site. [You can skip steps 1 and 6 if you already have your files in the wordpress subdirectory.]

    converting2wp

    (@converting2wp)

    Is this what you mean?

    if ( (is_category('5') || in_category('5')) && !is_home() )

    converting2wp

    (@converting2wp)

    Moderator Otto42 says:

    Future versions of WordPress might not even support the manual sidebar.php approach anymore. You never know, after all.

    And what happens to footer.php, header.php, and the other places where folks might want to drop dynamic code? I tried widgets. They wouldn’t do what I wanted. I reverted to editing sidebar.php — using Template Tags which seems to me to be the right level of abstraction. (Or at least it’s a programming paradigm that seems natural to me, someone who’s been programming for 40 years but rarely builds anything –even a plugin or a widget — from scratch.)

    If the quote from Otto42 is a serious prediction, I’d suggest that this discussion be moved to a new thread.

    converting2wp

    (@converting2wp)

    Okay, back to the original question.

    If using Widgets –
    Go to Design Widgets SubPanel and select the ones you want. They’ll show up in the right side of that page and you can then drag and drop to put them in the right order. Some have configurable options to further customize them. Save the changes and your sidebar will be modified.
    See http://codex.ww.wp.xz.cn/Design_Widgets_SubPanel
    Note that there is a “Text” widget that will allow you to place HTML in the sidebar that may work for the links back to your main site.

    If you don’t want to use Widgets (and I agree that if you know PHP, they may be more trouble than they are worth):
    Be sure you’ve deleted all the Widgets in the SubPanel above.
    Then in the Design > Theme Editor SubPanel (or wherever else you found the header.php, footer.php, and other files) find the sidebar.php.
    You’ll find that it has the code that will generate the sidebar if you are NOT using widgets. Add your own navigation HTML there (maybe replacing the line
    <?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?>
    that WordPress would use to link to other WordPress Pages.

    Much of the code in the default theme’s sidebar uses Template Tags which are documented at http://codex.ww.wp.xz.cn/Template_Tags (if you *do* want to use WordPress constructs in the sidebar instead of just linking back to your main site).

    converting2wp

    (@converting2wp)

    In your CSS file, there are some lines:

    #sidebar ul li {
    	list-style:none;
    	line-height:1.6em;
    	font-size: 1.1em;
    }

    Change the 1.1em to change the size of the text on the right sidebar. [If you recently added those lists you may have changed things so that this rule is the one that takes precedence.]

    In your left sidebar (at this point anyway) you’ve got explicit font tags to set the size. If you changed your table in that sidebar to a list you could use the CSS rule above to apply to that sidebar too, and have an easier time keeping things consistent.

    CSS can be your friend — but it takes awhile to figure it all out.

    The validators at http://validator.w3.org/ and http://jigsaw.w3.org/css-validator/ can sometimes help figure out where things are going wrong. But the primary tool I used to look at your site was the Firefox Web Developer extension that offers tools to view and edit CSS markup.

    converting2wp

    (@converting2wp)

    I’d look at any code you added/changed in the sidebar.php that may have changed the HTML tags. You can also try running the XHTML and CSS validators (your theme may have links to those) which may help find errors that have been introduced.

    If you cant figure it out, please do post a link to your site so that someone else can see what you’re seeing and help track down the problem.

    Thread Starter converting2wp

    (@converting2wp)

    The report is out. They did include WordPress: there was a small (15) enthusiastic (overall grade A+) group of users referencing it.

    See more on the report. Report is free for NTEN members, $50 for others.

Viewing 15 replies - 241 through 255 (of 350 total)