bradthebluefish
Forum Replies Created
-
Upon inspecting the browser’s console, it turns out that translate.google.com was being blocked by our company networks’ domain filter. We have since rectified this and the plugin works as expected.
- This reply was modified 6 months ago by bradthebluefish.
Checking in about any support regarding this.
Forum: Plugins
In reply to: [Braintree for WooCommerce Payment Gateway] Merchant Account ID Not SavingI too am having the “Add merchant account ID” issue on version 3.0.2. However, downgrading to 2.9.3 works.
Hello, I see version 2.8.1 was released since I last reported my issue. However, upon updating, I am still getting the following error. When should we expect version 2.8.2?
PHP Fatal error: Uncaught TypeError: Cannot access offset of type string on string in /nas/content/live/peabodytv/wp-content/plugins/ultimate-social-media-icons/views/sfsi_other_banners.php:127#012Stack trace:#012#0 /nas/content/live/peabodytv/wp-content/plugins/ultimate-social-media-icons/ultimate_social_media_icons.php(771): include()#012#1 /nas/content/live/peabodytv/wp-includes/class-wp-hook.php(308): sfsi_admin_notice('')#012#2 /nas/content/live/peabodytv/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters(true, Array)#012#3 /nas/content/live/peabodytv/wp-includes/plugin.php(517): WP_Hook->do_action(Array)#012#4 /nas/content/live/peabodytv/wp-admin/admin-header.php(303): do_action('admin_notices')#012#5 /nas/content/live/peabodytv/wp-admin/plugins.php(605): require_once('/nas/content/li...')#012#6 {main}#012 thrown in /nas/content/live/peabodytv/wp-content/plugins/ultimate-social-media-icons/views/sfsi_other_banners.php on line 127
Thank you for working on this issue. Checking in about when to expect the latest version of your plugin.
Hello again,
After further review and another round of WordPress Maintenance, I am still stuck. I have manually deleted the plugin and its SQL tables. Then installed the plugin. No luck.
Purging the cache via WP Engine’s setup was also of no luck.
I’m convinced like you are that there’s something else going on.
Let me know what I can do to assist you.
Sincerely,
BradleyThank you Peter for the instructions.
Unfortunately, I am still receiving issues even after following your instructions. A diagnostic report has been sent regarding this issue.
Sincerely,
BradleyForum: Plugins
In reply to: [Content Visibility for Divi Builder] Divi’s Theme Builder – Combined Post IDHi Jonathan Horowitz (@jhorowitz),
Will your plugin Content Visibility for Divi Builder be supporting Divi’s Theme Builder?
If not, shouldn’t this lack of support be noted in your plugin’s description and FAQ?
Forum: Plugins
In reply to: [Content Visibility for Divi Builder] Divi’s Theme Builder – Combined Post IDAny thoughts about this? Why does the plugin not properly work when used within the Theme Builder portion of Divi?
Forum: Plugins
In reply to: [Content Visibility for Divi Builder] Divi’s Theme Builder – Combined Post IDHi Jonathan. Any luck in replicating this issue?
Just to clarify, the code I was originally using was…
function visibility_acf_video() { $result = true; $video = get_field('video'); if( empty($video) ): $result = false; endif; return $result; }
But then I got creative in order to trim the combined IDs that I was getting…
function visibility_acf_video() { global $post; $post_id = rtrim($post->ID, "774"); $result = true; $video = get_field('video', $post_id); if( empty($video) ): $result = false; endif; return $result; }
Unfortunately, the additional code did not work even though it produced the post ID I needed. Make me think something even deeper is going on with the plugin.
Forum: Plugins
In reply to: [Content Visibility for Divi Builder] Divi’s Theme Builder – Combined Post IDI am using the following expression…
function visibility_acf_video() { global $post; $result = true; $video = get_field('video', $post_id); if( empty($video) ): $result = false; endif; return $result; }
However, the $post_id contains combines two IDs. I get both the post ID (625) and theme builder ID (774) for the final value of 625774.
$post_id = rtrim($post->ID, "774");
I eventually added the above code as a temporary solution but actually, this does not work even though it produces the 625 value (after trimming)
Please note that I have used this product in the past, just never in conjunction with the Theme Builder.
- This reply was modified 3 years, 5 months ago by bradthebluefish.
Forum: Plugins
In reply to: [Contact Form 7] Contact form does not submit on mobile devices.Jvivona’s fix worked. I had similar symptoms but was able to resolve it with his code. Thank you!
Forum: Reviews
In reply to: [Simple Calendar - Google Calendar Plugin] Good pluginHi Henny,
Saw your review and notice your wishes for a different current date color. Here is the CSS I used on a site to change the blue color to a red color.
.simcal-today .simcal-day-label.simcal-day-number { background-color: #ac202e !important; } .simcal-today div { border: 1px solid #ac202e !important; }
Best of luck!