Title: lananas1's Replies | WordPress.org

---

# lananas1

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 37 total)

1 [2](https://wordpress.org/support/users/lananas1/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/lananas1/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/lananas1/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Login Page Customizer] New user generate password page](https://wordpress.org/support/topic/new-user-generate-password-page/)
 *  Thread Starter [lananas1](https://wordpress.org/support/users/lananas1/)
 * (@lananas1)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/new-user-generate-password-page/#post-15692015)
 * Hi [@wparslan](https://wordpress.org/support/users/wparslan/), I’ve applied your
   fix – just to clarify, it’s alot of the css that isn’t applying (not just the
   underline on the field).
    If you apply the blue template and then go to this 
   page, you will see what I mean (the shadow, rounded edges etc. is not applyiing
   to the generate password page).
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Login Page Customizer] New user generate password page](https://wordpress.org/support/topic/new-user-generate-password-page/)
 *  Thread Starter [lananas1](https://wordpress.org/support/users/lananas1/)
 * (@lananas1)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/new-user-generate-password-page/#post-15691767)
 * Awesome, thanks for getting back to me [@wparslan](https://wordpress.org/support/users/wparslan/).
 * Can I also ask, is it possible to add some text to this page? If so, how can 
   we do that?
 * Thanks!
    -  This reply was modified 4 years, 1 month ago by [lananas1](https://wordpress.org/support/users/lananas1/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Login Page Customizer] New user generate password page](https://wordpress.org/support/topic/new-user-generate-password-page/)
 *  Thread Starter [lananas1](https://wordpress.org/support/users/lananas1/)
 * (@lananas1)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/new-user-generate-password-page/#post-15687627)
 * I noticed in the custom CC section of the plugin, the CSS had only the following
   forms:
 *     ```
       /* Custom CSS for Material Template */
       #login form#loginform .input,
       #login form#registerform .input,
       #login form#lostpasswordform .input,
       {
       	border-bottom: 1px solid #d2d2d2;
       }
   
       .bar {
       	position: relative;
       	display: block;
       	width: 100%;
       }
   
       .bar:before, .bar:after {
       	content: "";
       	height: 2px; 
       	width: 0;
       	bottom: 15px; 
       	position: absolute;
       	background: #e91e63; 
       	transition: all 0.2s ease;
       }
   
       .bar:before { left: 50%; }
   
       .bar:after { right: 50%; }
   
       input:focus ~ .bar:before, input:focus ~ .bar:after { width: 50%; }
       ```
   
 * /* end */
 * I added #login form#resetpassform .input – so the following:
 *     ```
       /* Custom CSS for Material Template */
       #login form#loginform .input,
       #login form#registerform .input,
       #login form#lostpasswordform .input,
       #login form#resetpassform .input{
       	border-bottom: 1px solid #d2d2d2;
       }
       ```
   
 * …
    — It still didn’t apply – this css doesn’t look like the whole lot tho – how
   can I get it to apply to the ‘resetpassform’ ?
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Customize WordPress Emails and Alerts - Better Notifications for WP] Notifications not sending when creating users via Zapier](https://wordpress.org/support/topic/notifications-not-sending-when-creating-users-via-zapier/)
 *  Thread Starter [lananas1](https://wordpress.org/support/users/lananas1/)
 * (@lananas1)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/notifications-not-sending-when-creating-users-via-zapier/#post-15663123)
 * Hi [@scottgunn1](https://wordpress.org/support/users/scottgunn1/) , putting that
   code in my functions.php worked for me.
 * GL
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Customize WordPress Emails and Alerts - Better Notifications for WP] Notifications not sending when creating users via Zapier](https://wordpress.org/support/topic/notifications-not-sending-when-creating-users-via-zapier/)
 *  Thread Starter [lananas1](https://wordpress.org/support/users/lananas1/)
 * (@lananas1)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/notifications-not-sending-when-creating-users-via-zapier/#post-15651152)
 * Hi Scott, yes I did – it’s a limitation with the wordpress api.
 * You can get around it by adding the following to your functions.php file
 *     ```
       function mynamespace_user_update($user, $request, $create)
       {
         $user_id = $user->ID;
         wp_send_new_user_notifications($user_id);
       }
       add_action( 'rest_insert_user', 'mynamespace_user_update', 12, 3 );
       ```
   
 * GL!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Customize WordPress Emails and Alerts - Better Notifications for WP] Notifications not sending when creating users via Zapier](https://wordpress.org/support/topic/notifications-not-sending-when-creating-users-via-zapier/)
 *  Thread Starter [lananas1](https://wordpress.org/support/users/lananas1/)
 * (@lananas1)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/notifications-not-sending-when-creating-users-via-zapier/#post-15611296)
 * Thanks for getting back to me [@voltronik](https://wordpress.org/support/users/voltronik/)–
   yes, using Zapier.
 * Using the Zapier event ‘Create User’ in wordpress when a new form is submitted
   in formstack.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Customize WordPress Emails and Alerts - Better Notifications for WP] Shortcode for Set-Password-Url](https://wordpress.org/support/topic/shortcode-for-set-password-url/)
 *  [lananas1](https://wordpress.org/support/users/lananas1/)
 * (@lananas1)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/shortcode-for-set-password-url/page/2/#post-15604726)
 * thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Customize WordPress Emails and Alerts - Better Notifications for WP] Shortcode for Set-Password-Url](https://wordpress.org/support/topic/shortcode-for-set-password-url/)
 *  [lananas1](https://wordpress.org/support/users/lananas1/)
 * (@lananas1)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/shortcode-for-set-password-url/page/2/#post-15601882)
 * Hi,
 * Is it possible for the resolution of this to be shared?
    I also have the shortcode[
   password_url] on a notification for ‘New User – Post Registration Email’. I’m
   creating the user via wpadmin and the link isn’t coming across.
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pods - Custom Content Types and Fields] Wp_Options Transient Slowing Site](https://wordpress.org/support/topic/wp_options-transient-slowing-site/)
 *  Thread Starter [lananas1](https://wordpress.org/support/users/lananas1/)
 * (@lananas1)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/wp_options-transient-slowing-site/#post-9596247)
 * Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pods - Custom Content Types and Fields] Wp_Options Transient Slowing Site](https://wordpress.org/support/topic/wp_options-transient-slowing-site/)
 *  Thread Starter [lananas1](https://wordpress.org/support/users/lananas1/)
 * (@lananas1)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/wp_options-transient-slowing-site/#post-9593139)
 * Ok, cool – so do I need to do both?
    IE – pods caching plugin and the wpengine
   object caching? Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pods - Custom Content Types and Fields] Wp_Options Transient Slowing Site](https://wordpress.org/support/topic/wp_options-transient-slowing-site/)
 *  Thread Starter [lananas1](https://wordpress.org/support/users/lananas1/)
 * (@lananas1)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/wp_options-transient-slowing-site/#post-9593045)
 * Another quick question – I use WpEngine and have just turned on Object Caching,
   is this ok with this plugin?
    Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pods - Custom Content Types and Fields] Wp_Options Transient Slowing Site](https://wordpress.org/support/topic/wp_options-transient-slowing-site/)
 *  Thread Starter [lananas1](https://wordpress.org/support/users/lananas1/)
 * (@lananas1)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/wp_options-transient-slowing-site/#post-9593042)
 * Awesome, it does – thanks heaps!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pods - Custom Content Types and Fields] Wp_Options Transient Slowing Site](https://wordpress.org/support/topic/wp_options-transient-slowing-site/)
 *  Thread Starter [lananas1](https://wordpress.org/support/users/lananas1/)
 * (@lananas1)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/wp_options-transient-slowing-site/#post-9592975)
 * Thanks for getting back so quickly – after I install it, do I need to do anything
   to set it up?
    Or do you just activate it and that’s it?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Black Studio TinyMCE Widget] Function to hide widget](https://wordpress.org/support/topic/function-to-hide-widget/)
 *  Thread Starter [lananas1](https://wordpress.org/support/users/lananas1/)
 * (@lananas1)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/function-to-hide-widget/#post-9468277)
 * Great, thanks for your help!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Job Manager] Not able to Enable Job listings Tag Archives](https://wordpress.org/support/topic/not-able-to-enable-job-listings-tag-archives/)
 *  [lananas1](https://wordpress.org/support/users/lananas1/)
 * (@lananas1)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/not-able-to-enable-job-listings-tag-archives/#post-8595995)
 * Hi,
    I also don’t see the option to ‘Enable Tag Archives’ in my listing settings–
   any help would be appreciated. I have Version 1.3.7 of job tags. Thanks

Viewing 15 replies - 1 through 15 (of 37 total)

1 [2](https://wordpress.org/support/users/lananas1/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/lananas1/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/lananas1/replies/page/2/?output_format=md)