Wordpress and Webdesign Forum go41 » WordPress Code Snippets

  1. Dominik
    Member

    Hi,
    first thanks for the good support in this forum on adjusting the arthemia theme. I have recently installed it myself and now have a question that I am sure someone here can help me with: how can I change the presentation of the front page of the arthemia premium theme to only show in one column the latest posts? The premium theme automatically shows the latest post, followed by two columns on several rows.

    Thanks in advance!
    /Dominik

    Posted 1 year ago #
  2. I have no site running on Arthemia Premium, but this should be an option in the theme settings.
    in the theme files I can see this option under:
    Latest Post automated thumbnail will be hidden ...
    "Hide Post Excerpt"
    "Show Post Excerpt"
    "Show Two-Column List"
    "Show One-Column List" <- choose this option!!

    Posted 1 year ago #
  3. Dominik
    Member

    Joern,
    thanks for the reply. However, the setting options you mention do not appear anywhere in the theme files i have. Do you have any idea what php-files is in charge of this function, i.e. of the display of the front page of the arthemia theme?
    Thanks and all the best,
    Dominik

    Posted 1 year ago #
  4. in my copy of this theme I find in index.php:
    $column = get_settings ( "cp_status_Column" );
    if ( $column != "one" )

    following is the two column part, easy to see at:
    if( $odd = $i%2 ) { echo '<div class="clearfloat">'; }

    about 80 lines of code later comes the <?php } else { ?> statement, means if this cp_status_Column is set to one. Here the posts are in a div class="onecolumn clearfloat", just one column and no alternating left right switch.

    Theme settings are coded in functions.php.
    looking for cp_status_Column I came to the options I mentioned above.

    Your admin panel should look like this:
    http://colorlabsproject.com/wp-content/uploads/2008/08/theme_admin_panel.png

    Here I see under Front Page settings -> Column list -> dropdown selector 'Show Two-Column List' or 'Show One-Column List'.

    I would say choosing this will display posts in just one column

    Posted 1 year ago #
  5. Dominik
    Member

    Thanks Joern, this helped a lot!

    Posted 1 year ago #

RSS feed for this topic

Reply

You must log in to post.

Join us! or log in (lost password?):