zerbox
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: UserlistAh, thanks! Is it possible to make the list like this:
Full name and mailIt it also possible to remove the link to the users rss-feed and instead make the link go to a user-profile?
Is it possible with a plugin or so to let users choose one or more pictures to his profile?
Forum: Fixing WordPress
In reply to: UserlistHm, looks like its not possible with version 2 yet?
Forum: Everything else WordPress
In reply to: Gallery – sidebarok, is it possible for you to publish the code here so that I can put it in to my file?
Would be nice if you could show where in the file I should put the new code π
Forum: Everything else WordPress
In reply to: Gallery – sidebarTook a short time to look at this post before work. Seems to work fine now!
How do I get the tumblails to show in a subsection as here:
http://www.xyooj.com/blog/lazy-index.php?file=micasa/Forum: Everything else WordPress
In reply to: Gallery – sidebarUploaded the updated version of lazy-simple now
Forum: Everything else WordPress
In reply to: Gallery – sidebarI have now made and uploaded lazy-simple.php
Have to go to work now. Will be back to this post in about 6 hours. Thanks for all help. Hope we will find the solution.
Forum: Everything else WordPress
In reply to: Gallery – sidebarIt was a complete replace of the entire file. I made a new file called lazy-index.php containing the new code, and that replaced the old one in the main wordpress-folder.
Forum: Everything else WordPress
In reply to: Gallery – sidebarI hope someone can help me. I dont understand what can be wrong now..
Forum: Everything else WordPress
In reply to: Gallery – sidebarUploaded lazy-index with the code you gave, but the same problem is still there :/
Forum: Everything else WordPress
In reply to: Gallery – sidebarHm, the code was publised wrong. The right version of the code is written here:
http://www.roisland.net/skilpadder/indexer.txtForum: Everything else WordPress
In reply to: Gallery – sidebarHm, the index for my theme is like this:
<?php
get_header();
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”entry”>
<!–
<h2 class=”entrydate”><?php the_date() ?></h2>
–>
<h3 class=”entrytitle” id=”post-<?php the_ID(); ?>”>
” rel=”bookmark”><?php the_title(); ?>
</h3>
<div class=”entrybody”>
<div class=”entrymeta”>
Posted by <?php the_author() ?> on <?php the_time(‘F dS Y’) ?> to <?php the_category(‘,’) ?>
</div>
<?php the_content(__(‘(more…)’)); ?>
<p class=”comments_link”>
<?php
$comments_img_link = ‘<img src=”‘ . get_stylesheet_directory_uri() . ‘/images/comments.gif” title=”comments” alt=”*” />’;
comments_popup_link(‘No Comments’, $comments_img_link . ‘ 1 Comment’, $comments_img_link . ‘ % Comments’);
?></div>
<!–
<?php trackback_rdf(); ?>
–>
</div><?php comments_template(); // Get wp-comments.php template ?>
<?php endwhile; else: ?>
<?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?><?php posts_nav_link(‘ — ‘, __(‘« Previous Page’), __(‘Next Page »’)); ?>
</div>
</div><!– The main content column ends –>
<?php get_sidebar(); ?>
<?php get_footer(); ?>Gallery-index is like this:
<?php
/* Don’t remove this line. */
require(‘./wp-blog-header.php’);
?><?php get_header(); ?>
<link href=”./wp-content/plugins/lazy-gallery/lazy-style.css” rel=”stylesheet” type=”text/css”>
<div id=”content” class=”narrowcolumn”>
<div id=”gallery”> <br/>
<br/>
<?php showGallery();?>
</div>
</div>
<!– The main content column ends –>
<?php get_sidebar(); ?><?php get_footer(); ?>
———————-
Can someone help me edit the lazy-index.php as written in the first reply to my post?