Ren Ventura
Forum Replies Created
-
Forum: Reviews
In reply to: [WP Delete User Accounts] Works nice, lightweightThree stars for a free plugin that works well, and as intended? I have to say, it’s people like you that make developers not want to contribute to open source. Stay awesome!
Forum: Plugins
In reply to: [WooCommerce Add to Cart Custom Redirect] Premium Ajax Add to CartHi, there! The premium WC-Redirects plugin will trigger the redirect on an AJAX add-to-cart. However, the popup plugin opens a popup on the same event as the redirect is triggered, which means the popup will likely still appear, at least until the redirect occurs.
That said, I think it would be a good addition to my plugin to add some custom events to the redirect script, which could be used for hiding the popup as soon as it’s launched. If you decide to purchase, send me a message through the site, and I can help you get this implemented.
Forum: Plugins
In reply to: [WP Delete User Accounts] shortcode in templateNo need to create a new template. You likely only need to load the Javascript. Try adding this snippet to your functions.php file.
add_filter( 'wp_delete_user_accounts_load_assets_on_frontend', 'wp_delete_user_accounts_load_assets_on_frontend' ); function wp_delete_user_accounts_load_assets_on_frontend( $load ) { return true; }
- This reply was modified 5 years, 9 months ago by Ren Ventura.
Forum: Plugins
In reply to: [WP Delete User Accounts] shortcode in templateHi, there. Without seeing your site to know for sure, I can only speculate, but I’d guess this is because the assets are not being loaded on your frontend. By default, the plugin doesn’t load the required Javascript unless the current page has the
[wp_delete_user_accounts]
shortcode. This means that echoing the shortcode in your template is only one of the steps required for making it work outside of a page’s content.To manually load the assets on the frontend, you’ll need to use the
wp_delete_user_accounts_load_assets_on_frontend
filter. For an example, you can refer to the plugin’s Github page. https://github.com/renventura/wp-delete-user-accounts#hooks.Hopefully that helps!
Forum: Plugins
In reply to: [WP Delete User Accounts] Translate word “Cancel” on buttonHi, David. You can now translate the Cancel button’s text in the latest version. I’ll mark this as closed for now. Let me know if you need further help.
Hi. When you get a white screen, it typically means an error is being thrown that’s causing the rendering of the page to fail. These kinds of errors can be read by enabling WP_DEBUG. If you enable WP_DEBUG and send me the error that is produced, I can look into it.
Hi there! My plugin does not support that type of redirect, but it can be achieved with some custom code.
Forum: Plugins
In reply to: [WooCommerce Add to Cart Custom Redirect] Redirect in a new tabHi there. Typically, redirects only work in the same tab/window. Opening a link in another tab or window is just opening another URL, rather than redirecting. Semantics aside, though, you can achieve the results you want, but it would require some customization.