1

(94 replies, posted in Announcements)

Hey guys,

That was a long time since i didn't updated the theme, jsut moved to eth 1.5 and i LLLOOOOVVVEEE the multi categorie selection for the posts.

Thanks for keeping pushing it Zy !

2

(127 replies, posted in General Help)

Matto wrote:

Thanks Trouffman

I just checked the WPML blog and it looks like we won't have to wait for much longer.

Cheers

It's now okay ! Upgrade your WPML to 1.8.0 then create one menu per language smile this is a fix as now they plan to make it better soon wink

3

(127 replies, posted in General Help)

@Matto : This is because WPML still not support officially the multilingual custom menu. Basically jsut wait for the 1.8.0 version to be out soon for that support.

(I have a slighly different problem : menu isn't showing in my second language smile)

Enjoy !

Could you explain why you prefer doing that with a plugin ? smile

Wouldn't it be better to just have the arrastheme to allow some change like that (or a least look  in a config file for that Or execute a .phph file where we can put that ? big_smile)

I could test too wink (But no result untile June 18th - i'll be off for computex.)

5

(9 replies, posted in Feature Requests)

You're out sourcing the bug reporting into Google code wink great !

Gonna make it even faster to check the bugs ^^

Quel sont tes 2 phrases qui ne sont pas traduites ? smile la communauté peux trouver une solution.

7

(53 replies, posted in Announcements)

Thanks for the Update to 1.4.3.1 zy wink Gonna test and report  it !

8

(53 replies, posted in Announcements)

Hey Zy i got something weird while testing the 1.4.3

Here are the details :

Arras option : Home > Featured Posts > All categories selected. / node based / Post count = 3

I got All my sticky post to be displayed + Post Count - 1 wink

I mean i have all my sticky post showing there but seems like counted only as 1 in the post count. then i've "Post Count" less 1 displayed.

If 3 sticky post i have 5 node based (3 "sticky post" + "Postcount =3" -1) = 5



Enjoy wink

9

(53 replies, posted in Announcements)

great ! I gonna test it today wink

Certe 'Notre séléction' semble plus approprié.

Un post ou un billet wink le premier est admis généralement mais billet fait plus 'francophone'

11

(37 replies, posted in Announcements)

okay wanna investigate wink

12

(37 replies, posted in Announcements)

extatix wrote:

upload a picture to /arras-theme/images (in this code its called nothumb.jpg, but you can change that of course).

Open template.php.
Replace

         $thumbnail = get_post_meta($id, ARRAS_POST_THUMBNAIL, true);
        
        if (!$thumbnail) {
            return false;

with:

 $thumbnail = get_post_meta($id, ARRAS_POST_THUMBNAIL, true);
        
        if (!$thumbnail) {
        
        switch($size) {
                case 'sidebar-thumb':
                    $w = 36;
                    $h = 36;
                    break;
                case 'featured-slideshow-thumb':
                    $w = 640;
                    $h = 250;
                    break;
                case 'featured-post-thumb':
                    $w = arras_get_option('featured_thumb_w');
                    $h = arras_get_option('featured_thumb_h');
                    break;
                case 'news-post-thumb':
                    $w = arras_get_option('news_thumb_w');
                    $h = arras_get_option('news_thumb_h');                
                    break;
                case 'archive-post-thumb':
                    $w = arras_get_option('news_thumb_w');
                    $h = arras_get_option('news_thumb_h');                
                    break;
                default:
                    $w = get_option('thumbnail_size_w');
                    $h = get_option('thumbnail_size_h');
            }
            
            return get_bloginfo('template_directory') . '/library/timthumb.php?src=' . get_bloginfo('template_directory') . '/images/nothumb.jpg' . '&w=' . $w . '&h=' . $h . '&zc=1';

I don't think that's the "lightest" way, I just investigate and it's shouldl be better to do like this :

$thumbnail = get_post_meta($id, ARRAS_POST_THUMBNAIL, true);
        
        if (!$thumbnail) {
            return false;
        } else {

Replace with :

$thumbnail = get_post_meta($id, ARRAS_POST_THUMBNAIL, true);
        
        if (!$thumbnail) {
            $thumbnail =  get_bloginfo('template_directory') . "/images/nothumb.jpg";
        } 

13

(37 replies, posted in Announcements)

Code improvment possibility :

get_the_author_ID is deprecated since version 2.8! Use get_the_author_meta('ID') instead.

the_author_description is deprecated since version 2.8! Use the_author_meta('description') instead. 

__ngettext is deprecated since version 2.8! Use _n() instead. 

14

(37 replies, posted in Announcements)

Hey Zy,

I'm testing it by now smile

Default value for the Excerpt length should be set because beginner will never thought first to set that wink let's set it to 20 words by default ?
>> you restricting words.. but with long words that may result in buggy display also ^^

why not limiting the Nbr of Characters instead of words >> and check that a word don't get cutted big_smile ?

Suggestion : allowing a 'Default' Thumbnail tuo be displayed if there is no thumbnail selected ? (Better to allow choice for people to upload one ? )


EDIT :
I found a graphical bug when typing a search field some border are not there ^^

greta news wink subscribed !

16

(12 replies, posted in Announcements)

Thanks for this 'End of 2009 gift' ! Gonna test it in the upcomign few days (I just finishing tweaking the 1.3.6 version xD)