Title: Tim Vergara's Replies | WordPress.org

---

# Tim Vergara

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/tim01/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/tim01/replies/page/3/?output_format=md) …
[10](https://wordpress.org/support/users/tim01/replies/page/10/?output_format=md)
[11](https://wordpress.org/support/users/tim01/replies/page/11/?output_format=md)
[12](https://wordpress.org/support/users/tim01/replies/page/12/?output_format=md)
[→](https://wordpress.org/support/users/tim01/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Payments via PayMongo for WooCommerce] PayMongo Payment options not showing on Checkout page](https://wordpress.org/support/topic/paymongo-payment-options-not-showing-on-checkout-page/)
 *  [Tim Vergara](https://wordpress.org/support/users/tim01/)
 * (@tim01)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/paymongo-payment-options-not-showing-on-checkout-page/#post-17835233)
 * Update: I was able to fix the payments also by downgrading to PHP 7.4 and WC 
   8.9.3 + switching to legacy mode and not the new high performance thing of WC.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Payments via PayMongo for WooCommerce] PayMongo Payment options not showing on Checkout page](https://wordpress.org/support/topic/paymongo-payment-options-not-showing-on-checkout-page/)
 *  [Tim Vergara](https://wordpress.org/support/users/tim01/)
 * (@tim01)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/paymongo-payment-options-not-showing-on-checkout-page/#post-17835140)
 * Hi [@king_slick](https://wordpress.org/support/users/king_slick/) Thanks for 
   this. I was able to show the payment gateway also but when testing with checkout,
   It hangs on payment processing. What versions of WC, WP and PHP version are you
   using? and which Paymongo gateways have you tried to make it work?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Payments via PayMongo for WooCommerce] PayMongo Payment options not showing on Checkout page](https://wordpress.org/support/topic/paymongo-payment-options-not-showing-on-checkout-page/)
 *  [Tim Vergara](https://wordpress.org/support/users/tim01/)
 * (@tim01)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/paymongo-payment-options-not-showing-on-checkout-page/#post-17830227)
 * I’m getting a similar issue also. I made sure all fields are fieldout properly
   but the gateways are not showing on checkout.
 * I even made a fresh install of WP + WC + paymongo only but it’s the same. Same
   with changing php versions.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ShipStation for WooCommerce] Error Connecting to Shipstation](https://wordpress.org/support/topic/error-connecting-to-shipstation/)
 *  Thread Starter [Tim Vergara](https://wordpress.org/support/users/tim01/)
 * (@tim01)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/error-connecting-to-shipstation/#post-12971788)
 * Hello,
 * Sorry to update you late, I have managed to fix the issue. I’m marking this as
   closed.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Paid Memberships Pro - Content Restriction, User Registration, & Paid Subscriptions] Password on Registration Doesn’t work](https://wordpress.org/support/topic/password-on-registration-doesnt-work/)
 *  Thread Starter [Tim Vergara](https://wordpress.org/support/users/tim01/)
 * (@tim01)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/password-on-registration-doesnt-work/#post-12194342)
 * Thanks! I have created a bug report on the Github repository. I’m not sure how
   you classify bugs, But I think this is a little urgent one because it involved
   user passwords?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Paid Memberships Pro - Content Restriction, User Registration, & Paid Subscriptions] Password on Registration Doesn’t work](https://wordpress.org/support/topic/password-on-registration-doesnt-work/)
 *  Thread Starter [Tim Vergara](https://wordpress.org/support/users/tim01/)
 * (@tim01)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/password-on-registration-doesnt-work/#post-12192853)
 * Hello,
 * I made some digging on the checkout code. It seems like the password field is
   passed to the WP function “sanitize_text_field” which sanitizes the passwords.
   The issue is the password now changes.
 * `$password = sanitize_text_field($_REQUEST['password']);`
 * Example:
 * `$password = sanitize_text_field( 'Dgfttr%54gs2' );`
 * This code would result to: “Dgfttrgs2” which is not the same as to what the user
   have typed, thus login in again would mean that the password is incorrect.
 * or
 * `$password = sanitize_text_field( 'AbCd%54eFg' );`
 * This code would result to: “AbCdeFg” which is entirely different also..
 * However, If you use some password like:
 * `$password = sanitize_text_field( 'DGSg%%4trh' );`
 * This code would result to: “DGSg%%4trh” which is the same as what the user has
   typed.
 * With this, I hope that it’s considered now as bug.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Paid Memberships Pro - Content Restriction, User Registration, & Paid Subscriptions] Password on Registration Doesn’t work](https://wordpress.org/support/topic/password-on-registration-doesnt-work/)
 *  Thread Starter [Tim Vergara](https://wordpress.org/support/users/tim01/)
 * (@tim01)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/password-on-registration-doesnt-work/#post-12192780)
 * Hi [@andrewza](https://wordpress.org/support/users/andrewza/),
 * Unfortunately, I don’t think that it’s a site-specific issue. I have already 
   tried it on 3 different hosting sites, multiple local installations with different
   PHP versions and it’s the same. This happens only specifically on PMPRO which
   is weird. I don’t think it’s a matter of single and multi-site issue also as 
   it happens on my single site install. I even tested it on your latest release
   2 to 3 days ago and no luck. It’s very specific to some passwords with percent
   + 2 digit integer.
 * Single Site:
    [http://pmprosingle.timstructures.com/membership-account/membership-levels/](http://pmprosingle.timstructures.com/membership-account/membership-levels/)
 * Multisite:
    [http://pmpro.timstructures.com/membership-account/membership-levels/](http://pmpro.timstructures.com/membership-account/membership-levels/)
 * Try and register with any usernames and use password like: **Dgfttr%54gs2**
 * I have already tried changing the database encoding and it’s still the same. 
   I have tried using the same database also for WooCommerce and it doesn’t happen
   to them.
 * They are both PHP 5.3 that uses PHP 7.3 and only the PMPRO plugin is installed
   and Twenty Nineteen theme is activated.
 * If you have a demo site where I could try to register, Feel free to send me a
   link and I would test it there.
 * Thanks!
 * While waiting for the reply, I’ll try to dig the code and find the cause, My 
   guess is that there’s probably a code where pmpro thinks that the “%54” in the
   password is an encoded character. (ie: It thinks that it’s a letter “T”) [https://www.w3schools.com/tags/ref_urlencode.asp](https://www.w3schools.com/tags/ref_urlencode.asp)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Paid Memberships Pro - Content Restriction, User Registration, & Paid Subscriptions] Password on Registration Doesn’t work](https://wordpress.org/support/topic/password-on-registration-doesnt-work/)
 *  Thread Starter [Tim Vergara](https://wordpress.org/support/users/tim01/)
 * (@tim01)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/password-on-registration-doesnt-work/#post-12181297)
 * Thanks!
 * Have you tried registering on the test site that I provided? Please let us know
   also if you managed to replicate it as it happens on any Installation I made.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Paid Memberships Pro - Content Restriction, User Registration, & Paid Subscriptions] Password on Registration Doesn’t work](https://wordpress.org/support/topic/password-on-registration-doesnt-work/)
 *  Thread Starter [Tim Vergara](https://wordpress.org/support/users/tim01/)
 * (@tim01)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/password-on-registration-doesnt-work/#post-12178228)
 * Hello,
 * I’ve set-up a site where you can test. [http://venernet.org/membership-account/membership-levels/](http://venernet.org/membership-account/membership-levels/)
 * When you purchase, You can enter any fake credit card number to test. then on
   password put something like **Dhhfs%54Rg**. After that logout and login again
   using those credentials.
 * The only plugin installed on that site is the free version of PMPRO. Here’s a
   screenshot on the backend: [https://take.ms/y5wyw](https://take.ms/y5wyw)
 * I could share the login credentials of the admin if there’s a secured link or
   email I could send it to.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Geolocation IP Detection] Fatal error: Call to undefined function is_user_logged_in() in ….](https://wordpress.org/support/topic/fatal-error-call-to-undefined-function-is_user_logged_in-in/)
 *  Thread Starter [Tim Vergara](https://wordpress.org/support/users/tim01/)
 * (@tim01)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/fatal-error-call-to-undefined-function-is_user_logged_in-in/#post-11771427)
 * Hello,
 * Just wanted to bump this up, The latest release doesn’t fix the issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Embedded Map](https://wordpress.org/support/topic/embedded-map-2/)
 *  [Tim Vergara](https://wordpress.org/support/users/tim01/)
 * (@tim01)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/embedded-map-2/#post-10950778)
 * Hello,
 * You would still need to use the #_LOCATIONMAP for the embeded map placehodler.
   Then under Events > Settings > Google Maps and Location Services > Select the
   Embedded Map.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Location not found](https://wordpress.org/support/topic/location-not-found-9/)
 *  [Tim Vergara](https://wordpress.org/support/users/tim01/)
 * (@tim01)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/location-not-found-9/#post-10946128)
 * Hello,
 * Google Maps have recently changed their set-up. They now charge things after 
   to a certain Extent. You now need to Add a Billing information on your account.
 * You could also check the instructions on how to get API key here: [https://developers.google.com/maps/documentation/javascript/get-api-key](https://developers.google.com/maps/documentation/javascript/get-api-key)
 * You could check our documentation on how to add/configure API here: [https://wp-events-plugin.com/documentation/google-maps/](https://wp-events-plugin.com/documentation/google-maps/)
 * If you’re having trouble with the map showing Location not found after you have
   inputted your API key, You could try and this thread.
 * Can you also make sure that you have also enabled the following API’s and added
   the Billing Info?
    1, Make sure that you have also added your BILLING ADDRESS,
   This is because google maps requires billing information now. 2. Geocoding API
   3. Geolocating API 4. Directions API 5. Distance API 6. Elevation API
 * After you have made sure that you have activated those, You might need to re-
   enter the addresses again on the Field for the map to show.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] WP Event Manager WP_Query not excluding past events in loop](https://wordpress.org/support/topic/wp-event-manager-wp_query-not-excluding-past-events-in-loop/)
 *  [Tim Vergara](https://wordpress.org/support/users/tim01/)
 * (@tim01)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/wp-event-manager-wp_query-not-excluding-past-events-in-loop/#post-10946117)
 * Hello,
 * With the output and attributes you want. I think it would be better to just use
   a combination of shortcodes and placeholders.
 * [https://wp-events-plugin.com/documentation/shortcodes/](https://wp-events-plugin.com/documentation/shortcodes/)
   
   [https://wp-events-plugin.com/documentation/placeholders/](https://wp-events-plugin.com/documentation/placeholders/)
   [https://wp-events-plugin.com/documentation/event-search-attributes/](https://wp-events-plugin.com/documentation/event-search-attributes/)
 * You could event wrap the placeholders on html tags. I would suggest checking 
   the scope attribute also which lets you specify if you want to get the past, 
   future events.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Location not working all of a sudden?](https://wordpress.org/support/topic/location-not-working-all-of-a-sudden/)
 *  [Tim Vergara](https://wordpress.org/support/users/tim01/)
 * (@tim01)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/location-not-working-all-of-a-sudden/#post-10946079)
 * Hello,
 * Google Maps have recently changed their set-up. They now charge things after 
   to a certain Extent. You now need to Add a Billing information on your account.
 * You could also check the instructions on how to get API key here: [https://developers.google.com/maps/documentation/javascript/get-api-key](https://developers.google.com/maps/documentation/javascript/get-api-key)
 * You could check our documentation on how to add/configure API here: [https://wp-events-plugin.com/documentation/google-maps/](https://wp-events-plugin.com/documentation/google-maps/)
 * If you’re having trouble with the map showing Location not found after you have
   inputted your API key, You could try and this thread.
 * Can you also make sure that you have also enabled the following API’s and added
   the Billing Info?
    1, Make sure that you have also added your BILLING ADDRESS,
   This is because google maps requires billing information now. 2. Geocoding API
   3. Geolocating API 4. Directions API 5. Distance API 6. Elevation API
 * After you have made sure that you have activated those, You might need to re-
   enter the addresses again on the Field for the map to show.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Events Manager countdown](https://wordpress.org/support/topic/events-manager-countdown/)
 *  [Tim Vergara](https://wordpress.org/support/users/tim01/)
 * (@tim01)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/events-manager-countdown/#post-10931884)
 * Hello,
 * I have tried the link you posted and it doesn’t load on me.
 * Events Manager doesn’t have a countdown timer. Are you using a 3rd part plugin
   for the said countdown?

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

1 [2](https://wordpress.org/support/users/tim01/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/tim01/replies/page/3/?output_format=md) …
[10](https://wordpress.org/support/users/tim01/replies/page/10/?output_format=md)
[11](https://wordpress.org/support/users/tim01/replies/page/11/?output_format=md)
[12](https://wordpress.org/support/users/tim01/replies/page/12/?output_format=md)
[→](https://wordpress.org/support/users/tim01/replies/page/2/?output_format=md)