ioni
Forum Replies Created
-
Forum: Plugins
In reply to: Live writer Image upload problem with wordpressI believe that you might be looking at the HTML version of the post. It happens quite often to me – only to realize that clicking “Visual” in editor mends the problem
Forum: Fixing WordPress
In reply to: wordpress and window live writerI believe that you might be looking at the HTML version of the post. It happens quite often to me – only to realize that pressing Visual mends the problem
Otherwise could you be a bit more specific on the problem. a screenshot, maybe?
Forum: Fixing WordPress
In reply to: Issue with Live Writer and Attaching Images on 2.8I still cannot see that hapening.
just in case this is the same bug with images and unsaved post I have tried to post a new entry and then add images to it – to no avail.
I have also submitted the thing to bugtrac, however no response there..
Forum: Plugins
In reply to: OpenIDloginfailed:Invalidopenid.modeNomodesetSame here
Forum: Plugins
In reply to: Openid problems with WordPress 2,8Just out of curiosity I made a new WP2.8 blog (default theme) with just OpenID plugin installed. Nope; not working – ‘invalid openid.mode’
Forum: Plugins
In reply to: Openid problems with WordPress 2,8And what about ‘no Mode Set’
Forum: Themes and Templates
In reply to: how to show title as caption over imagexinfo, as I said there are two things to be done.
Suppose you use single.php (or elsewhere) and know how to pull the first image off the media gallery and want to give it a caption the same as title of the post.
You can use the same HTML structure as is created automatically when you insert the image manually in the WP Editor:
<div id="attachment_ID" class="my-caption"> <img class="size-medium wp-image-ID" title="Your_attachment_title" src="http://sunshine.by/wp-content/uploads/2009/06/gej_komiks_adam_i_endi_20090619-275x82.gif" alt="Your_attahcment_title"/><p class="my-caption-text">Caption Text</p></div>Within this structure you
(1) pull the images
(2) form the above HTML structure output and
(3) cahnge the Caption_Text with php code
<?php the_title_attribute(); ?>this is will make the whole thing look like it does in normal WP theme image insertion
From this point it is only styling:
You can ncreate two more styles and apply them – one to the container DIV and the second one – to the Caption P
For imstance:
my-caption {border:1 solid #000; background-color:#000; padding:none; margin:none;}
my-caption-text {test-transform:capitalize; font-size:18px; color:#fff; text-align:center;padding:5px 1px; margin:0px;}
This will make sure that the image is on top followed by the block of text which is white on black and padded from top and bottom 5px and 1px from left and rightWill do the tick!
Forum: Fixing WordPress
In reply to: Images will not uploadPhillM, it is a well known problem now – you actually have to start writing something before uploading images (to trigger autosave)
In otherwords the gallery is not creatrd without an actual post – so you just start posting and then upload – this seems to work for now
Forum: Fixing WordPress
In reply to: Issue with Live Writer and Attaching Images on 2.8The problem now becoms The Problem since WLW is generall a better way to post, but now I have to go through all this silly TinyMCE…
Forum: Fixing WordPress
In reply to: category query AND thumbnailing an imageI mean something like that – http://sunshine.by/ check how the columns are generated, is this what you need?
Forum: Fixing WordPress
In reply to: category query AND thumbnailing an imageI would go and check the_category()
Please note that it may return a few, so you may want to show only the first category returned (when the post is in a few categories) or a random one at that.
Forum: Themes and Templates
In reply to: how to show title as caption over imageBasically, you would need both style.css and whichever file you use to show output
In style.css you create rules, and use the_title_attribute as a caption. Does that help?
Forum: Themes and Templates
In reply to: Using an image as the border/break beneath a postSorry, nsgibson, I just do not seem to grasp your idea
Correct me if I am wrong, but you want to replace the bottom line of EACH AND EVERY post? In this case you just need to modify the theme file single.php
In the default theme it is around
<div class="entry">
<?php the_content('<p class="serif">' . __('Read the rest of this entry »', 'kubrick') . '</p>'); ?>
</div>
<XXXXXXXXXXX> – after which is where you post you image to keep semantics and validity and make sure it does not break you designOtherwise, I just do not understand…
Forum: Fixing WordPress
In reply to: Image not attached to postShould be resolved, for sure
Forum: Fixing WordPress
In reply to: Issue with Live Writer and Attaching Images on 2.8I have the same problem.
The theme I develop seriously relies of Media Library and without it is practically worthless.
Any suggestions?
Point being made is that when the post is sent to the WP 2.8 blog, WLW creates the necessary images and passes the control to WP, which creates thimbnailset al, but does not add it to the library.Any ideas?