Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Several fixes for the theme (quote). WordPress

Hey guys,

I need somebody to fix my theme:

http://denoizzed.com/templates/photo/selftitled/

1. It seems to be crashing on iPad when rotating.

2. Images in slider (e.g. homepage) are shown only when all are loaded (I need them to load and fade in one by one in sequence).

3. In chrome when you change the slide there is a bug that highlights another slide (beside the changed one) on animation and then applies the overlay. Please see the screenshot:
[[LINK href="http://d.pr/i/rlaw"]]Screenshot[[/LINK]]

4. Gallery pages are using the code:


<!-- slider -->
<ul class="slides">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();

$args = array(
'post_type' => 'attachment',
'numberposts' => -1,
'post_status' => null,
'post_parent' => $post->ID,
'order'=> 'ASC',
'orderby' => 'menu_order'
);

$attachments = get_posts( $args );
if ( $attachments ) {
foreach ( $attachments as $attachment ) {
echo '<li>';
echo wp_get_attachment_image( $attachment->ID, 'full' );
echo '</li>';
}
}

endwhile; endif; ?>
</ul>
<!-- slider ends -->


It seems to screwed by WordPress 3.5 new uploader. I need a solution for that.

So please quote me for these fixes. thanks in advance!

P.S. Not sure if I'm doing it right so sorry for inconvenience if any.

Answers (0)

No answers yet.