Title: tkreeft's Replies | WordPress.org

---

# tkreeft

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Email Subscribers & Newsletters - Email Marketing, Post Notifications & Newsletter Plugin for WordPress] Auitomatically fill fields](https://wordpress.org/support/topic/auitomatically-fill-fields/)
 *  [tkreeft](https://wordpress.org/support/users/tkreeft/)
 * (@tkreeft)
 * [8 years ago](https://wordpress.org/support/topic/auitomatically-fill-fields/#post-10235752)
 * [@jandieckmann](https://wordpress.org/support/users/jandieckmann/)
    Sorry for
   the late respond, I didn’t saw your reaction.
 * Here is the single page template I used. (Now I have an another solution, but
   I works):
 *     ```
       <?php
       /*
        * Template Name: Name of template, visible is the UI
        * Template Post Type: page
        */
   
       get_header(); ?>
   
       	<section id="primary" class="content-single content-area">
       		<main id="main" class="site-main" role="main">
   
             <?php while ( have_posts() ) : the_post();
   
       				get_template_part( 'template-parts/content', 'page' );
   
       				comments_template();
   
       			endwhile; ?>
       <!--The form for subscription. Directly below the page content, above the footer. -->
           <div>
             <form class="es_shortcode_form" data-es_form_id="es_shortcode_form">
               <div class="es_lablebox"><label class="es_shortcode_form_name">Naam</label></div>
               <div class="es_textbox"><input name="es_txt_name_pg" class="es_textbox_class" id="es_txt_name_pg" type="text" maxlength="225" value="<?php
                 global $curren_tuser;
                 get_currentuserinfo();
                 echo $current_user->display_name;
                 ?>"></div>
               <div class="es_textbox"><input name="es_txt_email_pg" class="es_textbox_class" id="es_txt_email_pg" style="" type="hidden" maxlength="225" value="<?php
                 global $curren_tuser;
                 get_currentuserinfo();
                 echo $current_user->user_email;
                 ?>"></div>
               <div class="es_button"><input name="es_txt_button_pg" class="es_textbox_button es_submit_button" id="es_txt_button_pg" onclick="return es_submit_pages(event, 'https://thomasatsea.nl/blog')" type="button" value="Abonneren"></div>
               <div class="es_msg" id="es_shortcode_msg"><span id="es_msg_pg"></span></div>
               <input name="es_txt_group_pg" id="es_txt_group_pg" type="hidden" value="Nieuw bericht">
             </form>
           </div>
   
       		</main><!-- #main -->
       	</section><!-- #primary -->
   
       	<?php get_sidebar(); ?>
   
       <?php get_footer(); ?>
       ```
   
 * I hope this is useful for you.
    -  This reply was modified 8 years ago by [tkreeft](https://wordpress.org/support/users/tkreeft/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Paid Memberships Pro - Content Restriction, User Registration, & Paid Subscriptions] Nothing found in category](https://wordpress.org/support/topic/nothing-found-in-category/)
 *  Thread Starter [tkreeft](https://wordpress.org/support/users/tkreeft/)
 * (@tkreeft)
 * [8 years ago](https://wordpress.org/support/topic/nothing-found-in-category/#post-10185074)
 * Hi [@andrew](https://wordpress.org/support/users/andrew/),
 * Not exactly what you think. Logged in people can’t even see content of a blog
   category. That are people who have one of the two right memberships.
 * Please let me know what you need to know to fix the problem.
    -  This reply was modified 8 years ago by [tkreeft](https://wordpress.org/support/users/tkreeft/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Email Subscribers & Newsletters - Email Marketing, Post Notifications & Newsletter Plugin for WordPress] Weird automatic subscriptions](https://wordpress.org/support/topic/weird-automatic-subscriptions/)
 *  Thread Starter [tkreeft](https://wordpress.org/support/users/tkreeft/)
 * (@tkreeft)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/weird-automatic-subscriptions/#post-10159322)
 * [@prathameshp](https://wordpress.org/support/users/prathameshp/)
 * Thank you, if I can do something for you (test something), let me know.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Email Subscribers & Newsletters - Email Marketing, Post Notifications & Newsletter Plugin for WordPress] Auitomatically fill fields](https://wordpress.org/support/topic/auitomatically-fill-fields/)
 *  [tkreeft](https://wordpress.org/support/users/tkreeft/)
 * (@tkreeft)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/auitomatically-fill-fields/#post-10137654)
 * I have solved this problem by copying the html form, editing it and set in in
   a template file. The subscribe page has that pagetemplate.
 *     ```
         <div>
             <form class="es_shortcode_form" data-es_form_id="es_shortcode_form">
               <div class="es_lablebox"><label class="es_shortcode_form_name">Naam</label></div>
               <div class="es_textbox"><input name="es_txt_name_pg" class="es_textbox_class" id="es_txt_name_pg" type="text" maxlength="225" value="<?php
                 global $curren_tuser;
                 get_currentuserinfo();
                 echo $current_user->display_name;
                 ?>"></div>
               <div class="es_textbox"><input name="es_txt_email_pg" class="es_textbox_class" id="es_txt_email_pg" style="" type="hidden" maxlength="225" value="<?php
                 global $curren_tuser;
                 get_currentuserinfo();
                 echo $current_user->user_email;
                 ?>"></div>
               <div class="es_button"><input name="es_txt_button_pg" class="es_textbox_button es_submit_button" id="es_txt_button_pg" onclick="return es_submit_pages(event, 'https://thomasatsea.nl/blog')" type="button" value="Abonneren"></div>
               <div class="es_msg" id="es_shortcode_msg"><span id="es_msg_pg"></span></div>
               <input name="es_txt_group_pg" id="es_txt_group_pg" type="hidden" value="Nieuw bericht">
             </form>
           </div>
       ```
   
 * It works. You have to edit it where you need. I haven hidden the email-form and
   group.

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