Santosh Pasi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to delete or block email subscription followers?The following url will help you
https://en.support.wordpress.com/followers/
Forum: Fixing WordPress
In reply to: Distorted ImagesThe media file in WordPress is auto-resize when we upload the image. You can set it from the admin to full size.
your resize image.
https://www.geeksandgamers.com/wp-content/uploads/2017/08/final-fantasy-xv-comrades-700x325.jpg
your full-size image
https://www.geeksandgamers.com/wp-content/uploads/2017/08/final-fantasy-xv-comrades.jpg
Follow the steps given below.
1) go to admin media and select image.
2) click on Edit image button.
3) on right side select “All image sizes” under “Apply changes to” optionForum: Fixing WordPress
In reply to: Remove Last Page from Pagination LinksThe given URL will help you.
https://codex.www.ads-software.com/Function_Reference/paginate_links
Forum: Fixing WordPress
In reply to: Remove or hide reply to comment linkWelcome,
if you need to remove the “reply” to comment link at the bottom of each comment.
The given code will help you.
1) Please find the file in you website folder
Path is : “/yoursite/wp-includes/class-walker-comment.php”
2) find the below code in the file class-walker-comment.php
<?php
comment_reply_link( array_merge( $args, array(
‘add_below’ => ‘div-comment’,
‘depth’ => $depth,
‘max_depth’ => $args[‘max_depth’],
‘before’ => ‘<div class=”reply”>’,
‘after’ => ‘</div>’
) ) );
?>3) and replace with the code
<?php
comment_reply_link( array_merge( $args, array(
‘add_below’ => ‘div-comment’,
‘depth’ => $depth,
‘max_depth’ => $args[‘max_depth’],
‘before’ => ‘<div class=”reply” style=”display:none;”>’,
‘after’ => ‘</div>’
) ) );
?>Forum: Fixing WordPress
In reply to: Remove or hide reply to comment linkYou can also get help from this video.
- This reply was modified 7 years, 7 months ago by Santosh Pasi.
Forum: Fixing WordPress
In reply to: Remove or hide reply to comment linkif you want desable comments from all pages use this plugin.
https://www.ads-software.com/plugins/disable-comments/or
to go to Settings -> Discussion in the WordPress admin and uncheck the “Allow people to post comments on new articles” option. Doing so will disable comments for all future posts.
for help : https://en.support.wordpress.com/settings/discussion-settings/thanks
Forum: Fixing WordPress
In reply to: Causes errors to appear on every admin page.Please Follow the steps written below.
1) disable the plugin,
2) delete it completely
3) install again.
If you install cache plugin,
4) clear all caches.Also, change line in your wp-config.php file:
define( ‘WP_DEBUG’, false );– Still, if this error is coming, then update the latest WordPress Version 4.8.1
Thanks.