• I’ve noticed a few problems with categories in Arthemia. This is the site I’m fussing around with: https://amyrobinson.net/followfocus/.

    1. I don’t seem to be able to change the categories in the Browse Categories bar in the middle of the front page. I’ve tried editing the Category IDs in the following section in index.php, but it seems to be using the original ID selections:

    <div id=”middle” class=”clearfloat”>
    <img src=”<?php echo get_option(‘home’); ?>/wp-content/themes/arthemia/images/category.png” class=”clearfloat” alt=”” />
    <?php $display_categories = array(5,6,7,23,1); $i = 1;
    foreach ($display_categories as $category) { ?>

    2. The “Contributors” list seems to be pulling its data from one category only, not from all categories. In addition, when I click on “Next Page,” it takes me to a page generated from only one category, not all categories and it’s the same category as the category being used for the “Contributors” list.

    Any thoughts?

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hiya (O:

    If you go into Categories and place your mouse over the Category names you want to appear in ‘Browse Categories’, you will see their ID show up as the last four characters in the staus bar at the bottom of the browser, i.e., ID=13.

    https://www.myblog.me/wordpress/wp-admin/edit-tags.php?action=edit&taxonomy=category&post_type=post&tag_ID=44

    For example, my numbers are (11, 5, 26, 27, 13). The categories are assigned numbers automatically when you create them, so they are random numbers, and the Author of the template could probably make a few adjustments to his site to explain this.

    Anyhoo, I hope that helps (O:

    Thread Starter dustyalr

    (@dustyalr)

    Thank you.

    I did actually manage to figure out that first one, but I’m still stuck on #2. I came up with a workaround for the “Contributors” list issue, but the “Next Page” problem persists. And, just to clarify, the “Next Page” issue is for the “Next Page” button on the front page only. It seems to be pulling from one randomly selected category and I want all posts from the website to be pulled together.

    I have a problem with mine NOT LINKUNG to the categories themselves. I can never find this code:

    <div id=”middle” class=”clearfloat”>
    <img src=”<?php echo get_option(‘home’); ?>/wp-content/themes/arthemia/images/category.png” class=”clearfloat” alt=”” />
    <?php $display_categories = array(5,6,7,23,1); $i = 1;
    foreach ($display_categories as $category) { ?>

    in my index.php file or elsewhere. the most i get is:

    ———————————————————–start

    <div id=”container”>
    <?php get_header(); ?>
    <div id=”posts”>
    <?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
    <div class=”post” id=”post-<?php the_ID(); ?>”>
    <h2>” title=”<?php the_title(); ?>”><?php the_title(); ?></h2>
    <div class=”date”>
    <?php the_time(‘F j, Y’); ?>
    <?php edit_post_link(‘Edit’, ‘ | ‘, ”); ?>
    </div>
    <div class=”tags”>
    <?php the_tags(‘Tags: ‘, ‘, ‘, ”); ?>
    </div>
    <div class=”entry”>
    <?php the_content(); ?>
    <div class=”commentbubble”>
    <?php comments_popup_link(‘0′,’1′,’%’) ?>
    </div>
    <p class=”postmetadata”>
    <?php _e(‘Filed under:’); ?>
    <?php the_category(‘, ‘) ?> <?php _e(‘by’); ?> <?php the_author(); ?>
    </p>
    </div>
    </div>
    ————————————————-end
    andm I am pretty lost, I just need to change ID numbers and that’s it.

    Hiya DustyALR and FF0077 (Neat colour by the by – I’m more of a C10003 fan myself…)

    @dustyalr – I’m not sure what is going on there. I’m still poking my way around this new theme. That said, mine seems to wok fine, which doesn’t help you I know. I’ll have a bit more of a gander and get back to you if I think I can advance your cause.

    @ff0077 – That index.php code of yours just seem plain wrong for an Arthemia one (O: There is no id, class or style for “container” in my version. No wonder you cannae fins it.

    What version of the Arthemia theme have you chosen? That could be the issue. I’m using Arthemia v.2 – so maybe that could be the issue.

    What text editor are you using (Notepad, Aptana, Coda?)?

    Arthemia Premium 1.0 by Michael Jubel Hutagalung or at least that’s what it says.
    Thank you.

    Coda, that’s what I use.

    Hallo FF0077 (O:

    Might I suggest you upgrade to version 2, as the author/creator has updated to version 2.0 and has fixed many of the issues that were problematic.

    Install the new updated theme, and then see what hasn’t been fixed. Be sure to make a back up of all of your current settings in CODA, in fact, I’d suggesting creating a duplicate site and putting a fresh install on your server in a separate folder.

    See how you go (O: I hope that helps…

    thanks, im trying to fix this with the version yu’re talking about. though i do not see this Arthemia Control Panel close to the editor
    we’ll see

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Arthemia Category Problems’ is closed to new replies.