Kim Vinberg
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Forgot password doesnt work for username wih @Hi Chad.
I closed the “ticket” because i figured out that the server had some highly odd way of submitting post data, removing anything with “email” in its name. Some kind of antispam that isn’t working.
but thanks for replying ??
Can confirm same issue as @slnikohamalainen say) on a Danish installation of WP
Danish installaton pages use this name: ninja-formularer_page_nf-submissions
NOT: ninja-forms_page_nf-submissionsI fixed it on my page doing this:
if( isset( $page ) && "ninja-".strtolower(__("Forms", 'ninja-forms'))."_page_nf-submissions" === $page ) {
Instead of:
if( isset( $page ) && "ninja-forms_page_nf-submissions" === $page ) {
Forum: Plugins
In reply to: [ActiveCampaign for WooCommerce] Showing blank error at checkout@bartu1997 Write me a private message, then I will send you a link where you can download the zip. (Dont want to links my company website here)
Forum: Plugins
In reply to: [ActiveCampaign for WooCommerce] Showing blank error at checkoutThe developers have made some errors in last update, you will have to rollback or wait for them to fix it.
In case you do not have a backup, send me a message and i can send you an older version of the plugin.
Hi Joel.
Lastest version from www.ads-software.com used here.
Hi.
I have the same issue today on a client site. Removed all other plugins and issue still there, then removed this one, then it was gone.
Client is using the SendGrid API
WP 5.5Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 1437696 bytes) in /customers/f/0/3/xxxxxxxxxxxxx.dk/httpd.www/wp-includes/wp-db.php on line 2033
Doesnt say what file in the plugin that is causing this, but it is something to do with the database.
Hope this helps debugging.
Can confirm this issue in 5.4 and 5.5.
Forum: Plugins
In reply to: [WP Typed JS] Uncaught ReferenceError: foo is not definedHi Bjarne.
For some reason i did not get any notifications about this support question. The error is simply that the function foo(); doesnt exists. I will check the plugin to see if it is present and update if needed.
until i update, you can simply remove the mentioning of foo(); in the code.
callback: function(){ foo(); },
to this:
callback: function(){ },
If you need any help with this plugin please contact me ??
Hi.
Please check your own files.
\bulk-photo-to-product-importer-extension-for-woocommerce\extensions\sm-share-buttons\js\sm-scripts.js
it uses social services and theese scripts are loaded in the admin
sm-share-buttons.php
if(is_admin()) wp_enqueue_script( 'sm-scripts', $this->plugin_uri . '/js/sm.scripts.js' ); }
sm.scritps.js
(function(d,s,id){ var js,fjs = d.getElementsByTagName(s)[0]; if (!d.getElementById(id)){ js = d.createElement(s); js.id = id; js.src = 'https://platform.twitter.com/widgets.js'; fjs.parentNode.insertBefore(js,fjs); } })(document,'script','twitter-wjs'); (function(d,s,id){ var js,fjs = d.getElementsByTagName(s)[0]; if (!d.getElementById(id)){ js = d.createElement(s); js.id = id; js.src = 'https://platform.tumblr.com/v1/share.js'; fjs.parentNode.insertBefore(js,fjs); } })(document,'script','tumblr-sjs'); (function(d){ var f = d.getElementsByTagName('SCRIPT')[0], p = d.createElement('SCRIPT'); p.type = 'text/javascript'; p.async = true; p.src = '//assets.pinterest.com/js/pinit.js'; f.parentNode.insertBefore(p, f); }(document)); (function() { var li = document.createElement('script'); li.type = 'text/javascript'; li.async = true; li.src = ('https:' == document.location.protocol ? 'https:' : 'http:') + '//platform.stumbleupon.com/1/widgets.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(li, s); })(); // Facebook Share function fbShare(url, title, descr, winWidth, winHeight) { var winTop = (screen.height / 2) - (winHeight / 2); var winLeft = (screen.width / 2) - (winWidth / 2); window.open('https://www.facebook.com/sharer.php?s=100&p[title]=' + title + '&p[summary]=' + descr + '&p[url]=' + url , 'sharer', 'top=' + winTop + ',left=' + winLeft + ',toolbar=0,status=0,width=' + winWidth + ',height=' + winHeight); } // Twitter Share function twitterShare(url, descr, winWidth, winHeight ) { var winTop = (screen.height / 2) - (winHeight / 2); var winLeft = (screen.width / 2) - (winWidth / 2); window.open('https://twitter.com/share?url=' + url + '&text=' + descr , 'sharer', 'top=' + winTop + ',left=' + winLeft + ',toolbar=0,status=0,width=' + winWidth + ',height=' + winHeight); } // Google+ Share function gplusShare(url, winWidth, winHeight ) { var winTop = (screen.height / 2) - (winHeight / 2); var winLeft = (screen.width / 2) - (winWidth / 2); window.open('https://plus.google.com/share?url=' + url , 'sharer', 'top=' + winTop + ',left=' + winLeft + ',toolbar=0,status=0,width=' + winWidth + ',height=' + winHeight); } // Pinterest Share function pinterestShare(url, img, descr, winWidth, winHeight ) { var winTop = (screen.height / 2) - (winHeight / 2); var winLeft = (screen.width / 2) - (winWidth / 2); window.open('//pinterest.com/pin/create/button/?url=' + url + '&media=' + img + '&description=' + descr, 'sharer', 'top=' + winTop + ',left=' + winLeft + ',toolbar=0,status=0,width=' + winWidth + ',height=' + winHeight); } // Stumbleupon Share function stumbleuponShare(url, winWidth, winHeight ) { var winTop = (screen.height / 2) - (winHeight / 2); var winLeft = (screen.width / 2) - (winWidth / 2); window.open('https://www.stumbleupon.com/submit?url=' + url, 'sharer', 'top=' + winTop + ',left=' + winLeft + ',toolbar=0,status=0,width=' + winWidth + ',height=' + winHeight); } // LinkedIn Share function linkedinShare(url, title, descr, winWidth, winHeight ) { var winTop = (screen.height / 2) - (winHeight / 2); var winLeft = (screen.width / 2) - (winWidth / 2); window.open('https://www.linkedin.com/shareArticle?mini=true&url=' + url + '&title=' + title + '&summary=' + descr, 'sharer', 'top=' + winTop + ',left=' + winLeft + ',toolbar=0,status=0,width=' + winWidth + ',height=' + winHeight); } // Reddit Share function redditShare(url, winWidth, winHeight ) { var winTop = (screen.height / 2) - (winHeight / 2); var winLeft = (screen.width / 2) - (winWidth / 2); window.open('https://www.reddit.com/submit?url=' + url , 'sharer', 'top=' + winTop + ',left=' + winLeft + ',toolbar=0,status=0,width=' + winWidth + ',height=' + winHeight); }
Forum: Plugins
In reply to: [WP Fastest Cache] Error after updating the plugin!Thank you Emre. Havent tested it yet, but im sure it is working again ??
Forum: Plugins
In reply to: [WP Fastest Cache] Error after updating the plugin!Same issue detected on a few sites here. Tryed to add exlude rule, didt change the result.
Deactivating the plugin helped (waiting for upadate)
Forum: Plugins
In reply to: [Super Simple Anti Spam] Trackback spamyes very low ??
I will in future disable the function completly in my plugin, and for real comments use my API server to validate a comment.
Forum: Plugins
In reply to: [Super Simple Anti Spam] Trackback spamTrackbacks.
Forum: Plugins
In reply to: [Super Simple Anti Spam] Trackback spamOut of the past 1000 comments, my system have detected 3 as not spam. So really rare its in use.
Forum: Plugins
In reply to: [Super Simple Anti Spam] Trackback spamClosing this. No need for it. Most of the trackback spam does goe away with this now ??