Forum Replies Created

Viewing 15 replies - 1 through 15 (of 16 total)
  • I have tried different browser and the problem “just a second” lasts forever. 🙁

    babiesonline: http://www.yourdomain.com/wp-admin/admin.php?page=polls
    Or just go to edit your polls.. You can find it there..

    Wishlist:

    – Make it possible to translate the plugin with a .po file.
    – Add a guestlist to an event. If I could have the option to make a list of names and sort them in multiple groups, then choose a group of the guests that are allowed to attend the event. The registration should have a search function that facebook have so when the customer searches for his name he finds it easily.
    – Print the total guestlist to an excel document and a symbol (X) in front of the people who have paid for the event.

    Im running WP 2.8.2 and its not working. I can not add events.

    I got the same error and this fixed it, thanks!

    Forum: Themes and Templates
    In reply to: News section
    Thread Starter Joakim

    (@jokka)

    I think I got it working! yeeey My website

    BUT… There is another thing.. I would like to put something in between my news.. Ads and other thing like some photos etc.. How can I do this?

    Forum: Themes and Templates
    In reply to: News section
    Thread Starter Joakim

    (@jokka)

    Okay..

    The only thing I want to do is to have the ability to show my all my news in two columns with image, title and text.. It is that easy.. But I have never done that before.. And I think the real problem is to get it in 2 columns.. Somebody?

    Forum: Themes and Templates
    In reply to: News section
    Thread Starter Joakim

    (@jokka)

    No.

    I want to remove the section they have to only show some news from a category and then show all news..

    Forum: Themes and Templates
    In reply to: News section
    Thread Starter Joakim

    (@jokka)

    And by the way.. I dont think the solution to take out the 3 first news will be the best solutions since the featured section takes news from a certain category. I think the best solution the will be to exclude that category from the latest news section.

    But I still need help to edit the weird code.

    Thanks for all help! 🙂

    Forum: Themes and Templates
    In reply to: News section
    Thread Starter Joakim

    (@jokka)

    Hmm, I’m so confused about the code in the theme (not my theme).
    Do you know what I will have to do?
    I want my news to be shown like the 2 news in the “Siste nyheter” section.

    Link to the site

    <div id="list-categories">
    				<h2 class="section-title"><?php _e( 'Siste nyheter', 'wpbx' ) ?></h2>
    <?php
    	// Flag to indicate alternating columns
    	$catLeftCol = true;
    	$intCount = 0;
    
    	// Determine how many posts to show per category
    	$intPostCount = 5;
    
    	// Retrieve a list of selected categories
    	$categories = get_categories("orderby=ID&order=asc&hide_empty=1&hierarchial=0&include=$front_cat_list");
    
    	// Iterate over each category
    	foreach ($categories as $category)
    	{
    		// Retrieve a handful of posts for this category
    		query_posts("cat=" . $category->cat_ID . "&showposts=$intPostCount&orderby=date&order=DESC");
    
    		// Increment the debug counter
    		$intCount++;
    
    ?>
    		<!-- Loop: <?php echo $intCount; ?> -->
    <?php
    		// Initialise the thumb display flag
    		$catFirstPost = true;
    
    		// Do we have any categories to display?
    		while (have_posts())
    		{
    
    			// Advance the post queue
    			the_post(); $do_not_duplicate = $post->ID;
    
    			// Is this the first post in the category?
    			if ($catFirstPost)
    			{
    ?>
    <?php
    			// Check whether we need to create the "row wrapper"
    			if ($catLeftCol)
    			{
    ?>
    				<div class="entry-row clearfix">
    <?php
    			}
    ?>
    
    					<div id="<?php echo $category->slug; ?>-list" class="entry-list">
    						<h3 class="entry-list-cat-title">
    							<a href="<?php echo get_category_link($category->cat_ID); ?>" title="More articles in <?php echo $category->name; ?>"><?php echo $category->name; ?> &raquo;</a>
    						</h3>
    
    						<div class="entry-list-thumb">
    							<a href="<?php the_permalink(); ?>" title="<?php printf(__( 'Read %s', 'wpbx' ), wp_specialchars(get_the_title(), 1)) ?>">
    							<?php
    							$entry_preview = get_post_custom_values("entry-preview");
    							if ( is_array($entry_preview) ) { ?>
    								<img class="entry-preview" src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=<?php echo get_post_meta($post->ID, 'entry-preview',true) ?>&amp;w=258&amp;h=110&amp;zc=1" alt="<?php the_title(); ?>" />
    							<?php }	else { ?>
    								<img class="entry-preview" src="<?php bloginfo('template_directory'); ?>/images/image-blank-big.jpg" alt="<?php the_title(); ?>" />
    							<?php }	?>
    							</a>
    						</div>
    
    <h4 class="entry-list-title"><a href="<?php the_permalink(); ?>" title="<?php printf(__( 'Read %s', 'wpbx' ), wp_specialchars(get_the_title(), 1)) ?>"><?php the_title(); ?></a></h4>
    
    						<div class="entry-list-content">
    							<?php the_content_limit(85, ''); ?>
    						</div>
    
    						<p class="more-link">More in <?php echo $category->name; ?>
    
    						<ul>
    <?php
    				// First post display is complete
    				$catFirstPost = false;
    				the_post() == $do_not_duplicate;
    
    			} // if ($catFirstPost)
    ?>
    
    							<li class="clearfix">
    								<span class="entry-star"><img src="<?php bloginfo('template_directory'); ?>/images/bullet-star.png" alt="#" /></span>
    								<h4><a href="<?php the_permalink(); ?>" title="<?php printf(__( 'Read %s', 'wpbx' ), wp_specialchars(get_the_title(), 1)) ?>"><?php the_title(); ?></a></h4>
    								<div class="entry-meta">
    									<span class="entry-date"><?php unset($previousday); printf( __( '%1$s', 'wpbx' ), the_date( 'D, M j Y', '', '', false ) ) ?></span>
    									<span class="entry-meta-sep">|</span>
    									<span class="entry-comm"><?php comments_popup_link( __( 'No Comments', 'wpbx' ), __( '1 Comment', 'wpbx' ), __( '% Comments', 'wpbx' ) ) ?></span>
    								</div>
                                </li>
    
    <?php
    		} // while (have_posts())
    ?>
    						</ul>
    					</div>
    
    <?php
    		/*
    			If we've run out of posts to display, we need to close the "row"
    		*/
    		if (!$catLeftCol)
    		{
    ?>
    				</div><!-- .entry-row -->
    
    <?php
    		}
    
    		// Toggle the alternator
    		$catLeftCol = !$catLeftCol;
    
    	} // end foreach category
    
    	// Account for odd number of posts
    	if (!$catLeftCol)
    	{
    ?>
    				</div><!-- .entry-row -->
    
    <?php
    	}
    ?>		
    
    			</div><!-- #list-categories -->
    Thread Starter Joakim

    (@jokka)

    I’m not so good at php.
    Could you help me with the code?

    I want eg. 6 thumbs from a gallery/album to be shown.

    Or and ad management plugin at al?

    Forum: Plugins
    In reply to: facebook-like status update
    Joakim

    (@jokka)

    Why don’t use something like twitter.com and a plugin from this site to show it in your sidebar and similar?

    Joakim

    (@jokka)

    “If your clients will be uploading a lot of pictures this is the perfect plugin. It organizes, inserts and even does simple editing. The plugin allows your clients to crop and resize pics without leaving the admin section. It will also create better thumbnails and even integrate with Lightbox.”

    Plugin page

Viewing 15 replies - 1 through 15 (of 16 total)