WP24
Forum Replies Created
-
Forum: Plugins
In reply to: [WP24 Domain Check] Recaptcha failThanks for reporting this issue, an update has just been released to fix that.
Forum: Plugins
In reply to: [WP24 Domain Check] Plugin not workingIn the settings of the plugin open “About” and take a look at “Requirements for whois queries”. Is “fsockopen” set to “Enabled” and “Port 43” set to “Open”?
Forum: Plugins
In reply to: [WP24 Domain Check] Custom button CSSYou could change the style via custom CSS:
.wp24-dc input[type=submit] { color: #000000; background-color: #ff0000; }Forum: Plugins
In reply to: [WP24 Domain Check] Link de compraWhich WordPress version are you using? You can find the version in the settings under “About” (System -> WordPress).
With the purchase link you could provide a link to a page where the user could buy the domain. You could user [domain] and [tld] as placeholder for the domain. E.g. if your purchase link is https://wp24.org/buy.php?d=%5Bdomain%5D&t=%5Btld%5D and the user checks the domain test.com the link will be https://wp24.org/buy.php?d=test&t=com.
If you set a default purchase link, you do not need a link for each tld.Forum: Plugins
In reply to: [WP24 Domain Check] Link de compraIs there any error message appearing?
Which WordPress version are you using?Forum: Plugins
In reply to: [WP24 Domain Check] Custom text and linkWith the new version (1.4.2) you can enable hooks in the settings and manipulate the whois result as described in the code above.
Forum: Plugins
In reply to: [WP24 Domain Check] Custom text and linkAs u stated this feature of an alternative set of price and link would not be used by many users. Therefore adding a hook would be the better solution.
Something like this to manipulate the result on server side (e.g. in functions.php of the theme):
function change_whois_result( $whois_result ) { if ( in_array( $whois_result->tld, array( 'com', 'net' ) ) ) { $whois_result->price = '1.99 $'; $whois_result->link = 'https://ww.wp.xz.cn'; } return $whois_result; } add_filter( 'wp24_domaincheck_whois_result', 'change_whois_result' );Since the domaincheck file for the ajax request uses only a short wordpress init, hooks are not possible. Hence a new option “Enable Hooks” could be added, so that the whole wordpress framework is loaded. This will slow down the whois requests a little bit.
You colud test this removing the following line from assets/inc/domaincheck.php:
define( 'SHORTINIT', true );If you are satisfied with this solution it could be added in the next version of the plugin.
Forum: Plugins
In reply to: [WP24 Domain Check] new tld-checksThe TLDs you have written are now supported by the current version of the plugin (version 1.4.1).
Forum: Plugins
In reply to: [WP24 Domain Check] Roadmap / Feature requestsPrices and purchase Links now added (version 1.4.0).
Forum: Reviews
In reply to: [WP24 Domain Check] Works wellWith version 1.3.0 tech, online, site and art are supported too.
Forum: Reviews
In reply to: [WP24 Domain Check] WP24 Domain Check By WP24To check multiple TLDs the option “Check All” must be enabled in the general settings.
With selection type “Drop-Down List” you then could choose “all”, with “Free Text Input” just omit the TLD and you get the list like in the screenshot.
You need at least version 1.2.0 of the plugin, as the check all feature was added there. (The installed version is shown under “About”.)Forum: Plugins
In reply to: [WP24 Domain Check] BlankThe plugin is compatible with WordPress 5.4.1, so it must be a problem with the Divi theme. Since this theme is not for free it’s difficult to test. Could you provide a link where the problem exists?
Forum: Plugins
In reply to: [WP24 Domain Check] Whois not displayingMarked as resolved.
Forum: Plugins
In reply to: [WP24 Domain Check] New Zealand?cri.nz, govt.nz, health.nz, mil.nz, parliament.nz are included in the last update.
Forum: Plugins
In reply to: [WP24 Domain Check] Whois not displayingHave you solved the problem already? On the page you posted nothing seems to overlap.