e-monk
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change name in get_archivesThanks, I think it would be complicated because I don´t know well php so I have decided to put a select like this:
<select name=”archivemenu” onChange=”document.location.href=this.options[this.selectedIndex].value;”>
<option value=””>This week</option>
<?php get_archives(‘daily’,’7′,’option’,”,”,’FALSE’); ?>
</select>Forum: Fixing WordPress
In reply to: Change months name?look this article, maybe can help you:
http://schinckel.blogsome.com/2006/03/23/changing-languages/
Forum: Plugins
In reply to: Change the Date’s looklook this article:
http://schinckel.blogsome.com/2006/03/23/changing-languages/
Forum: Fixing WordPress
In reply to: Youtube without plugin and without desactivate visual editori think it´s no possible, if you try to put the code directly is broken with </p> or so. Why don´t you try to use the plugin Viper’s Video Quicktags? It´s very useful, and it is incorporate to the visual editor, easy to use. It is necessary use plugins to put videos
Forum: Fixing WordPress
In reply to: Want to add Image “template” to my blogyou must to go to admin->presentation->editor themes and click in sidebar.php, see where is every part of the menu (for example, the search section is the code “<?php include (TEMPLATEPATH . ‘/searchform.php’); ?>”) and add the code to call the image (<img src=”/wordpress/wp-content/themes/…PUT THE COMPLETE ROUTE HERE>). You must to put the different images in a folder in your wordpress domain. the final result can be:
<img src=”/wordpress/wp-content/themes/…PUT THE COMPLETE ROUTE HERE>
<?php include (TEMPLATEPATH . ‘/searchform.php’); ?>It´s also difficult if you don´t know well HTML. I hope I can help you
Forum: Fixing WordPress
In reply to: Where I get…I supose you have to go into dashboard/presentation/edit themes and select style.css and edit the div post, that contains all the post, change the width and put float:left to align post1|post2
I hope this help you
Forum: Fixing WordPress
In reply to: Header = FlashI have one flash in my header, you can create a div to put it. For example:
<div id=”flash”>
<object classid=”clsid:D27CDB6E-AE6D-11cf-96B8-444553540000″ codebase=”http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0″ width=”800″ height=”55″ >
<param name=movie value=”/wordpress/wp-content/themes/…complete the route here with the nade mof the flash“><param name=quality value=high>
<param name=”wmode” value=”transparent”><embed src=”/wordpress/wp-content/themes/complete the route here with the flash.swf” quality=high pluginspage=”http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash” type=”application/x-shockwave-flash” width=”800″ height=”55″>
</embed>
</object>
</div>Forum: Fixing WordPress
In reply to: display one certain post by idThanks! It is exactly the plugin I need, very useful
Forum: Plugins
In reply to: Displaying a list of posts from one category on a page.You can create the page, and put this:
<?php query_posts(‘category_name=NameCategory‘)?>
before the while loop
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
You only sustitute NameCategory by the name of your category
This works to me. I hope I can help you