paramasivanpn
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Malware linkHi All,
Thanks for your replies.
I deleted the unwanted files present in the domain and also deactivated one plugin. Then that malicious script didn’t appear. Then I updated that plugin and activated. Now the site is clean.
I asked the client to change ALL passwords (cpanel, ftp, wp-admin)
Forum: Fixing WordPress
In reply to: Malware linkI downloaded total files and scanned like ‘3’ ‘v’
The search result for <!– jQuery –> returned no results.
Forum: Fixing WordPress
In reply to: WordPress sub-menu left marginThank you!
I got reply from Stack overflow.com and fixed it already!
Forum: Fixing WordPress
In reply to: Video PlayerThank you !
It is only thumbnail and the post title links. No contents.
Forum: Fixing WordPress
In reply to: Comments template not showing up in posts in wordpressI have set the permalink as
/%category%/%postname%/
Is it because of that ? It is not showing up in default 2014 theme also.
Forum: Fixing WordPress
In reply to: Comments template not showing up in posts in wordpressI am sorry. It is not showing up.
Currently mail() function is not working in the site. Is it because of that?
Forum: Fixing WordPress
In reply to: Comments template not showing up in posts in wordpressI deactivated all the plugins but still not showing up.
Forum: Fixing WordPress
In reply to: Comments template not showing up in posts in wordpressI have enabled comments for the post.
In a page I made comments template and it is showing (deleted test page).
I have not made any edits to comments.php
I will try disable the plugins and see the result.
Forum: Fixing WordPress
In reply to: Comments template not showing up in posts in wordpress<?php /** * The Template for displaying all single posts * * @package WordPress * @subpackage Twenty_Fourteen * @since Twenty Fourteen 1.0 */ get_header(); ?> <div class="page-content"> <div class="detailed-content"> <?php while ( have_posts() ) : the_post(); ?> <div class="detail-pad"> <div class="breadcrumb"> <?php if(function_exists('bcn_display')) { bcn_display(); }?> </div> <div class="game-next"> <div class="next-game"> <img src="<?php bloginfo('template_url'); ?>/images/next-game-image.jpg" alt="next game"> <span>Next: <?php next_post_link('%link'); ?></span> </div> </div> <div class="clearer"></div> <div class="extras"> <div class="game-title"><h2><?php echo the_title(); ?></h2></div> <div class="favourite"><?php wpfp_link() ?></div> <div class="total-plays">Total Plays : <span><?php if(function_exists('the_views')) { the_views(); } ?></span> times</div> </div><!-- end extras --> <div class="actual-game"> <div class="play-wrapper"> <div class="game-inside"> <div class="full-width2"><img src="<?php bloginfo('template_url'); ?>/images/full-width.png" alt=""></div> <?php the_content(); ?> </div> </div> </div> </div> <div class="tags-div"><?php the_tags(); ?></div> <div class="share-focus"> <div class="rate-share"> <div class="rate-share-inner"> <div class="success-msg" style="display:none;"> <span>Thank you, your vote was recorded and the game rating will be updated soon.</span> </div> <div class="user-likes"> <span>DID YOU LIKE THIS GAME?</span> <a href="javascript:void(0);" class="btn-yes-no">Yes</a> <a href="javascript:void(0);" class="btn-yes-no">No</a> </div> <div class="prog-bar"> <?php $likes = rand(900, 980) / 10; $dislikes = 100 - $likes; ?> <div class="prog-div"> <div class="div100"> <div class="prog-label">Yes ?</div> <div class="prog-actual"><?php echo do_shortcode('[rprogress value="'.$likes.'" color="#cc0001" border_radius="7px"]'); ?></div> </div> <div class="div100"> <div class="prog-label">No? ?</div> <div class="prog-actual"><?php echo do_shortcode('[rprogress value="'.$dislikes.'" color="#2b2b2b" border_radius="7px"]'); ?></div> </div> </div> <div class="prog-percent"><?php echo $likes; ?>%</div> </div> </div> </div> <div class="focus4"> <a href="" class="btn-action" title="Remove distractions - Play in focus mode">Focus</a> </div> </div> <!-- end share-focus --> <div class="share-and-inst"> <div class="share-outer"> <div class="share-game"> <?php comments_template(); ?> </div> </div> <div class="game-inst"> <?php the_field( "game_description" ); ?> </div> </div> <!-- end share-and-inst --> <?php endwhile; ?> </div><!-- end detailed-content --> <div class="detail-sidebar"> <?php get_sidebar( 'post' ); ?> </div> <!-- end detail-sidebar --> </div><!-- page-content --> <?php get_footer();
[Moderator Note: Please post code or markup between backticks (not single quotes) or use the code button. Or better still – use a pastebin. Your posted code may now have been permanently damaged by the forum’s parser.]
Forum: Fixing WordPress
In reply to: Comments template not showing up in posts in wordpressIt is single.php
I marked as
<?php comments_template(); ?>
within the outer loop.Forum: Fixing WordPress
In reply to: Comments template not showing up in posts in wordpressAny other solution?
Forum: Fixing WordPress
In reply to: Comments template not showing up in posts in wordpressI will lose all the customizations I have done so far.
Forum: Fixing WordPress
In reply to: Comments template not showing up in posts in wordpressIt is wordpress default theme 2014.
Forum: Plugins
In reply to: [Responsive Progress Bar] Rounded edges for the progress barThank you very much ! I missed to notice the border_radius parameter.
It is really responsive too !