OrlandoWebDev
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] grecaptcha is not definedI had this issue too, I tried several of the fixes above. I had wp_footer(), I was using v5.1.1. But the user inserted reCaptcha v2 keys instead of reCaptcha v3 keys, I put in the v3 keys and it worked just fine.
- This reply was modified 5 years, 6 months ago by OrlandoWebDev.
Forum: Plugins
In reply to: [Account Engagement] PHP 7.2 Compatibility Errors FoundI haven’t tested this yet, but it appears the maintainer of the plugin is using mcrypt has a fallback. This is a false positive by the WP Engine PHP Compatibility checker.
Thanks for the link to the screencast. Strange thing… above there is a message about
“Unable to display content. Adobe Flash is required”
But the link you meant to show me is
URL — https://www.screencast.com/t/VTCk4dsPYwpx
I saw it in the email response to this thread.
- This reply was modified 6 years, 12 months ago by OrlandoWebDev.
I looked into the plugin… I think the issue might be here…
File: AddThisPlugin.php
Method: printAddThisWidgetScript()Line 846 & 847
$script .= ‘ <script data-cfasync=”false” type=”text/javascript”‘
. ‘src=”‘ . $clientUrl . ‘”‘;No space between type and src
Should probably be this
$script .= ‘ <script data-cfasync=”false” type=”text/javascript” ‘
. ‘src=”‘ . $clientUrl . ‘”‘;I had disabled the plugin on our production environment because the bad markup was causing display issues as you can see.
https://sonian.staging.wpengine.com/careers/ (line 131)
vs
Forum: Plugins
In reply to: [Twitter Bootstrap for WordPress] php 7 compabilityI second this request. Please update for PHP 7 compatibility please.
Forum: Plugins
In reply to: [WP Job Manager] Divi issue?I think the culprit is this CSS in Divi theme. You will have to override it to remove the disc.
#left-area ul, .entry-content ul, .comment-content ul, body.et-pb-preview #main-content .container ul { padding: 0 0 23px 16px; line-height: 26px; list-style-type: disc; }
Forum: Plugins
In reply to: [Geolocation IP Detection] Remove countries from Contact7 form drop downNot sure. I figured since that part of the shortcode had some integration with CF7.
Maybe this can help
https://gist.github.com/MatthewEppelsheimer/1498955If not, I guess wait till the plugin maintainer comments.
Forum: Plugins
In reply to: [Geolocation IP Detection] Remove countries from Contact7 form drop downSounds more like a request that should be directed to the author of Contact Form 7?
Forum: Plugins
In reply to: [WP Hide Post] WPHP-> called: wphp_exclude_low_profile_pagesChecking back in on this… this error message is still occuring…
[02-Apr-2016 03:35:23 UTC] PHP Notice: The called constructor method for WP_Widget is <strong>deprecated</strong> since version 4.3.0! Use <pre>__construct()</pre> instead. in /home1/kuaoneon/public_html/wp-includes/functions.php on line 3624 [02-Apr-2016 03:35:23 UTC] WPHP-> called: wphp_query_posts_where [02-Apr-2016 03:35:23 UTC] WPHP-> called: wphp_query_posts_join [02-Apr-2016 03:35:23 UTC] PHP Notice: Trying to get property of non-object in /home1/kuaoneon/public_html/wp-includes/query.php on line 4529 [02-Apr-2016 03:35:23 UTC] WPHP-> called: wphp_exclude_low_profile_pages [02-Apr-2016 03:35:23 UTC] WPHP-> called: wphp_exclude_low_profile_items [02-Apr-2016 03:35:23 UTC] WPHP-> called: wphp_query_posts_where [02-Apr-2016 03:35:23 UTC] WPHP-> called: wphp_query_posts_join [02-Apr-2016 03:35:53 UTC] PHP Notice: The called constructor method for WP_Widget is <strong>deprecated</strong> since version 4.3.0! Use <pre>__construct()</pre> instead. in /home1/kuaoneon/public_html/wp-includes/functions.php on line 3624 [02-Apr-2016 03:35:53 UTC] WPHP-> called: wphp_query_posts_where [02-Apr-2016 03:35:53 UTC] WPHP-> called: wphp_query_posts_join [02-Apr-2016 03:35:53 UTC] WPHP-> called: wphp_exclude_low_profile_pages [02-Apr-2016 03:35:53 UTC] WPHP-> called: wphp_exclude_low_profile_items
Forum: Fixing WordPress
In reply to: Adding a custom date field to Media Library FilesCould you elaborate on how you did it with “Types” plugin?
Forum: Plugins
In reply to: [Attachments] Using Attachments with Event OrganiserI figured it out
Add the code below to
functions.php
function attachments( $attachments ) { $args = array( 'post_type' => array( 'post','page','event' ), // Adds event as a post type that supports attachments ); $attachments->register( 'attachments', $args ); // unique instance name } add_action( 'attachments_register', 'attachments' );
Forum: Plugins
In reply to: [Event Organiser] Integration with Attachments PluginI figured it out
Add the code below to functions.php
function attachments( $attachments ) { $args = array( 'post_type' => array( 'post','page','event' ), // Adds event as a post type that supports attachments ); $attachments->register( 'attachments', $args ); // unique instance name } add_action( 'attachments_register', 'attachments' );
Forum: Plugins
In reply to: [WP-Filebase Download Manager] integration with media libraryYou can use the Visual editor on Posts and Pages to insert media from Filebase.
Forum: Plugins
In reply to: [Plugin Organizer] Error message after activationThanks Jeff!