mathis@Tambour
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: Problem media_send_to_editorYes, it works without it.
So there is a problem withif( isset($_POST["highslide-$send_id"]) )…Forum: Plugins
In reply to: [Plugin: NextGEN] Option 'show next image on click' not workingActually, i got the same problem, but inversed.
I want to turn it on, but i can’t !
Someone got an idea ?Forum: Alpha/Beta/RC
In reply to: Upload image in my own themeOoh, my bad, i found my problem, that was me, sorry !!
Subject resolved !Forum: Alpha/Beta/RC
In reply to: Upload image in my own themeOk, well, i will exactly explain my problem :
This isn’t the upload function that doesn’t work, it’s the function to insert any media in a page (or post). When I click on insert into post, it just closes the popup window, and back to my post nothing is inserted.
Anyone would have an idea of what can cause that ?
Forum: Themes and Templates
In reply to: Display Post Date/Year TextuallyYou should look at this link : date
Forum: Alpha/Beta/RC
In reply to: Upload image in my own themeActually no, that’s open the old, yeah, it works, yes,
But we i want to write a post or a page, i can not use the newer uploader anymore, nothings happend when i press “Insert into Post” !Forum: Fixing WordPress
In reply to: Page HeadersYou can change status in the right of the page, change it to “Draft” won’t display the page in the Web Site. Was it about what you asked ?
Forum: Fixing WordPress
In reply to: Page not found when publishedWhen editing a page, don’t you have a checkbox : Including page or something like this in the right ?
Forum: Fixing WordPress
In reply to: Trying to remove comment boxIf you are using your theme, and you don’t want the comments anywhere,
you can use :#comments { display:none; }in CSS file.If that’s not your theme, and you want the comments on some page, there would be a checkbox for that ( look in the screen options in top-right ).
You can also create a child theme if you don’t want any comments, and use the previously CSS !Forum: Fixing WordPress
In reply to: Problem with commentThat’s not really what you want, but you could do a hook to the place where users can write their comments !
Forum: Themes and Templates
In reply to: Problem w3cActually, i am not using : <html id=”ie8″ dir=”ltr” lang=”en-EN”>,
That’s the code generated ( sorry … )
I am using : <?php language_attributes(); ?>
So the code is :<!DOCTYPE html> <!--[if IE 6]> <html id="ie6" <?php language_attributes(); ?>> <![endif]--> <!--[if IE 7]> <html id="ie7" <?php language_attributes(); ?>> <![endif]--> <!--[if IE 8]> <html id="ie8" <?php language_attributes(); ?>> <![endif]--> <!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!--> <html <?php language_attributes(); ?>> <!--<![endif]-->Forum: Themes and Templates
In reply to: [Asokay] FaviconActually, i can’t remember, sorry !
But is the code works for you ?Forum: Themes and Templates
In reply to: background-color in twentyeleven childIf you want to set a background with #F1F1F1, try to place this :
background-color: #F1F1F1 !important;
The other option is to create a <div> with a ID,
which one you will apply your backgroundForum: Themes and Templates
In reply to: [Cakifo] remove comment section from each page?You got, at my point, 2 options :
Modify it in Dashboard, maybe you got a checkbox where you can remove all comments, or you will have to change it one by one.
The Second option is to create a child theme, and apply the CSSdisplay:none;to the comments.Forum: Themes and Templates
In reply to: [Asokay] FaviconActually, i am using this code and it works !
<link rel="shortcut icon" type="image/x-icon" href="<?php bloginfo('stylesheet_directory') ?>/images/favicon.ico" />