Title: parkinternet's Replies | WordPress.org

---

# parkinternet

  [  ](https://wordpress.org/support/users/parkinternet/)

 *   [Profile](https://wordpress.org/support/users/parkinternet/)
 *   [Topics Started](https://wordpress.org/support/users/parkinternet/topics/)
 *   [Replies Created](https://wordpress.org/support/users/parkinternet/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/parkinternet/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/parkinternet/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/parkinternet/engagements/)
 *   [Favorites](https://wordpress.org/support/users/parkinternet/favorites/)

 Search replies:

## Forum Replies Created

Viewing 12 replies - 1 through 12 (of 12 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Affiliate Program Suite — SliceWP Affiliates] Category Based Commission Rates](https://wordpress.org/support/topic/category-based-commission-rates/)
 *  Thread Starter [parkinternet](https://wordpress.org/support/users/parkinternet/)
 * (@parkinternet)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/category-based-commission-rates/#post-17961520)
 * Okay i am planning to purchase your pro plugin but before it i need to know about
   2 things:-
    1. Could you please provide me the changelog history of your pro plugin.
    2. You have listed a addon (Multi currency) will it be included with slice pro 
       or shall i have to buy separately
    3. is free version compatible with your pro version if yes then what is the version
       of your slice pro plugin
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Pending Review Status Visibility](https://wordpress.org/support/topic/pending-review-status-visibility/)
 *  Thread Starter [parkinternet](https://wordpress.org/support/users/parkinternet/)
 * (@parkinternet)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/pending-review-status-visibility/#post-15098203)
 * [@bcworkz](https://wordpress.org/support/users/bcworkz/) can i redirect that 
   page to my custom url if anybody tries to visit such pages.
 * Example:-
 * From:- example.com/?p=16374&preview=true
    To – example.com/my-custom-page
 * until that post is approved.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Comment Layout](https://wordpress.org/support/topic/comment-layout-2/)
 *  Thread Starter [parkinternet](https://wordpress.org/support/users/parkinternet/)
 * (@parkinternet)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/comment-layout-2/#post-14040062)
 * Thnaks Sir great service can you please solve my another issue? i will be highly
   grateful to you.. Another Topic link – [https://wordpress.org/support/topic/image-css/](https://wordpress.org/support/topic/image-css/)
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Comment Layout](https://wordpress.org/support/topic/comment-layout-2/)
 *  Thread Starter [parkinternet](https://wordpress.org/support/users/parkinternet/)
 * (@parkinternet)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/comment-layout-2/#post-14028810)
 * [@bcworkz](https://wordpress.org/support/users/bcworkz/) I tried but it doesn’t
   worked, i am providing you all my comment.php code pls check :- whether i have
   to insert it :-
 *     ```
       <?php
       /**
        * The template for displaying Comments.
        *
        * The area of the page that contains both current comments
        * and the comment form. The actual display of comments is
        * handled by a callback to generate_comment() which is
        * located in the inc/template-tags.php file.
        *
        * @package GeneratePress
        */
   
       if ( ! defined( 'ABSPATH' ) ) {
       	exit; // Exit if accessed directly.
       }
   
       /*
        * If the current post is protected by a password and
        * the visitor has not yet entered the password we will
        * return early without loading the comments.
        */
       if ( post_password_required() ) {
       	return;
       }
   
       /**
        * generate_before_comments hook.
        *
        * @since 0.1
        */
       do_action( 'generate_before_comments' );
       ?>
       <div id="comments">
   
       	<?php
       	/**
       	 * generate_inside_comments hook.
       	 *
       	 * @since 1.3.47
       	 */
       	do_action( 'generate_inside_comments' );
   
       	if ( have_comments() ) :
       		$comments_number = get_comments_number();
       		$comments_title = apply_filters(
       			'generate_comment_form_title',
       			sprintf(
       				esc_html(
       					/* translators: 1: number of comments, 2: post title */
       					_nx(
       						'%1$s thought on &ldquo;%2$s&rdquo;',
       						'%1$s thoughts on &ldquo;%2$s&rdquo;',
       						$comments_number,
       						'comments title',
       						'generatepress'
       					)
       				),
       				number_format_i18n( $comments_number ),
       				get_the_title()
       			)
       		);
   
       		// phpcs:ignore -- Title escaped in output.
       		echo apply_filters(
       			'generate_comments_title_output',
       			sprintf(
       				'<h3 class="comments-title">%s</h3>',
       				esc_html( $comments_title )
       			),
       			$comments_title,
       			$comments_number
       		);
   
       		/**
       		 * generate_below_comments_title hook.
       		 *
       		 * @since 0.1
       		 */
       		do_action( 'generate_below_comments_title' );
   
       		if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) :
       			?>
       			<nav id="comment-nav-above" class="comment-navigation" role="navigation">
       				<h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'generatepress' ); ?></h2>
       				<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'generatepress' ) ); ?></div>
       				<div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'generatepress' ) ); ?></div>
       			</nav><!-- #comment-nav-above -->
       		<?php endif; ?>
       		<ol class="comment-list">
       			<?php
       			/*
       			 * Loop through and list the comments. Tell wp_list_comments()
       			 * to use generate_comment() to format the comments.
       			 * If you want to override this in a child theme, then you can
       			 * define generate_comment() and that will be used instead.
       			 * See generate_comment() in inc/template-tags.php for more.
       			 */
       			wp_list_comments(
       				array(
       					'callback' => 'generate_comment', 
       				)
       			);
       			?>
       		</ol><!-- .comment-list -->
   
       		<?php
       		if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) :
       			?>
       			<nav id="comment-nav-below" class="comment-navigation" role="navigation">
       				<h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'generatepress' ); ?></h2>
       				<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'generatepress' ) ); ?></div>
       				<div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'generatepress' ) ); ?></div>
       			</nav><!-- #comment-nav-below -->
       			<?php
       		endif;
   
       	endif;
   
       	// phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
       	if ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
       		?>
       		<p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'generatepress' ); ?></p>
       		<?php
       	endif;
   
       	comment_form();
       	?>
   
       </div><!-- #comments -->
       ```
   
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Image css](https://wordpress.org/support/topic/image-css/)
 *  Thread Starter [parkinternet](https://wordpress.org/support/users/parkinternet/)
 * (@parkinternet)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/image-css/#post-14028726)
 * [@gappiah](https://wordpress.org/support/users/gappiah/) i am not writing my 
   posts on post section so that i can’t change the html and add inline css class
   to it, my image is on my media library and i want to place it into my elementor
   designing template but i need that image css to customise it, but how can i make
   the css class of that image? is there any plugin to do that or an any php code
   to directly insert random css class to each image.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Comment Layout](https://wordpress.org/support/topic/comment-layout-2/)
 *  Thread Starter [parkinternet](https://wordpress.org/support/users/parkinternet/)
 * (@parkinternet)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/comment-layout-2/#post-14025760)
 *     ```
       		<ol class="comment-list">
       			<?php
       			/*
       			 * Loop through and list the comments. Tell wp_list_comments()
       			 * to use generate_comment() to format the comments.
       			 * If you want to override this in a child theme, then you can
       			 * define generate_comment() and that will be used instead.
       			 * See generate_comment() in inc/template-tags.php for more.
       			 */
       			wp_list_comments(
       				array(
       					'callback' => 'generate_comment', 
       				)
       			);
       			?>
       		</ol><!-- .comment-list -->
   
       		<?php
       ```
   
 * This is my Php code that i found in comment.php (Can you suggest me where i have
   to put the hooks?)
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Comment Layout](https://wordpress.org/support/topic/comment-layout-2/)
 *  Thread Starter [parkinternet](https://wordpress.org/support/users/parkinternet/)
 * (@parkinternet)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/comment-layout-2/#post-14017938)
 * [https://test.papadrug.com/post1/](https://test.papadrug.com/post1/) this is 
   my website i want to place it into, can you please provide me php hook code for
   that? Please? You are only giving call function but i dont know how to jnsert
   that, can you please provide me full php hook for that?
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Comment Layout](https://wordpress.org/support/topic/comment-layout-2/)
 *  Thread Starter [parkinternet](https://wordpress.org/support/users/parkinternet/)
 * (@parkinternet)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/comment-layout-2/#post-14015207)
 * I don’t have enough knowledge of php, can you provide me the code of php snippet,
   i can cutomize it’s css.
 * i tried this, but it doesn’t worked :-
 *     ```
       add_action('wp_list_comments',function(){
       echo '<a href="#reply-title">Leave a Comment</a>';
       });
       ```
   
    -  This reply was modified 5 years, 5 months ago by [parkinternet](https://wordpress.org/support/users/parkinternet/).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[GeneratePress] Comment Layout](https://wordpress.org/support/topic/comment-layout/)
 *  Thread Starter [parkinternet](https://wordpress.org/support/users/parkinternet/)
 * (@parkinternet)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/comment-layout/#post-14007562)
 * Ok thanks for your free help, now it’s time to close the support forum !!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[GeneratePress] Comment Layout](https://wordpress.org/support/topic/comment-layout/)
 *  Thread Starter [parkinternet](https://wordpress.org/support/users/parkinternet/)
 * (@parkinternet)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/comment-layout/#post-14003139)
 * Thanks [@ejcabquina](https://wordpress.org/support/users/ejcabquina/) it’s worked,
   one last help can we add a button after “Leave a reply” like this [https://prnt.sc/ya6ba9](https://prnt.sc/ya6ba9).
   Such that users can easily navigate through it. Please Sir Last help
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[GeneratePress] Comment Layout](https://wordpress.org/support/topic/comment-layout/)
 *  Thread Starter [parkinternet](https://wordpress.org/support/users/parkinternet/)
 * (@parkinternet)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/comment-layout/#post-14002441)
 * Thanks [@ejcabquina](https://wordpress.org/support/users/ejcabquina/) but i want
   to move the comment policy text below leave a reply
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[GeneratePress] Comment Layout](https://wordpress.org/support/topic/comment-layout/)
 *  Thread Starter [parkinternet](https://wordpress.org/support/users/parkinternet/)
 * (@parkinternet)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/comment-layout/#post-14001903)
 * Ok sir no problem !! , Can you please provide me the code of how can i change
   the alignment? It means how to add comment policy below the title and and alignment
   of placeholder box like given here – [https://kinsta.com/blog/rank-math-vs-yoast](https://kinsta.com/blog/rank-math-vs-yoast)

Viewing 12 replies - 1 through 12 (of 12 total)