loorlab
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Automatic Updates] Deprecation notices+1
Forum: Plugins
In reply to: [Mercado Pago payments for WooCommerce] BLANK PAGE when activating Plugin+1
- This reply was modified 7 years, 11 months ago by loorlab.
Forum: Plugins
In reply to: [Captcha] Version 4.3.4 Kills Admin Panel … Do Not Update!!!Yes, Warning: require_once(/path/wp-content/plugins/captcha/bws_menu/bws_include.php): failed to open stream: No such file or directory in /home/zion_user_mcc/misioncc.co/wp-content/plugins/captcha/captcha.php on line 68
Fatal error: require_once(): Failed opening required ‘/path/wp-content/plugins/captcha/bws_menu/bws_include.php’ (include_path=’.:/usr/local/lib/php:/usr/local/php5/lib/pear’) in /path//wp-content/plugins/captcha/captcha.php on line 68
Forum: Plugins
In reply to: [Firelight Lightbox] Suggestion: Version jQueryRavanH, We can guide to help compatible.
Functions or files that we should start to look?
What kind of test suggest?
Forum: Plugins
In reply to: [Save Contact Form 7] Send Form – Error DatabaseMore info :
PHP 5.6
MySQL 5.6Thanks !
Thanks Taco Verdo, we believe that solving this automatically updated on our sites.
Forum: Plugins
In reply to: [Constant Contact for WordPress] Is this compatible with WP v4.4.1?Yes, on my site works.
Forum: Plugins
In reply to: [Plagium] Your Plagium Plugin (version 1.0.3) is outdated!Thanks !
Thanks !
Forum: Plugins
In reply to: [Plagium] Use of undefined constant LANGUAGE – assumed 'LANGUAGE'Thanks !
Forum: Reviews
In reply to: [The Events Calendar] Good Plugin but "404 Not Found in page title"Hi Geoff, As it was a quick process we had the opportunity to try again, but when we will get another chance with your plugin.
But thanks for your answer and agree with our sincerity.
When we have time we will report it to the creators of Widgets Restrict plugin.
Thanks for all Geoff
Blessings from Colombia.
Forum: Fixing WordPress
In reply to: Can't get get_post_meta to work in a pluginSolution is capture data from form with post:
For example:
add_filter('transition_post_status', 'notify_status',10,3); function notify_status($new_status, $old_status, $post) { global $current_user; $contributor = get_userdata($post->post_author); $author_submit = stripslashes($_POST['user-submitted-name']); $email = stripslashes($_POST['user-submitted-email']); if ($old_status != 'pending' && $new_status == 'pending') { $emails=get_option('notificationemails'); if(strlen($emails)) { $subject='['.get_option('blogname').'] "'.$post->post_title.'" text'; $message="text.\n\n"; $message.="name : $author_submit \n"; $message.="Email : $email \n"; $message.="Text :\n\n {$post->post_content}\n\n"; $message.="Check : ".get_option('siteurl')."/wp-admin/post.php?action=edit&post={$post->ID}\n\n\n"; $message.="data"; wp_mail( $emails, $subject, $message); }Note: This solution applies only to the part where the user sends the data using the form.