adrian.jecan
Forum Replies Created
-
This is how you add it near the user’s name (like the verified mark on Twitter), both on users directory/list and profile page:
add_action(‘uwp_profile_after_title’, ‘add_user_badge’);
function add_user_badge($user_id) {
echo do_shortcode(‘[gamipress_inline_last_achievements_earned type=”badge” user_id=”‘ . $user_id . ‘” current_user=”no” thumbnail_size=”24″]’);
}Here we go again. I added a new field in the Form Builder/Account, which I set it for the registration form too. Then, in the register form, after I click on the field, is added below the other form fields but then disapears. And when I reload the page, the field is again available to be added. So basically it never ads to the register form. Screen record: https://recordit.co/PGO4IIkOXe.
In the database, the column was added (I checked).
Another issue: there are plenty of missing columns in database, related to the users.
WordPress database error Unknown column ‘uwp_country’ in ‘bzt_uwp_usermeta’ for query ALTER TABLE bzt_uwp_usermeta CHANGE
uwp_country
uwp_country
VARCHAR( 500 ) NULL made by do_action(‘wp_ajax_uwp_ajax_action’), WP_Hook->do_action, WP_Hook->apply_filters, UsersWP_Form_Builder->create_field, UsersWP_Form_Builder->admin_form_field_saveOther missing columns: company_organization_or_institution_name , register_tos , current_position , linkedin , register_gdpr.
So all this information is not saved on the users’ account. More than this, if I want to change something to any of these fields in admin -> Form Builder -> Account, I get the same error message: https://clip2net.com/s/4jg8hnG
Thank you for the answer. That alert which is actually the strength meter, is shown with or without a minimum strength and for a user, it doesn’t know what is the minimum strength required. For the end user what happens is that it just doesn’t work and will give up registration in the first seconds. And if I change the plugin, I can’t update it anymore. Or I’ll have to make the change every time. So it’s a good improvement suggestion.
Forum: Reviews
In reply to: [Product Fields, Addons and Price Calculator for WooCommerce] Amazing plugin!Ah I didn’t mean it’s complex as usage, not at all. It’s complex in functionality, in what you have built within it. I will definitely donate ??
Forum: Plugins
In reply to: [NFT Maker] Need help with a customized API callI tried also the mode with private key, so I removed [minter] and added [fromPrivateKey] with the value of the private key of my wallet address.
I didn’t use signatureId from Tatum KMS because according to the documentation “PrivateKey should be used only for quick development on testnet versions of blockchain when there is no risk of losing funds. In production, Tatum KMS should be used for the highest security standards, and signatureId should be present in the request.” And although it’s not on testnet, but it doesn’t say it can be used ONLY on testnet, so it should work.
Still, I have the same error.
So I already tried in 2 ways that should work, according to the documentation, but I have the same error.Forum: Plugins
In reply to: [NFT Maker] Need help with a customized API callHi,
No, it doesn’t help. Because from the documentation:
“Third mode enables you to mint on any custom NFT ERC-721 smart contract, on which specified minter address is approved as a minter. You don’t specify private key or signatureId, only minter address, from which the NFT will be minted. You can use addresses specified in the bellow table to be used as a minter.”
And a few paragraphs down: “We have prepared following smart contracts for minting without private key:” and there is a table with addresses.So according to the documentation, I could do it without a private key.
Forum: Plugins
In reply to: [NFT Maker] Need help with a customized API callI tried another similar call.
I used the MATIC mainnet, I used the API key for the plugin (the paid one) and the call payload is as follows:[to] => …. (receiver address)
[chain] => MATIC
[url] => ipfs://…..
[contractAddress] => 0x6579dcBaF9Cb60e88496265718d40EdB687D9fAd ((the contract for my custom NFT collection – https://polygonscan.com/address/0x6579dcbaf9cb60e88496265718d40edb687d9fad)
[tokenId] => 123456
[minter] => 0xcf9e127455d28e7362380aec1b92ddee8200b295 (from doc page)I get the same error.
Forum: Plugins
In reply to: [LiteSpeed Cache] Pages are broken at first load – js/css not loadingHi,
The initial problem seems to have solved by itself somehow.
The problem with the FOUC I solved it by activating critical CSS.Best regards.
Forum: Plugins
In reply to: [LiteSpeed Cache] LSCache Issue with WooCommerceHi,
I have too many plugins to search for that plugin.
So instead I used Force Cache URIs of the cache section and solved my problem.Best regards.
Forum: Plugins
In reply to: [LiteSpeed Cache] Pages are broken at first load – js/css not loadingHi,
The issue triggers before the cache is built. The 2nd time the cache is already built and it loads fine for every visit.
Forum: Plugins
In reply to: [LiteSpeed Cache] Pages are broken at first load – js/css not loadingHi,
Report number RQEFFXPN.
Forum: Plugins
In reply to: [LiteSpeed Cache] LSCache Issue with WooCommerceHi,
Report number RQEFFXPN.
Forum: Plugins
In reply to: [LiteSpeed Cache] LSCache Issue with WooCommerceHello,
I have the exact same problem: I have a woocommerce website, for any logged in user the pages are not cached and if I check the logs I have:
[Ctrl] X Cache_control -> no Cache ( 3rd party woocommerce not cache due to has wc notice ) => LiteSpeed\Control::set_nocache(( 3rd party woocommerce not cache due to has wc notice ))@362 => WP_Hook->apply_filters(,ARRAY)@292 => WP_Hook->do_action(ARRAY)@316I need help because I don’t understand what is the actual solution.
Thank you.
Forum: Plugins
In reply to: [Translate WordPress and go Multilingual - Weglot] WP media upload brokenI got a reply from the support with the solution so for anyone having the same problem:
add_action( ‘wp_head’, ‘weglot_support_fix_media_upload’ );
function weglot_support_fix_media_upload() {
?>
<script type=”text/javascript”> maybereadonly = null; </script>
<?php
}