ceci011
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help! My blog keeps redirecting, and it's dissappeared.Oh and I have the latest version of WordPress – just upgraded it and my plugins. However, things were fine immediately after those upgrades. This happened after I downloaded a gallery plugin. I’ve since deleted it, but it’s still redirecting.
Forum: Fixing WordPress
In reply to: Help! My blog keeps redirecting, and it's dissappeared.I’m using Twenty Eleven as my theme too. My blogs and everything show up fine – it’s just my “main blog page” that redirects to the website as shown above.
Forum: Fixing WordPress
In reply to: Help! My blog keeps redirecting, and it's dissappeared.I do have a redirect from http://www.projectchangetheworld.org to go to http://www.projectchangetheworld.org/main from my server.
I have taken that off, however the WordPress still redirects there.
Forum: Themes and Templates
In reply to: How to hide the sidebar on two pages only?Sorry I am back now. I had to take some time away from these issues.
To answer your question, I haven’t included any buttons yet.
I still need to put back buttons in my individual gallery windows.
I also need to change “See Photo” to “See Photos” which seem simple enough, but I cannot find it in the coding. I’m still learning this all.
Thanks!
Forum: Themes and Templates
In reply to: How to hide the sidebar on two pages only?Thanks that was what I needed. The sidebar is gone now. I have one other question.
How do I put a back button on my individual gallery pages?
Here’s the code:
<?php get_header(); ?> <div id="container"> <div role="main" id="content"> <?php global $post, $wp_query; $args = array( 'post_type' => 'gallery', 'post_status' => 'publish', 'name' => $wp_query->query_vars['name'], 'posts_per_page' => 1 ); $second_query = new WP_Query( $args ); $gllr_options = get_option( 'gllr_options' ); if ($second_query->have_posts()) : while ($second_query->have_posts()) : $second_query->the_post(); ?> <h1 class="home_page_title"><?php the_title(); ?></h1> <div class="gallery_box_single"> <?php the_content(); $posts = get_posts(array( "showposts" => -1, "what_to_show" => "posts", "post_status" => "inherit", "post_type" => "attachment", "orderby" => $gllr_options['order_by'], "order" => $gllr_options['order'], "post_mime_type"=> "image/jpeg,image/gif,image/jpg,image/png", "post_parent" => $post->ID )); if( count( $posts ) > 0 ) { $count_image_block = 0; ?> <div class="gallery clearfix"> <?php foreach( $posts as $attachment ) { $key = "gllr_image_text"; $link_key = "gllr_link_url"; $image_attributes = wp_get_attachment_image_src( $attachment->ID, 'photo-thumb' ); $image_attributes_large = wp_get_attachment_image_src( $attachment->ID, 'large' ); $image_attributes_full = wp_get_attachment_image_src( $attachment->ID, 'full' ); if( 1 == $gllr_options['border_images'] ){ $gllr_border = 'border-width: '.$gllr_options['border_images_width'].'px; border-color:'.$gllr_options['border_images_color'].''; $gllr_border_images = $gllr_options['border_images_width'] * 2; } else{ $gllr_border = ''; $gllr_border_images = 0; } if( $count_image_block % $gllr_options['custom_image_row_count'] == 0 ) { ?> <div class="gllr_image_row"> <?php } ?> <div class="gllr_image_block"> <p style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]+$gllr_border_images; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]+$gllr_border_images; ?>px;"> <?php if( ( $url_for_link = get_post_meta( $attachment->ID, $link_key, true ) ) != "" ) { ?> <a href="<?php echo $url_for_link; ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" target="_blank"> <img style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]; ?>px; <?php echo $gllr_border; ?>" alt="" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" src="<?php echo $image_attributes[0]; ?>" /> </a> <?php } else { ?> <a rel="gallery_fancybox" href="<?php echo $image_attributes_large[0]; ?>" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" > <img style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]; ?>px;height:<?php echo $gllr_options['gllr_custom_size_px'][1][1]; ?>px; <?php echo $gllr_border; ?>" alt="" title="<?php echo get_post_meta( $attachment->ID, $key, true ); ?>" src="<?php echo $image_attributes[0]; ?>" rel="<?php echo $image_attributes_full[0]; ?>" /> </a> <?php } ?> </p> <div style="width:<?php echo $gllr_options['gllr_custom_size_px'][1][0]+$gllr_border_images; ?>px; <?php if( 0 == $gllr_options["image_text"] ) echo "visibility:hidden;"; ?>" class="gllr_single_image_text"><?php echo get_post_meta( $attachment->ID, $key, true ); ?> </div> </div> <?php if($count_image_block%$gllr_options['custom_image_row_count'] == $gllr_options['custom_image_row_count']-1 ) { ?> </div> <?php } $count_image_block++; } if($count_image_block > 0 && $count_image_block%$gllr_options['custom_image_row_count'] != 0) { ?> </div> <?php } ?> </div> <?php } ?> </div> <div class="clear"></div> <?php endwhile; else: ?> <div class="gallery_box_single"> <p class="not_found"><?php _e('Sorry - nothing to found.', 'gallery'); ?></p> </div> <?php endif; ?> <?php if( 1 == $gllr_options['return_link'] ) { if( 'gallery_template_url' == $gllr_options["return_link_page"] ){ global $wpdb; $parent = $wpdb->get_var( "SELECT $wpdb->posts.ID FROM $wpdb->posts, $wpdb->postmeta WHERE meta_key = '_wp_page_template' AND meta_value = 'gallery-template.php' AND (post_status = 'publish' OR post_status = 'private') AND $wpdb->posts.ID = $wpdb->postmeta.post_id" ); ?> <div class="return_link"><a href="<?php echo ( !empty( $parent ) ? get_permalink( $parent ) : '' ); ?>"><?php echo $gllr_options['return_link_text']; ?></a></div> <?php } else { ?> <div class="return_link"><a href="<?php echo $gllr_options["return_link_url"]; ?>"><?php echo $gllr_options['return_link_text']; ?></a></div> <?php } } ?> </div> </div> <script type="text/javascript"> (function($){ $(document).ready(function(){ $("a[rel=gallery_fancybox]").fancybox({ 'transitionIn' : 'elastic', 'transitionOut' : 'elastic', 'titlePosition' : 'inside', 'speedIn' : 500, 'speedOut' : 300, 'titleFormat' : function(title, currentArray, currentIndex, currentOpts) { return '<span id="fancybox-title-inside">' + (title.length ? title + '<br />' : '') + '<?php _e( "Image ", "gallery"); ?>' + (currentIndex + 1) + ' / ' + currentArray.length + '</span><?php if( get_post_meta( $post->ID, 'gllr_download_link', true ) != '' ){?><br /><a href="'+$(currentOpts.orig).attr('rel')+'" target="_blank"><?php echo __('Download High resolution image', 'gallery'); ?> </a><?php } ?>'; }<?php if( $gllr_options['start_slideshow'] == 1 ) { ?>, 'onComplete': function() { clearTimeout(jQuery.fancybox.slider); jQuery.fancybox.slider=setTimeout("jQuery.fancybox.next()",<?php echo empty( $gllr_options['slideshow_interval'] )? 2000 : $gllr_options['slideshow_interval'] ; ?>); }<?php } ?> }); }); })(jQuery); </script> <?php get_footer(); ?>Forum: Themes and Templates
In reply to: How to hide the sidebar on two pages only?Right I’m sorry. I read that too fast. I’m actually using Twenty Eleven. I’m kind of new at WordPress too. Here is the page if you have any other tips. I wanted a Gallery, but not necessarily one where you have to click on everything.
See when you click on the pictures, there’s no back button on those pages either. I just want a very simple scrollable list of all the organization’s photos. I’m embedding it as an iframe on my website.
http://projectchangetheworld.org/pcw/?page_id=153
Thanks!
Forum: Themes and Templates
In reply to: How to hide the sidebar on two pages only?WordPress.org version 3.5.1