Title: rptr's Replies | WordPress.org

---

# rptr

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-In-One Security (AIOS) – Security and Firewall] ERROR: Your answer was incorrect – please try again.](https://wordpress.org/support/topic/error-your-answer-was-incorrect-please-try-again-2/)
 *  Thread Starter [rptr](https://wordpress.org/support/users/rptr/)
 * (@rptr)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/error-your-answer-was-incorrect-please-try-again-2/#post-18377337)
 * Hi,
 * I found out what the problem is. The problem is that the reCAPTCHA button “I’m
   not a robot” does not appear at all in the login/registration popup, so the user
   cannot check it. You can test it on the website [https://foxym.ro](https://foxym.ro).
   Pop up window you can activate by click on “user icon” in the top right corner.
 * Any idea how to solve it?
 * Peter
    -  This reply was modified 1 year, 2 months ago by [rptr](https://wordpress.org/support/users/rptr/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BEAR - Bulk Editor and Products Manager Professional for WooCommerce by Pluginus.Net] How to bulk import slugs of products?](https://wordpress.org/support/topic/how-to-bulk-import-slugs-of-products/)
 *  Thread Starter [rptr](https://wordpress.org/support/users/rptr/)
 * (@rptr)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/how-to-bulk-import-slugs-of-products/#post-17508755)
 * Hello, thank you for your reply. Now it works. For other people: be careful at
   line 2. It should looks like this:
 * `$csv_file_path = 'https://xyz.com/path/to/your/file.csv'`
    -  This reply was modified 2 years, 2 months ago by [rptr](https://wordpress.org/support/users/rptr/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] Show the page only when the whole page is loaded](https://wordpress.org/support/topic/show-the-page-only-when-the-whole-page-is-loaded/)
 *  Thread Starter [rptr](https://wordpress.org/support/users/rptr/)
 * (@rptr)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/show-the-page-only-when-the-whole-page-is-loaded/#post-17502332)
 * It works now! Thank you for your help. Have a nice day 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BEAR - Bulk Editor and Products Manager Professional for WooCommerce by Pluginus.Net] How to bulk import slugs of products?](https://wordpress.org/support/topic/how-to-bulk-import-slugs-of-products/)
 *  Thread Starter [rptr](https://wordpress.org/support/users/rptr/)
 * (@rptr)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/how-to-bulk-import-slugs-of-products/#post-17499604)
 * Hello [@realmag777](https://wordpress.org/support/users/realmag777/), thank you
   for your reply. I am tried to add this function to my child themes functions.
   php file but with no changes. Can you check it please?
 *     ```wp-block-code
       function update_product_slugs_from_csv() {
   
           $csv_file_path = ABSPATH . 'https://foxym.sk/wp-content/uploads/2024/03/ro-slug.csv';
   
           $file_handle = fopen($csv_file_path, 'r');
   
           if ($file_handle !== FALSE) {
   
               global $wpdb;
   
               fgetcsv($file_handle);
   
               while (($data = fgetcsv($file_handle, 1000, ",")) !== FALSE) {
   
                   $product_id = intval($data[0]);
   
                   $new_slug = sanitize_title($data[1]);
   
                   $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT post_name FROM {$wpdb->posts} WHERE post_name = %s AND ID != %d", $new_slug, $product_id));
   
                   if (!$slug_exists) {
   
                       $wpdb->update(
   
                           $wpdb->posts,
   
                           ['post_name' => $new_slug],
   
                           ['ID' => $product_id]
   
                       );
   
                       echo "Slug for product ID $product_id updated to $new_slug.\n";
   
                   } else {
   
                       echo "Slug $new_slug for product ID $product_id is not unique and was not updated.\n";
   
                   }
   
               }
   
               fclose($file_handle);
   
           } else {
   
               echo "Failed to open the CSV file.\n";
   
           }
   
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] Show the page only when the whole page is loaded](https://wordpress.org/support/topic/show-the-page-only-when-the-whole-page-is-loaded/)
 *  Thread Starter [rptr](https://wordpress.org/support/users/rptr/)
 * (@rptr)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/show-the-page-only-when-the-whole-page-is-loaded/#post-17499410)
 * Hello, report number QFMNCTUH
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[All-In-One Security (AIOS) – Security and Firewall] New bot users with admin rights](https://wordpress.org/support/topic/new-bot-users-with-admin-rights/)
 *  Thread Starter [rptr](https://wordpress.org/support/users/rptr/)
 * (@rptr)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/new-bot-users-with-admin-rights/#post-17482555)
 * Hello, thank you for your reply.
 * This is log from spam bot with admin rights: [https://pastebin.com/wCsA3FqR](https://pastebin.com/wCsA3FqR)
 * This is log from classic spam bot: [https://pastebin.com/6QJZ52te](https://pastebin.com/6QJZ52te)
    -  This reply was modified 2 years, 3 months ago by [rptr](https://wordpress.org/support/users/rptr/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Cant change default payment method](https://wordpress.org/support/topic/cant-change-default-payment-method/)
 *  Thread Starter [rptr](https://wordpress.org/support/users/rptr/)
 * (@rptr)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/cant-change-default-payment-method/#post-17453292)
 * Hi [@ckadenge](https://wordpress.org/support/users/ckadenge/), thank you for 
   your reply. I am tried it but it didnt solve my problem. Do you have any other
   idea?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] First load of page looks bad](https://wordpress.org/support/topic/first-load-of-page-looks-bad/)
 *  Thread Starter [rptr](https://wordpress.org/support/users/rptr/)
 * (@rptr)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/first-load-of-page-looks-bad/#post-16415941)
 * Thanks for the advice on speeding up the site, but I didn’t get an answer to 
   my question. Is it possible to set LiteSpeed to display the page only after the
   CSS is fully loaded?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Search result page title in wrong language](https://wordpress.org/support/topic/search-result-page-title-in-wrong-language/)
 *  Thread Starter [rptr](https://wordpress.org/support/users/rptr/)
 * (@rptr)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/search-result-page-title-in-wrong-language/#post-16384930)
 * Thank you very much for you help. Problem is solved.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Product Feed Manager for WooCommerce – CTX Feed – Support 220+ Shopping & Social Channels] Annoying message](https://wordpress.org/support/topic/annoying-message-6/)
 *  Thread Starter [rptr](https://wordpress.org/support/users/rptr/)
 * (@rptr)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/annoying-message-6/#post-15866003)
 * Message at top of page about review. There was choices something like – add review,
   I already did, I dont want add review, close notice. I click many times all choices
   but it dont close. I need to click dismiss and then it is hide for few days but
   it will again show later. I did it many times for last months.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kybernaut IČO DIČ] Zmena DPH po zadaní údajov + osobitné polia adresa a číslo domu](https://wordpress.org/support/topic/zmena-dph-po-zadani-udajov-osobitne-polia-adresa-a-cislo-domu/)
 *  Thread Starter [rptr](https://wordpress.org/support/users/rptr/)
 * (@rptr)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/zmena-dph-po-zadani-udajov-osobitne-polia-adresa-a-cislo-domu/#post-15832018)
 * Ja som to vyriešil ďalším pluginom. Funguje pekne aj s Kybernautom. Škoda, že
   Kybernaut nemá túto funkciu zabudovanú v sebe. Bolo by to super. Link na plugin:
   [https://platobnebrany.sk/produkt/ic-dph-kontrola-vies/](https://platobnebrany.sk/produkt/ic-dph-kontrola-vies/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kybernaut IČO DIČ] Zmena DPH po zadaní údajov + osobitné polia adresa a číslo domu](https://wordpress.org/support/topic/zmena-dph-po-zadani-udajov-osobitne-polia-adresa-a-cislo-domu/)
 *  Thread Starter [rptr](https://wordpress.org/support/users/rptr/)
 * (@rptr)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/zmena-dph-po-zadani-udajov-osobitne-polia-adresa-a-cislo-domu/#post-15591029)
 * 3. Dlhé odosielanie objednávky spôsobovalo dvojité overovanie DIČ – cez Kybernaut
   a aj WooCommerce EU VAT ID Check.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] After upload category text is all categories 404](https://wordpress.org/support/topic/after-upload-category-text-is-all-categories-404/)
 *  Thread Starter [rptr](https://wordpress.org/support/users/rptr/)
 * (@rptr)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/after-upload-category-text-is-all-categories-404/#post-15589381)
 * Hello, I am sending you export of my settings: `https://easyupload.io/hj9i6w`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] The resource [URL] was preloaded using link preload but not used within…](https://wordpress.org/support/topic/the-resource-url-was-preloaded-using-link-preload-but-not-used-within/)
 *  Thread Starter [rptr](https://wordpress.org/support/users/rptr/)
 * (@rptr)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/the-resource-url-was-preloaded-using-link-preload-but-not-used-within/#post-15555416)
 * I have from the begining turned off DNS Prefetch here: “LiteSpeed Cache / Page
   Optimization / DNS Prefetch Control”. Do you have any other idea?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] The resource [URL] was preloaded using link preload but not used within…](https://wordpress.org/support/topic/the-resource-url-was-preloaded-using-link-preload-but-not-used-within/)
 *  Thread Starter [rptr](https://wordpress.org/support/users/rptr/)
 * (@rptr)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/the-resource-url-was-preloaded-using-link-preload-but-not-used-within/#post-15555314)
 * Thank you very much for your response. How can I re-configure theme to only send
   such sources that are only needed? I need to change something in LiteSpeed settings
   or?

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

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