alexpts
Forum Replies Created
-
Forum: Your WordPress
In reply to: my blogThanks )
My blog also – https://my-wordpress.ru/
Forum: Your WordPress
In reply to: New Artistic Photography SiteIt does not validate
Why pusoy element if it does nothing?
It’s just rubbish that…Forum: Fixing WordPress
In reply to: Translete this fileLook in the file comments.php
Forum: Fixing WordPress
In reply to: Portfolio tag's not getting pulled?Forum: Fixing WordPress
In reply to: Multiple admins, only one gets emailsTo change the author’s post, you have to learn ID authors.
Run SQL query in phpMyAdmin:
UPDATE wp_posts SET post_author = REPLACE ( post_author, ‘1’, ‘2’ );
Where
1 – is the ID of the old author
2 – is the ID of the new authorMake a copy of the database before!
Forum: Fixing WordPress
In reply to: Help! Problem with code on my front page!You problem:
#LearnMore {
background:url(“https://www.clipnyc.com/wp-content/uploads/2010/LearnMore/rotate.php“) no-repeat scroll 0 0 transparent;
display:block;
height:200px;
width:200px;
}#LearnMore:hover {
background-position:0 -200px;
}Try:
#LearnMore {
background-image: url(“https://www.clipnyc.com/wp-content/uploads/2010/LearnMore/rotate.php”);
background-position: 0 0;
background-repeat: no-repeat;
display:block;
height:200px;
width:200px;
}#LearnMore:hover {
background-position:0 -200px;
}Forum: Fixing WordPress
In reply to: side bar meta linksNice!
Forum: Your WordPress
In reply to: New Artistic Photography SiteYes ??
+ I opened the source code of the page and see there
<div class=”post” id=”post-320″> <h2></h2>
H2 should not be empty
Forum: Your WordPress
In reply to: New Artistic Photography Site#navlist { <strong>height</strong>:<strong>40</strong>px; }
ul#navlist li a { color:#EEEEEE; display:block; font-size:11px; height:40px; line-height:40px; text-align:center; text-decoration:none; text-shadow:0 0 0 #000000; }
Forum: Fixing WordPress
In reply to: How to make corners round?Forum: Plugins
In reply to: Convert Custom Field "image" to be the featured imagedo SQL query in phpMyAdmin:
UPDATE wp_postmeta SET meta_key = REPLACE ( meta_key, 'image', 'Featured Image' );
Forum: Fixing WordPress
In reply to: How to show diferent post list style in the same loop?Try
<div id="listnews"> <ul> <?php $i = 0; while (have_posts()) : the_post(); if( $i < 1 ) { ?> <li class="noticia-d1"> <img src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=<?php echo catch_that_image() ?>&h=120&w=150&zc=1&q=60" class="thprin" title="Imagem de teste" alt="Imagem de teste" /> <h3 class="noticia-d1"><a>" title=""><?php the_title(); ?></a></h3> <p><?php the_excerpt(); ?></p> <?php } ?> <li><h3><a>" title="Titulo de teste"><?php the_title(); ?></a></h3></li> <?php $i++; endwhile; ?> </ul> </div>
Forum: Fixing WordPress
In reply to: How to show diferent post list style in the same loop?Example
<?php $i = 0;
while (have_posts()) : the_post();
if($i<1) { <!– code thumbs–>} ?>
<!– you code –>
<?php $i++;
endwhile; ?>