WP24
Forum Replies Created
-
Forum: Plugins
In reply to: [WP24 Domain Check] Free Domain only with other productThat’s indeed a bit too special. Maybe you could solve this with grouped products.
An other idea is to automatically edit the cart items, depending on the choosen products.
That would be a solution independently from the domaincheck plugin.
You could contact me via mail if you need more informations, gladly also in german.Forum: Plugins
In reply to: [WP24 Domain Check] Extra tldgr.whois-servers.net is not working, it always says that the domain is free.
I have not found any working public whois server for .gr.Forum: Plugins
In reply to: [WP24 Domain Check] Extra tldUnfortunately the .gr TLD has no puplic whois server and is therfore not supported by the plugin.
You could enable “Unsupported TLDs” and possibly “Verification link” in the andvanced settings to support that TLD.I’am afraid that this would not work with the WooCommerce integration of the plugin.
An idea could be to use the Prices & Links and create a custom page to which you pass the domain and then store it in a global variable. For example https://yourdomain.com/savedomain.php?domain=\[domain\].\[tld\]. Inside the savedomain.php you read the domainname from the URL and save it into a global variable. Then you redirect to the product page.The domain name is stored within the cart item. So you would have to loop through the cart items and find the corresponding product to get the domain name.
Something like this (content-single-product.php):foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) { if ( $cart_item['product_id'] == get_the_ID() ) echo $cart_item['wp24_domain']; }Forum: Plugins
In reply to: [WP24 Domain Check] Suggestions if domain is already takenTo show all other TLDs automatically if the choosen TLD is not available is not useful in my opinion. Because the check would, depending on the defined amount of TLDs, take much longer.
But to show a button like “check all other TLDs” afterwards could help in that case. I’ll consider of adding this in the next update of the pluginForum: Plugins
In reply to: [WP24 Domain Check] Bugs after the last update to WP 6.1?I have released an update of the plugin, it should now work again.
Forum: Plugins
In reply to: [WP24 Domain Check] Bugs after the last update to WP 6.1?Are you using the latest version (1.10.3) of the plugin?
Which general settings have you set?I’m sorry, but this is not possible.
Forum: Plugins
In reply to: [WP24 Domain Check] Bugs after the last update?Hope to have fixed it now.
Forum: Plugins
In reply to: [WP24 Domain Check] Bugs after the last update?Thanks for reporting that issue, it is fixed with the latest update.
The order of the TLDs is also preserved now.It’s fixed with the last update.
You can now set the display type in the shortcode:
display_type=default or gradual_loading or overlayYou’re right, that is a bit confusing.
I’ll fix that with the next update of the plugin.Currently that is not possible. But I’ll add the display type to the shortcode, so that it could be set there.