Forum Replies Created

Viewing 15 replies - 31 through 45 (of 49 total)
  • Dans le panneau Admin:

    Options > Général

    Format de date par défaut : Y/n/j (vous pouvez changer pour ce qui vous plaît, allez consulter le lien ” fonction PHP date()” au besoin.
    Format d’heure par défaut : G\hi (la barre oblique inversée permet à PHP de ne pas interpréter le “h” pour heure.

    Dans votre template (je ne sais pas lequel vous utilisez, mais dans mon cas, il s’agit du fichier “index.php”), vous écrivez au bon endroit:

    <?php the_date(); ?> &agrave; <?php the_time(); ?>

    Thread Starter baudesign

    (@baudesign)

    > Merci absm

    Yea, I found the .po/.mo file, and I edited it with PoEdit. I wrote down protégé and not < code >prot& # 2 3 3 ;g & # 2 3 3;</ code > [the spaces are there to show the code ’cause bbPress was converting!] because it did not show correctly in the Firefox bar.

    I followed the suggestion found in this post:
    http://wordpress.org/support/topic.php?id=24029#post-136815

    At least now, the bookmarks are showing. But for some reason, now that WordPress converts our titles, my apostrophes apprear like in the bookmarks. Grrr… 1 step closer though.

    Thread Starter baudesign

    (@baudesign)

    Malheureusement… non. Rien ne fonctionne. 🙁 Thanks for the help. I will keep on testing and trying.

    Now, if anyone could tell me where this “protected” word is hiding within all those php files, it would be appreciated. The one that says that the post is being “protected” by a password.

    Thread Starter baudesign

    (@baudesign)

    > absm

    Yea! The problem seems to originate from the word “protégé”, the translation for “protected” when I protect a post with a password. I am trying to find this word to change it for &eacute;. But where is that word.

    …and why doesn’t it validate with the feed validator?

    Thread Starter baudesign

    (@baudesign)

    > Jinsan

    You say :

    The bottom left hand in yoru sidebar where you have those small images are rather low quality and very, very hard to read.

    I do not understand what you mean here. What small images are you refferring to? Can you tell me what browser you use, or better yet, send me a sceenshot at baudesign[at]gmail[dot]com?

    Thanks.

    =====================
    EDIT

    OH! I know what you mean. No, this is just a very compressed shot of the menu used on the old Flash Website. They are meant to be unreadable. When you click on this image, you are redirected to the old Website. 🙂

    Thread Starter baudesign

    (@baudesign)

    Thank you oriecat.

    Thread Starter baudesign

    (@baudesign)

    Solution found! (even though I do not understand)

    In my “header.php” I have this code:


    #headerimg h2 a:link, #headerimg h2 a:visited {
    width: 727px;
    position: relative;
    top: 0;
    left: 0;
    display: block;
    background: none;
    overflow: hidden;
    font-size: 1px;
    height: 0px;
    padding-top: 130px;
    }

    When I got rid of this line in the same php template file:

    <div class="description"><?php bloginfo('description'); ?></div> (this is the slogan)

    The problem was gone. It seems that the “padding-top: 130px;” had to do something with this. The padding could not flow OVER the slogan, so it shifted back up in the page… only with IE, do I have to say it again.

    Well, good night… 🙂 Mission accomplie!

    Thread Starter baudesign

    (@baudesign)

    dawg >

    Yes, you are right, this is the horizontal repeating image that makes the background of the #page element (background with side bar):

    #page {
    background: url("<?php bloginfo('stylesheet_directory'); ?>/images/bg_w_sb.gif") repeat-y top;
    border: none;
    }

    The problem with IE is probably caused by some margin or padding definition.

    Thread Starter baudesign

    (@baudesign)

    > vkaryl

    You have my permission to download and grab whatever you want. I will only keep the images for myself when the theme will be completed, and give the rest to the community. Of course. I will try to solve this thing tonight. And if I can’t do it, perhaps next Monday. Thanks for the help.

    As for the Header–Footer–Header mix, I must admit that it is not the most elegant solution. This is how it was done in the original template.

    I will try to put all the CSS in the “style.css” file at the end of the process, but the way Kubrick has been designed, most of the CSS was in the style sheet, but the CSS referring to the images was in the “header.php” template file:

    <style type=”text/css” media=”screen”>

    /* BEGIN IMAGE CSS */
    /* To accomodate differing install paths of WordPress, images are referred only here,
    and not in the wp-layout.css file. If you prefer to use only CSS for colors and what
    not, then go right ahead and delete the following lines, and the image files. */

    body { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbgcolor.jpg”); } <?php /* Checks to see whether it needs a sidebar or not */ if ((! $withcomments) && (! is_single()) && (! is_page())) { ?>
    #page { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbg.jpg”) repeat-y top; border: none; } <?php } else { // No sidebar ?>
    #page { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbgwide.jpg”) repeat-y top; border: none; } <?php } ?>
    #header { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickheader.jpg”) no-repeat bottom center; }
    #footer { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickfooter.jpg”) no-repeat bottom; border: none;}

    /* Because the template is slightly different, size-wise, with images, this needs to be set here
    If you don’t want to use the template’s images, you can also delete the following two lines. */

    #header { margin: 0 !important; margin: 0 0 0 1px; padding: 1px; height: 198px; width: 758px; }
    #headerimg { margin: 7px 9px 0; height: 192px; width: 740px; }
    /* END IMAGE CSS */

    /* To ease the insertion of a personal header image, I have done it in such a way,
    that you simply drop in an image called ‘personalheader.jpg’ into your /images/
    directory. Dimensions should be at least 760px x 200px. Anything above that will
    get cropped off of the image. */

    /*
    #headerimg { background: url(‘<?php bloginfo(‘stylesheet_directory’); ?>/images/personalheader.jpg’) no-repeat top;}
    */

    </style>

    Oh well, this is part of the fun! 🙂

    Thread Starter baudesign

    (@baudesign)

    vkaryl >

    in the “style.css” file:


    #page {
    margin: 61px auto;
    padding: 0;
    width: 747px;
    }

    … and in the header.php, Kubrick’s PHP trick:

    <?php /* Checks to see whether it needs a sidebar or not */ if ((! $withcomments) &&amp; (! is_single()) &&amp; (! is_page())) { ?>
    #page {
    background: url("<?php bloginfo('stylesheet_directory'); ?>/images/bg_w_sb.gif") repeat-y top;
    border: none;
    }
    <?php } else { // No sidebar ?>
    #page {
    background: url("<?php bloginfo('stylesheet_directory'); ?>/images/bg_wo_sb.gif") repeat-y top;
    border: none;
    }
    <?php } ?>

    Thread Starter baudesign

    (@baudesign)

    Sorry, I forgot to give a few hints (I am so tired!):

    Here is the code in the header.php template file:

    #header {
    margin: 0;
    padding: 1px;
    height: 141px;
    width: 745px;
    }

    #headerimg {
    margin: 7px 9px 0;
    height: 135px;
    width: 727px;
    }

    #headerimg h2 {
    margin: 0;
    }

    #headerimg h2 a:link, #headerimg h2 a:visited {
    width: 728px;
    position: relative;
    top: 0;
    left: 0;
    display: block;
    background: none;
    overflow: hidden;
    font-size: 1px;
    height: 0px;
    padding-top: 136px;
    }

    The idea is to make the whole header image clickable to get back to the home page, instead of just the title.

    Yes, these are indeed good questions. I want to contribute to the French Canadian translation of the files. I “registered” at the Launchpad (or whatever the name is).

    This is the answer I got in my email:

    Thank you for registering at The Launchpad. To complete your registration, please click on the link below and follow the instructions to create your account:

    https://launchpad.ubuntu.com/foaf/token [snip, snip, snip]

    The Launchpad is a web portal for open source developers that includes easy web based translation and bug management. We’ll be adding new features to The Launchpad based on your suggestions, so feel free to contact us on #launchpad on irc.freenode.net with ideas. Malone and Rosetta are just the tip of the iceberg 😉

    Thank you!

    The Launchpad SWAT Team
    launchpad@ubuntu.com

    And this is where I end up:

    Sorry, This Isn’t Ready Yet

    This part of Launchpad is not yet ready for use. It will be available to the public in due course.

    In the meantime, perhaps you would like to go to the parts of Launchpad that are ready.

    Back to Launchpad

    …when I follow the link.

    Can someone help me find the “team” that is working on the French Canadian version?

    Merci.

    Forum: Fixing WordPress
    In reply to: static pages

    Ok, I am just about to quit and forget about this “page” option.

    When I try to edit the Test “page” that I created (which points nowhere) by changing the “Page Template” (a drop down box option), my options are:

    Default Templates
    Archives
    Links

    Now, what are “Archives” and “Links” doing there? I should have had “Default” and “Classic”.

    Should me problem be redirected to the bug bin?

    Forum: Fixing WordPress
    In reply to: static pages

    mdawaffe,

    You asked: If you edit .htaccess, do you see lines for /test ?.

    The answer is no. This is what I see:


    RewriteEngine On
    RewriteBase /wp/
    RewriteRule ^archives/category/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp/wp-feed.php?category_name=$1&feed=$2 [QSA]
    RewriteRule ^archives/category/?(.*) /wp/index.php?category_name=$1 [QSA]
    RewriteRule ^archives/author/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp/wp-feed.php?author_name=$1&feed=$2 [QSA]
    RewriteRule ^archives/author/?(.*) /wp/index.php?author_name=$1 [QSA]
    RewriteRule ^archives/([0-9]{4})?/?([0-9]{1,2})?/?([0-9]{1,2})?/?([_0-9a-z-]+)?/?([0-9]+)?/?$ /wp/index.php?year=$1&monthnum=$2&day=$3&name=$4&page=$5 [QSA]
    RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([_0-9a-z-]+)/(feed|rdf|rss|rss2|atom)/?$ /wp/wp-feed.php?year=$1&monthnum=$2&day=$3&name=$4&feed=$5 [QSA]
    RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([_0-9a-z-]+)/trackback/?$ /wp/wp-trackback.php?year=$1&monthnum=$2&day=$3&name=$4 [QSA]
    RewriteRule ^feed/?([_0-9a-z-]+)?/?$ /wp/wp-feed.php?feed=$1 [QSA]
    RewriteRule ^comments/feed/?([_0-9a-z-]+)?/?$ /wp/wp-feed.php?feed=$1&withcomments=1 [QSA]

    🙁

    I wonder what’s wrong here.

    Forum: Fixing WordPress
    In reply to: static pages

    Now, this has to be a bug of some kind. Look at what I can read from the Admin panel:

    Post Preview (updated when post is saved)
    Test
    Filed under: Tips & Tricks � @ 17:09

    Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. […]

    “Tips & Tricks”! This is one of my “categories”. Not a page. Now, what is wrong with this page feature?

Viewing 15 replies - 31 through 45 (of 49 total)