Title: virtualedgesolutions's Replies | WordPress.org

---

# virtualedgesolutions

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple CAPTCHA Alternative with Cloudflare Turnstile] Human verification error when logging in on Elementor Pro Checkout page](https://wordpress.org/support/topic/human-verification-error-when-logging-in-on-elementor-pro-checkout-page/)
 *  Thread Starter [virtualedgesolutions](https://wordpress.org/support/users/virtualedgesolutions/)
 * (@virtualedgesolutions)
 * [11 months, 3 weeks ago](https://wordpress.org/support/topic/human-verification-error-when-logging-in-on-elementor-pro-checkout-page/#post-18479292)
 * For the record, THIS HAS NOT BEEN RESOLVED.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple CAPTCHA Alternative with Cloudflare Turnstile] Human verification error when logging in on Elementor Pro Checkout page](https://wordpress.org/support/topic/human-verification-error-when-logging-in-on-elementor-pro-checkout-page/)
 *  Thread Starter [virtualedgesolutions](https://wordpress.org/support/users/virtualedgesolutions/)
 * (@virtualedgesolutions)
 * [11 months, 3 weeks ago](https://wordpress.org/support/topic/human-verification-error-when-logging-in-on-elementor-pro-checkout-page/#post-18479285)
 * For the benefit of anyone else who comes across this, here’s the PHP snippet 
   I’m using in Code Snippets to replace the link in the Elementor Pro checkout 
   form:
 *     ```wp-block-code
       add_action( 'wp_footer', 'ves_replace_elementor_checkout_login_link', 20 );function ves_replace_elementor_checkout_login_link() {    // only on WooCommerce checkout & for guests    if ( ! function_exists('is_checkout') || ! is_checkout() || is_user_logged_in() ) {        return;    }    // build the My Account URL with checkout redirect    $account_url = esc_url( add_query_arg(        'redirect_to',        urlencode( wc_get_checkout_url() ),        wc_get_page_permalink( 'myaccount' )    ) );    ?>    <script>    document.addEventListener('DOMContentLoaded', function(){        // 1) Replace the toggle link HTML        var toggleWrapper = document.querySelector('form[name="checkout"] .woocommerce-form-login-toggle.e-checkout-secondary-title');        if ( toggleWrapper ) {            toggleWrapper.innerHTML =                 'Returning customer? ' +                '<a href="<?php echo $account_url; ?>" class="custom-login-link">' +                  'Click here to login' +                '</a>';        }        // 2) Hide the inline login fields (so the empty bordered box goes away)        var loginContainer = document.querySelector('form[name="checkout"] .e-woocommerce-login-anchor');        if ( loginContainer ) {            loginContainer.style.display = 'none';        }    });    </script>    <?php}
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple CAPTCHA Alternative with Cloudflare Turnstile] Human verification error when logging in on Elementor Pro Checkout page](https://wordpress.org/support/topic/human-verification-error-when-logging-in-on-elementor-pro-checkout-page/)
 *  Thread Starter [virtualedgesolutions](https://wordpress.org/support/users/virtualedgesolutions/)
 * (@virtualedgesolutions)
 * [11 months, 3 weeks ago](https://wordpress.org/support/topic/human-verification-error-when-logging-in-on-elementor-pro-checkout-page/#post-18479262)
 * LOL, that’s what I’m now working on. I’m trying to create a snippet that changes
   the “Returning customer? Click here to login” link to just redirect to the login
   screen, and then redirects back to the checkout page. It’s sad that nobody else
   has this issue to make it worth cloudflare fixing this, and I instead have to
   work around it like this
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple CAPTCHA Alternative with Cloudflare Turnstile] Human verification error when logging in on Elementor Pro Checkout page](https://wordpress.org/support/topic/human-verification-error-when-logging-in-on-elementor-pro-checkout-page/)
 *  Thread Starter [virtualedgesolutions](https://wordpress.org/support/users/virtualedgesolutions/)
 * (@virtualedgesolutions)
 * [11 months, 3 weeks ago](https://wordpress.org/support/topic/human-verification-error-when-logging-in-on-elementor-pro-checkout-page/#post-18479164)
 * Even when I have the turnstile disabled on the checkout page, and when I have
   it disabled during “Pay for Order”, but enabled for logins, it still doesn’t 
   work. In this case, it doesn’t even display the turnstile on the page, but when
   I login, it gives the same error, “Please verify that you are human.” Also, changing
   the widget location on the checkout page doesn’t make a difference. Please advise!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple CAPTCHA Alternative with Cloudflare Turnstile] Human verification error when logging in on Elementor Pro Checkout page](https://wordpress.org/support/topic/human-verification-error-when-logging-in-on-elementor-pro-checkout-page/)
 *  Thread Starter [virtualedgesolutions](https://wordpress.org/support/users/virtualedgesolutions/)
 * (@virtualedgesolutions)
 * [11 months, 3 weeks ago](https://wordpress.org/support/topic/human-verification-error-when-logging-in-on-elementor-pro-checkout-page/#post-18479124)
 * [@riversatile](https://wordpress.org/support/users/riversatile/) Thanks for the
   advice. However, the checkout widget defaults to inactive caching, and I checked
   that it is set to inactive. The issue is that the turnstile automatically runs
   when the page loads, for the checkout. But then, when you click on “click here
   to login”, it then expects another turnstile check for that field, that doesn’t
   see the already-existing turnstile that says “success” below that field. The 
   same thing happened before for forms on popups.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple CAPTCHA Alternative with Cloudflare Turnstile] Conflict with elementor popup function](https://wordpress.org/support/topic/conflict-with-elementor-popup-function/)
 *  [virtualedgesolutions](https://wordpress.org/support/users/virtualedgesolutions/)
 * (@virtualedgesolutions)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/conflict-with-elementor-popup-function/#post-17837541)
 * This seems to have been an issue people keep mentioning for over a year. Anyone
   have a solution or work-around?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[RSS Feed Retriever] disable duplicate images in podcast feed](https://wordpress.org/support/topic/disable-duplicate-images-in-podcast-feed/)
 *  Thread Starter [virtualedgesolutions](https://wordpress.org/support/users/virtualedgesolutions/)
 * (@virtualedgesolutions)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/disable-duplicate-images-in-podcast-feed/#post-17151063)
 * Thanks to chatgpt, I created a code snippet that removes the image from Seriously
   Simple Podcasting’s podcast feed output, so that there won’t be a duplicate image
   in the podcast feed. If anyone’s interested, let me know and I’ll provide it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[RSS Feed Retriever] disable duplicate images in podcast feed](https://wordpress.org/support/topic/disable-duplicate-images-in-podcast-feed/)
 *  Thread Starter [virtualedgesolutions](https://wordpress.org/support/users/virtualedgesolutions/)
 * (@virtualedgesolutions)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/disable-duplicate-images-in-podcast-feed/#post-17119149)
 * I don’t know PHP, but this snippet that Rank Math provided me prevents their 
   plugin from adding the duplicate image to the podcast feed, when I enable their
   plugin to add the images to my RSS feed:
 *     ```wp-block-code
       add_filter('rank_math/frontend/rss/before_content', function ($content) {global $wp;$current_url = home_url(add_query_arg($_GET,$wp->request));if ( str_contains( $current_url, '/feed/podcast') ) {return '';}return $content;}, 10, 1);
       ```
   
 * Can you, or someone else who sees this post, help to adapt it to the site on 
   which I’m using RSS Retriever? Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Lazy Load Elementor Background Images] Update](https://wordpress.org/support/topic/update-592/)
 *  [virtualedgesolutions](https://wordpress.org/support/users/virtualedgesolutions/)
 * (@virtualedgesolutions)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/update-592/#post-15215673)
 * +1 This is a real disappointment. Hope this gets fixed. This was the best solution
   for lazyloading background images using WP Rocket and Elementor! FYI, if anyone’s
   following this issue, the best alternative is to use Optimole, because it lazyloads
   Elementor background images. For this reason, I had to switch to Optimole even
   though I like Imagify better.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MP3 Audio Player – Music Player, Podcast Player & Radio by Sonaar] widget not displaying on post pages](https://wordpress.org/support/topic/widget-not-displaying-on-post-pages/)
 *  Thread Starter [virtualedgesolutions](https://wordpress.org/support/users/virtualedgesolutions/)
 * (@virtualedgesolutions)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/widget-not-displaying-on-post-pages/#post-15052905)
 * Trying something else…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ELEX WooCommerce Google Shopping (Google Product Feed)] Can’t generate feed successfully without manually mapping categories](https://wordpress.org/support/topic/cant-generate-feed-successfully-without-manually-mapping-categories/)
 *  Thread Starter [virtualedgesolutions](https://wordpress.org/support/users/virtualedgesolutions/)
 * (@virtualedgesolutions)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/cant-generate-feed-successfully-without-manually-mapping-categories/#post-14628678)
 * Worked with tech support, which was helpful and responsive. I was provided a 
   custom zip file of the plugin which solved my problem, and am told it will be
   incorporated soon. Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ELEX WooCommerce Google Shopping (Google Product Feed)] Can’t generate feed successfully without manually mapping categories](https://wordpress.org/support/topic/cant-generate-feed-successfully-without-manually-mapping-categories/)
 *  Thread Starter [virtualedgesolutions](https://wordpress.org/support/users/virtualedgesolutions/)
 * (@virtualedgesolutions)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/cant-generate-feed-successfully-without-manually-mapping-categories/#post-14598583)
 * I don’t want to manually map any categories, but your instructions indicate that
   at least one category must be manually mapped, and I can’t click continue on 
   the category mapping page without selecting one. When I leave one category checked
   and manually mapped, only the products in that one category are populated in 
   the feed, and when I have all of them checked and only one mapped, it reverts
   to having only the one checked and manually mapped. I don’t see how “the plugin
   sets the default categories”, after which “I can uncheck unwanted categories”.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ELEX WooCommerce Google Shopping (Google Product Feed)] Can’t generate feed successfully without manually mapping categories](https://wordpress.org/support/topic/cant-generate-feed-successfully-without-manually-mapping-categories/)
 *  Thread Starter [virtualedgesolutions](https://wordpress.org/support/users/virtualedgesolutions/)
 * (@virtualedgesolutions)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/cant-generate-feed-successfully-without-manually-mapping-categories/#post-14598573)
 * Submitted
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ELEX WooCommerce Google Shopping (Google Product Feed)] Can’t generate feed successfully without manually mapping categories](https://wordpress.org/support/topic/cant-generate-feed-successfully-without-manually-mapping-categories/)
 *  Thread Starter [virtualedgesolutions](https://wordpress.org/support/users/virtualedgesolutions/)
 * (@virtualedgesolutions)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/cant-generate-feed-successfully-without-manually-mapping-categories/#post-14596755)
 * Updated to 1.2.1, deleted the feed, created a new feed, and still the same. Having
   two checked, one of which has a category specified. Says it successfully creates
   the feed, but when I go back and look, the map category screen reverts to only
   having the one with a specified category checked, and the feed won’t populate
   with the item in the other category.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Addons for Elementor] White space on right side of mobile caused by HFB menu](https://wordpress.org/support/topic/white-space-on-right-side-of-mobile-caused-by-hfb-menu/)
 *  Thread Starter [virtualedgesolutions](https://wordpress.org/support/users/virtualedgesolutions/)
 * (@virtualedgesolutions)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/white-space-on-right-side-of-mobile-caused-by-hfb-menu/#post-14238611)
 * It was the header for the entire site. I created that temporary url for a short
   time till I figured out the solution, and then removed the url after figuring
   it out. The main url, that now has the fix applied is insurancewarehouse.org.

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

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