DhanyaAbraham
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sixteen] Permalink SetingsOne more issue.
page navigation is not working properly in the home page.
when I try to navigate to the second page the below link is appearing
with page not found!
localhost/myDesign/myDesign/?paged=2
Please help to solve this too.
Forum: Plugins
In reply to: [wp-greet] How to include videos/flash videosThat’s good. Will be good if we can send ecards ,reference
123greetings.com
Thanks
DhanyaForum: Plugins
In reply to: [wp-greet] How to include videos/flash videosOh sorry Hans,
I just uploaded the video directly, forget a moment about the ngg gallery. :-). Ngg can’t upload videos rt?
Any way, I want to embed the video with the email. Is it possible?
Forum: Themes and Templates
In reply to: [Sixteen] Woocommerce plugin supportEagerly waiting for the same. Thanks
Forum: Themes and Templates
In reply to: [Sixteen] Exclude page from menu barForum: Themes and Templates
In reply to: [Sixteen] Exclude page from menu barwp_list_pages not showing up in the header.php
Forum: Plugins
In reply to: [wp-greet] is this possible to test wp-greet plugin with localhost?Hi Hans
I made it. Its working perfecly.
Cheers
Merry X’masDhanya
Forum: Plugins
In reply to: [wp-greet] is this possible to test wp-greet plugin with localhost?Hans,
Yes I had done-
wp-greet->galleries->xmas with ID 4 ->select and saved.
same id [gallery=4] given to my gallery page->mycard.
But not working.
Forum: Plugins
In reply to: [wp-greet] is this possible to test wp-greet plugin with localhost?Hi Hans
Can you pl help me to fix this issue.
Dhanya
Forum: Plugins
In reply to: [wp-greet] is this possible to test wp-greet plugin with localhost?Hi tuxlog,
Thanks for the reply.
I am using nextgen gallery 1.9.13 ,
wordpress- 3.7
theme – sixteen
wp-greet – 3.9Created greet page with [wp-greet] and mycard page with ngg gallery id [gallery=3].
While selecting images on mycards page ,its giving the jpg image,not redirecting to greet page.
What mistake I had done here?
for your referral , pl go through this link.https://www.mockupwebsite.com/29NovDesign
note: i didn’t exclude the greet page using wp_list_pages. whether this will give the issue?
Thanks
DhanyaForum: Plugins
In reply to: [wp-greet] is this possible to test wp-greet plugin with localhost?I am getting this error while try to load images on localhost.
“The requested content cannot be loaded.
Please try again later.”Shall I know what is this error message?
Dhanya
Code is here……………
<div id="primary" class="widecolumn"> <div id="content" role="main"> <?php while ( have_posts() ) : the_post(); ?> <div class="post-post-tit"> <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></div> <div class="post-date_meta_tit"> <?php the_time('j F Y');?></div> <div class="post-cat_tit"><span class="span-post-cat_tit"> Categories- </span> <?php /* translators: used between list items, there is a space after the comma ---Here category title is printing*/ $categories_list = get_the_category_list( __( ' / ', 'twentytwelve' ) ); if ( $categories_list ): ?> <?php printf( __( '<span class="%1$s" id="cat-link1"> </span> %2$s', 'twentytwelve' ), 'entry-utility-prep entry-utility-prep-cat-links',$categories_list ); $show_sep = true; ?> <?php endif; // End if categories ?> </div> <div class="post-entry-content"> <?php the_content();?> </div><!-- post.entry-content --> <div class="related-post">Possibly Related...</div> <div class="thumb-related-post"> <?php $categories = get_the_category($post->ID); if ($categories) { $category_ids = array(); foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id; $args=array( 'category__in' => $category_ids, 'post__not_in' => array($post->ID), 'showposts'=>4, // Number of related posts that will be shown. 'caller_get_posts'=>1 ); $my_query = new wp_query($args); if( $my_query->have_posts() ) { echo ' '; while ($my_query->have_posts()) { $my_query->the_post(); ?> <div class="thumb-related-post-wrapper"> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"> <span class="post-tit-pad"><?php the_title(); ?></span> <div class="post-cat_tit_bot"> <?php /* translators: used between list items, there is a space after the comma ---Here category title is printing*/ $categories_list = get_the_category_list( __( ' / ', 'twentytwelve' ) ); if ( $categories_list ): ?> <?php printf( __( '<span class="%1$s" id="cat-link1"> </span> %2$s', 'twentytwelve' ), 'entry-utility-prep entry-utility-prep-cat-links',$categories_list ); $show_sep = true; ?></a> <?php endif; // End if categories ?> </div> <div class="thumb-img-pad"><a href="<?php the_permalink(); ?>" rel="bookmark"> <?php the_post_thumbnail(); ?></a></div> <div class="post-date_meta"> <?php the_time('j F Y');?> <span class="post-commnt_meta"><?php comments_number( 'No Comments', '1 comment', '% comments' ); ?></span></div></div> <?php } echo ' '; } } ?> </div><!--#thumb-related-post--> <?php comments_template(); ?> <?php endwhile; // end of the loop. ?> </div><!-- #content --> </div><!-- #primary -->
Forum: Themes and Templates
In reply to: Display only the title in categoriesHi
I am using a grid like structure for my front page.It will show only th featured images of the posts. I need only its category tile to be displayed on the top of the image. How to do it?