Title: Gerson L.'s Replies | WordPress.org

---

# Gerson L.

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[FluentAuth - The Ultimate Authorization & Security Plugin for WordPress] Feature Request – 2FA with Authenticator app](https://wordpress.org/support/topic/feature-request-2fa-with-authenticator-app/)
 *  [Gerson L.](https://wordpress.org/support/users/gslweb/)
 * (@gslweb)
 * [7 months, 1 week ago](https://wordpress.org/support/topic/feature-request-2fa-with-authenticator-app/#post-18709639)
 * I was just going to request this.
 * I use Proton Pass and there’s an authenticator built in so it’s so much easier
   to enter the 2FA code.
 * I hope this gets implemented.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TranslatePress - Translate Multilingual sites with AI Translation] Keyboard Accessibility](https://wordpress.org/support/topic/keyboard-accessibility-7/)
 *  Thread Starter [Gerson L.](https://wordpress.org/support/users/gslweb/)
 * (@gslweb)
 * [10 months, 1 week ago](https://wordpress.org/support/topic/keyboard-accessibility-7/#post-18589194)
 * It did but I think the UX got even more confusing. After pressing Enter, the 
   user would need to press Tab and then press Enter again.
 * Is there a way to just make a button that’s clickable once and it will take the
   user to the translated version?
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Widgets for Google Business Reviews and Ratings] Intrusive Popup](https://wordpress.org/support/topic/intrusive-popup/)
 *  [Gerson L.](https://wordpress.org/support/users/gslweb/)
 * (@gslweb)
 * [1 year, 1 month ago](https://wordpress.org/support/topic/intrusive-popup/#post-18426444)
 * Payment Gateway for PayPal on WooCommerce (by easypayment)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Equalize Digital Accessibility Checker - WCAG, ADA, EAA and Section 508 compliance] Should abbreviated words get flagged as a warning?](https://wordpress.org/support/topic/should-abbreviated-words-get-flagged-as-a-warning/)
 *  Thread Starter [Gerson L.](https://wordpress.org/support/users/gslweb/)
 * (@gslweb)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/should-abbreviated-words-get-flagged-as-a-warning/#post-18046324)
 * Accessibility Checker already flags <abbr> elements because it natively has the
   underline text decoration set by at least all the browsers I’ve tested with. 
   I’m asking if this should be flagged as a warning. I understand that putting 
   underline to elements that aren’t links definitely warrants at least a warning,
   but if there’s anything I recall about <abbr> elements is that they always have
   a dotted underline.
 * If this indeed deserves a warning flag, what is the best way to style <abbr> 
   elements that wouldn’t raise any alert from the plugin?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GenerateBlocks] Shortcodes and Processing Dynamic Data](https://wordpress.org/support/topic/shortcodes-and-processing-dynamic-data/)
 *  Thread Starter [Gerson L.](https://wordpress.org/support/users/gslweb/)
 * (@gslweb)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/shortcodes-and-processing-dynamic-data/#post-16988676)
 * Thanks! In case anyone needs it, here’s what I was able to come up with for #
   1:
 *     ```wp-block-code
       add_filter( 'render_block', function( $block_content, $block ) {
           if ( !is_admin() && ! empty( $block['attrs']['className'] ) && strpos( $block['attrs']['className'], 'user-class-here' ) !== false ) {
       		$hosts = get_field('acf_user_field_id');
               if( $hosts ) {
                   $hosts_list = '<p>';
                   foreach( $hosts as $host ) {
                       $hosts_list .= $host['display_name'];
                   }
                   $hosts_list .= '</p>';
                   $block_content .= $hosts_list;
               }
   
           }
   
           return $block_content;
       }, 10, 2 );
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GenerateBlocks] Shortcodes and Processing Dynamic Data](https://wordpress.org/support/topic/shortcodes-and-processing-dynamic-data/)
 *  Thread Starter [Gerson L.](https://wordpress.org/support/users/gslweb/)
 * (@gslweb)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/shortcodes-and-processing-dynamic-data/#post-16987919)
 * Would you be able to provide simple examples on how to use each of these?

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