DominicanoBro
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] Title & Metas => Empty TabsI had the same problem and I came to the conclusion that the problem was not a conflict with another plugin but the PHP memory limit. Most likely when you disabled the All in One Event Calendar your freed up enough memory to load the SEO plugin properly but you would get the same by disabling one or more other plugins (All in One Event Calendar is a bit heavy on PHP so you might have to disable more than 1 plugin to get the same result).
To solve the problem increase PHP memory limit in php.ini:
memory_limit = 256M;
If you do not have permissions to change the settings in php.ini contact your hosting company and ask them to do so.
Hope that helps.
This did not work for me :(, still looking for a solution for this problem.
Forum: Themes and Templates
In reply to: Where do I specify the category in this templateI have the website down since I want it to be perfect for launch but I can give you a meeting ID and show you through a desktop share if you would like!
Forum: Themes and Templates
In reply to: Where do I specify the category in this templateThis is how it shows with the original code on the home page.
And this is how it shows on the template page I created just adding the specific category
The text in the thumbnail is blurry.
I used the two codes above on previous posts. The first code is the index.php and the second one is the template.
Any reason why or how to solve it? thanks
Forum: Themes and Templates
In reply to: Where do I specify the category in this templateGuys I think i figured it out by doing some research, however there is just one tiny issue. In this template the text on the thumbnail is a little blurred. It is readable but I would like it to be just like the original any suggestion why?
Thanks,
<?php /* Template Name: Muzikita */ ?> <?php get_header(); ?> <div id="content" class="clearfix"> <div id="main" class="col620 clearfix" role="main"> <div id="featured" class="clearfix"> <div id="featured-latest" class="col480"> <?php $rPost = new WP_Query( array( 'cat' => 4, 'posts_per_page' => 1, 'post__in' => get_option("sticky_posts") )); ?> <?php if ( $rPost->have_posts() ) : $rPost->the_post(); $do_not_duplicate = $post->ID; ?> <div class="featured-content"> <header> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'noteworthy' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php if(the_title( '', '', false ) !='') the_title(); else _e( 'View Post', 'noteworthy' ); ?></a></h2> </header> <div class="circle-arrow"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'noteworthy' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php if(the_title( '', '', false ) !='') the_title(); else _e( 'View Post', 'noteworthy' ); ?></a></div> </div> <?php if ( has_post_thumbnail()) : ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php echo the_post_thumbnail( array( 400, 400) ); ?></a> <?php else : ?> <?php $postimgs =& get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC' ) ); if ( !empty($postimgs) ) : $firstimg = array_shift( $postimgs ); $my_image = wp_get_attachment_image( $firstimg->ID, array( 400, 400 ) ); ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php echo $my_image; ?></a> <?php endif; ?> <?php endif; ?> <?php endif; ?> <?php wp_reset_query(); ?> </div> <div id="featured-list" class="col480"> <?php $fPosts = new WP_Query( array( 'cat' => 4, 'offset' => 1, 'posts_per_page' => 10, 'post__in' => get_option("sticky_posts"), 'ignore_sticky_posts' => 1, )); ?> <h1>Featured</h1> <div id="boxscroll"> <?php if ( $fPosts->have_posts() ) : ?> <ul> <?php /* Start the Loop */ ?> <?php while ( $fPosts->have_posts() ) : $fPosts->the_post(); ?> <li class="featured-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'noteworthy' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php if(the_title( '', '', false ) !='') the_title(); else _e( 'View Post', 'noteworthy' ); ?></a></li> <?php endwhile; ?> <?php endif; ?> </ul> <?php wp_reset_query(); ?> </div> </div> </div> <div class="item-wrap clearfix"> <?php $sticky = get_option("sticky_posts"); query_posts( array( 'cat' => 4, 'post__not_in' => $sticky, 'paged' => (get_query_var('paged')) ? get_query_var('paged') : 1 )); ?> <?php if ( have_posts() ) : ?> <?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <div class="item col300"> <div class="item-cat"> <?php /* translators: used between list items, there is a space after the comma */ $categories_list = get_the_category_list( __( ', ', 'noteworthy' ) ); if ( $categories_list && noteworthy_categorized_blog() ) : ?> <span class="cat-links"> <?php printf( __( '%s', 'noteworthy' ), $categories_list ); ?> </span> <?php endif; // End if categories ?> </div> <div class="item-content"> <header> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'noteworthy' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php if(the_title( '', '', false ) !='') the_title(); else _e( 'View Post', 'noteworthy' ); ?></a></h2> </header> </div> <?php if ( has_post_thumbnail()) : ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php echo the_post_thumbnail( array( 250, 250) ); ?></a> <?php else : ?> <?php $postimgs =& get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC' ) ); if ( !empty($postimgs) ) : $firstimg = array_shift( $postimgs ); $my_image = wp_get_attachment_image( $firstimg->ID, array( 250, 250 ) ); ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php echo $my_image; ?></a> <?php endif; ?> <?php endif; ?> </div> <?php endwhile; ?> <?php if (function_exists("noteworthy_pagination")) { noteworthy_pagination(); } elseif (function_exists("noteworthy_content_nav")) { noteworthy_content_nav( 'nav-below' ); }?> <?php else : ?> <article id="post-0" class="post no-results not-found"> <header class="entry-header"> <h1 class="entry-title"><?php _e( 'Nothing Found', 'noteworthy' ); ?></h1> </header><!-- .entry-header --> <div class="entry-content post_content"> <p><?php _e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'noteworthy' ); ?></p> <?php get_search_form(); ?> </div><!-- .entry-content --> </article><!-- #post-0 --> <?php endif; ?> <?php wp_reset_query() ?> </div> </div> <!-- end #main --> <?php get_sidebar(); ?> </div> <!-- end #content --> <?php get_footer(); ?>