wcten
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Appointments] Urgent: Not loading on Mobile siteNow I turn off my WP Super Cache and it works…
Forum: Plugins
In reply to: [Easy Appointments] Urgent: Not loading on Mobile siteI also found out it is not working on my desktop as well.
It only works if i am logged in.Forum: Plugins
In reply to: [Easy Appointments] Urgent: Not loading on Mobile siteOh no. It actually still not working.
I tried it on Samsung Edge, iPhone and Oppo.It only works after I logged in.
You can take a look at https://sch.kimage.com.sg/appointment/
Forum: Plugins
In reply to: [Easy Appointments] Urgent: Not loading on Mobile siteAppreciate your reply. I turned off and on again the compatibility mode, and it is working again.
Forum: Plugins
In reply to: [Easy Appointments] Urgent: Not loading on Mobile siteBY the way, I tried the Compatibility mode already.
Forum: Plugins
In reply to: [WordPress Social Login] Facebook SDK is already loaded by another package.I need help for this as well.
I am using Facebook Album plugin. It has loaded Facebook SDK.
https://www.ads-software.com/plugins/facebook-albums/Forum: Plugins
In reply to: [TZ Plus Gallery] Doesn't load Facebook photosSorry. It works.
It doesn’t load only when i changed the photo limit to 0. after i change back to 24, it works.
Forum: Plugins
In reply to: [TZ Plus Gallery] Blank Admin PageStill a blank page.
Forum: Plugins
In reply to: [TZ Plus Gallery] Not showing all albumsResolved. Great! Thanks.
Forum: Plugins
In reply to: [TZ Plus Gallery] Lightbox conflictExcellent! Thank you. You are the best!
Forum: Plugins
In reply to: [TZ Plus Gallery] Lightbox conflictHere it is.
Forum: Plugins
In reply to: [WordPress Social Login] wordpress.wp_wslusersprofiles table missingIn short, how do I manually reinstall wslusersprofiles table? Thanks.
Forum: Hacks
In reply to: Comment TemplateThanks a lot.
But I have absolutely no idea how to use the walker class. Can you please elaborate more. Thank you.
Forum: Hacks
In reply to: Comment TemplateI got this done!
But it shows the full comments.
How do I get the comments excerpt?<?php /* Template Name: Author Comments Template */ ?> <?php get_header(); ?> <div class="content-wrap"> <div class="content"> <?php tie_breadcrumbs() ?> <div id="content" role="main"> <?php # The comment functions use the query var 'cpage', so we'll ensure that's set $page = intval( get_query_var( 'cpage' ) ); if ( 0 == $page ) { $page = 1; set_query_var( 'cpage', $page ); } # We'll do 10 comments per page... # Note that the 'page_comments' option in /wp-admin/options-discussion.php must be checked $comments_per_page = 10; $comments = get_comments( array( 'user_id' => '1', 'status' => 'approve' ) ); ?> <ol start="<?php echo $comments_per_page * $page - $comments_per_page + 1 ?>"> <?php wp_list_comments( array ( 'style' => 'ol', 'per_page' => $comments_per_page, 'page' => $page, 'reverse_top_level' => false ), $comments ); ?> </ol> <?php # Now you can either use paginate_comments_links ... ?> <?php paginate_comments_links() ?> <?php # Or you can next/prev yourself... ?> <?php if ( get_comment_pages_count( $comment, $comments_per_page ) > 1 ) : // are there comments to navigate through ?> <nav id="comment-nav"> <div class="nav-previous"><?php previous_comments_link( __( '← Newer Comments' ) ); ?></div> <div class="nav-next"><?php next_comments_link( __( 'Older Comments →' ) ); ?></div> </nav> <?php endif; ?> </div> </div><!-- .content --> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Hacks
In reply to: Comment TemplateOh, by the way, how do I add pagination to it? Thanks.