chez-victoria
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Backup to Dropbox] no backupsHmmm I don’t think a backup even starts at all when I click start backup.
The cron plugin says:
Nov 26, 2012 @ 13:22 (1353936174) Once Hourly jetpack_clean_nonces
Nov 26, 2012 @ 17:40 (1353951600) Twice Daily wp_version_check
Nov 26, 2012 @ 17:40 (1353951600) Twice Daily wp_update_plugins
Nov 26, 2012 @ 17:40 (1353951600) Twice Daily wp_update_themes
Nov 26, 2012 @ 17:40 (1353951612) Once Daily wp_scheduled_delete
Nov 27, 2012 @ 2:46 (1353984411) Once Daily wp_scheduled_auto_draft_delete
Nov 27, 2012 @ 11:32 (1354015949) Once Daily akismet_scheduled_delete
Nov 27, 2012 @ 15:06 (1354028779) One-off event do_pings
Nov 28, 2012 @ 4:08 (1354075716) One-off event execute_instant_drobox_backupForum: Themes and Templates
In reply to: custom style does not show for pages in search resultsIt worked, thank you!! 🙂
Forum: Themes and Templates
In reply to: custom style does not show for pages in search resultsAhh this is so strange but I cannot find
the_excerpt()in loop.php or in the rest of the .php files as well. I’ll put up my loop.php in case it helps:<?php if(have_posts()) : ?> <?php while(have_posts()) : the_post(); global $post; ?> <div <?php post_class() ?>> <?php if(has_post_thumbnail() && get_post_format() != 'image' && so_setting('display_featured_image')) : ?> <div class="featured-image"> <?php the_post_thumbnail(null, array('class' => 'main-image desktop')) ?> <?php the_post_thumbnail('post-thumbnail-mobile', array('class' => 'main-image mobile')) ?> </div> <?php endif; ?> <?php if(!in_array(get_post_format(), array('aside', 'link', 'status'))) : ?> <h1 class="entry-title"> <?php if(is_singular()) : ?> <?php the_title() ?> <?php else : ?> <a href="<?php the_permalink() ?>"><?php the_title() ?></a> <?php endif; ?> </h1> <div class="post-info"><?php if(has_category()) : ?> [ <?php the_category(', ') ?> ] <?php endif; ?> </div> <div class="date"><a href="<?php the_permalink() ?>"><?php the_date() ?></a></div> <?php endif; ?> <?php if(so_setting('display_use_columns') && get_post_format() === false){ $columns = get_post_meta($post->ID, 'content_columns', true); if($columns === false) $columns = 2; } else $columns = 1; ?> <div class="content column-<?php print $columns ?>"> <?php if(has_post_thumbnail() && get_post_format() == 'image') : ?> <div class="featured-image"> <?php the_post_thumbnail(null, array('class' => 'main-image desktop')) ?> <?php the_post_thumbnail('post-thumbnail-mobile', array('class' => 'main-image mobile')) ?> </div> <?php endif; ?> <?php the_content(' '); ?> <div class="clear"></div> </div> <?php wp_link_pages(array( 'before' => '<p class="page-links content">' . __('Pages:', 'origami'), 'after' => '</p>', )) ?> <?php $tags = wp_get_post_tags($post->ID); ?> <?php if(!empty($tags) || !is_singular()) : ?> <div class="below-content"> <p> <?php comments_popup_link( '♡ Leave a comment', '♡ 1 comment', '♡ % comments', '♡ comments-link', '♡ Comments are off for this post'); ?> </p> <?php if(has_tag()) : ?> <div class="tags"> <svg version="1.1" width="18px" height="18px" viewBox="0 0 48 48"> <path d="M 41.29511 48 L 41.29511 .091884613 L 6.999998 .091884613 L 6.999998 47.78994 L 24.042513 30.74741 Z" /> </svg> <div class="the_tags"> <?php the_tags('') ?> </div> </div> <?php endif ?> <?php if((!is_singular() && preg_match( '/<!--more(.*?)?-->/', $post->post_content )) || empty($post->post_title)) : ?> <div class="read-more"> <a href="<?php the_permalink() ?>"><?php _e('Continue Reading', 'origami') ?></a> <svg version="1.1" width="18px" height="18px" viewBox="0 0 48 48"> <path d="M 0 32 L 0 16 L 26 16 L 26 8 L 48 24 L 26 40 L 26 32 Z" /> </svg> </div> <?php endif; ?> <div class="clear"></div> <?php if(is_singular() && so_setting('social_share')) locate_template('social-share.php', true); ?> </div> <?php elseif(so_setting('social_share') && function_exists('so_share_render')) : so_share_render(array('twitter' => so_setting('social_twitter'))); endif; ?> <?php if(is_singular()) : ?> <div id="single-comments-wrapper"> <?php comments_template() ?> </div> <?php endif; ?> </div> <?php endwhile; ?> <?php endif; ?>Sorry this is so troublesome!
Forum: Themes and Templates
In reply to: custom style does not show for pages in search resultsHmmm there doesn’t seem to be
the_excerpt()in my search.php? This is all there is:<?php get_header() ?> <h1 class="archive-title"> <?php printf( __( 'Search Results for: %s', 'origami' ), '<span>' . get_search_query() . '</span>' ); ?> </h1> <?php if(have_posts()) : ?> <?php get_template_part('loop', 'index') ?> <div id="posts-nav"> <?php posts_nav_link('', __('forward', 'origami'), __('backward', 'origami')); ?> </div> <?php else : ?> <div class="content"> <?php print so_setting('messages_no_results') ?> </div> <?php endif ?> <?php get_footer() ?>