Title: jpowersdev's Replies | WordPress.org

---

# jpowersdev

  [  ](https://wordpress.org/support/users/jpowersdev/)

 *   [Profile](https://wordpress.org/support/users/jpowersdev/)
 *   [Topics Started](https://wordpress.org/support/users/jpowersdev/topics/)
 *   [Replies Created](https://wordpress.org/support/users/jpowersdev/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/jpowersdev/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/jpowersdev/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/jpowersdev/engagements/)
 *   [Favorites](https://wordpress.org/support/users/jpowersdev/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 567 total)

1 [2](https://wordpress.org/support/users/jpowersdev/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/jpowersdev/replies/page/3/?output_format=md)…
[36](https://wordpress.org/support/users/jpowersdev/replies/page/36/?output_format=md)
[37](https://wordpress.org/support/users/jpowersdev/replies/page/37/?output_format=md)
[38](https://wordpress.org/support/users/jpowersdev/replies/page/38/?output_format=md)
[→](https://wordpress.org/support/users/jpowersdev/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Product Tabs for WooCommerce] 1.7.7 Security Vulnerability / Can’t Update to 1.7.8](https://wordpress.org/support/topic/1-7-7-security-vulnerability-cant-update-to-1-7-8/)
 *  [jpowersdev](https://wordpress.org/support/users/jpowersdev/)
 * (@jpowersdev)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/1-7-7-security-vulnerability-cant-update-to-1-7-8/#post-15778372)
 * Hey all, this should be fixed now.
 * [@ucsendre](https://wordpress.org/support/users/ucsendre/) was correct, the comment
   wasn’t updated in the primary PHP file.
 * We use a Github Action to deploy, so the easiest solution was to bump it to 1.7.9
   with the correct comment. Please try to update to that latest version now.
 * Jon
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Forms for Mailchimp] error to edit my forms](https://wordpress.org/support/topic/error-to-edit-my-forms/)
 *  [jpowersdev](https://wordpress.org/support/users/jpowersdev/)
 * (@jpowersdev)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/error-to-edit-my-forms/#post-15760874)
 * Hi [@davidgarcia2022](https://wordpress.org/support/users/davidgarcia2022/),
 * Do you see any errors in your browser console when on the Edit Form page? There
   will likely be a failed network request with some details about what happened.
 * Jon
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Taxonomy Ordering] Taxonomy select field broken](https://wordpress.org/support/topic/taxonomy-select-field-broken/)
 *  [jpowersdev](https://wordpress.org/support/users/jpowersdev/)
 * (@jpowersdev)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/taxonomy-select-field-broken/#post-15746908)
 * Hi [@fherewecom](https://wordpress.org/support/users/fherewecom/),
 * Could you provide a list of any custom post types and taxonomies on the site,
   and how you have generated them? You may have some sort of orphaned taxonomy 
   that doesn’t apply to any post types, which is causing the “check which post 
   type this taxonomy belongs to” code to fail.
 * Jon
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Product Tabs for WooCommerce] Hidden Tabs](https://wordpress.org/support/topic/hidden-tabs/)
 *  [jpowersdev](https://wordpress.org/support/users/jpowersdev/)
 * (@jpowersdev)
 * [3 years, 12 months ago](https://wordpress.org/support/topic/hidden-tabs/#post-15733876)
 * Hi [@marketing4dct](https://wordpress.org/support/users/marketing4dct/),
 * Admin-only tabs are not currently a feature of our plugin, but that is certainly
   an interesting request.
 * This seems like it would be a good use case for something like Advanced Custom
   Fields. You can use a plugin such as that (or Pods, MetaBox.io, Carbon Fields,
   etc.) to add extra meta boxes to the product page that would allow you to store
   additional admin-only information.
 * Let me know if that helps,
    Jon
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Product Tabs for WooCommerce] Problems with Divi builder and Yoast](https://wordpress.org/support/topic/problems-with-divi-builder-and-yoast/)
 *  [jpowersdev](https://wordpress.org/support/users/jpowersdev/)
 * (@jpowersdev)
 * [3 years, 12 months ago](https://wordpress.org/support/topic/problems-with-divi-builder-and-yoast/#post-15733866)
 * Hi [@td8000](https://wordpress.org/support/users/td8000/),
 * Divi must be manually triggering the WooCommerce tabs hook without setting up
   the global variables correctly. The global $product variable should be defined
   during this callback as per the WooCommerce docs.
 * Divi is a paid plugin that I do not have a copy of, so I cannot be sure this 
   will help, but in your custom tabs plugin folder can you make the following change
   on line 39 of `public/class.yikes-woo-tabs-display.php` and let me know if it
   resolves the issue:
 * Replace `global $product;` with the following:
 *     ```
       $product = wc_get_product();
   
       if ( empty( $product ) ) {
           return $tabs;
       }
       ```
   
 * I’m attempting to grab the current product another way, and failing more gracefully
   if I’m unable to do so. It is possibly that this will resolve the fatal error
   without addressing the deeper compatibility issues. Please let me know what you
   find.
 * Be sure to take a backup before editing your site files.
 * Jon
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Forms for Mailchimp] The subscription form does not send the first confirmation message](https://wordpress.org/support/topic/the-subscription-form-does-not-send-the-first-confirmation-message/)
 *  [jpowersdev](https://wordpress.org/support/users/jpowersdev/)
 * (@jpowersdev)
 * [4 years ago](https://wordpress.org/support/topic/the-subscription-form-does-not-send-the-first-confirmation-message/#post-15724145)
 * Hi [@yosipsverko](https://wordpress.org/support/users/yosipsverko/),
 * This can happen when making changes to a form on the Mailchimp side. Our plugin
   won’t necessarily be informed of those changes, and then submissions to Mailchimp
   will start to fail. One of the most common culprits is fields that are now required
   in Mailchimp, but were not when building the form. The submission will succeed
   to our plugin, but fail when sending it to Mailchimp.
 * The easiest solution here is just to recreate your form in our plugin after making
   changes to your Mailchimp settings. I’d also recommend clearing the API cache
   in the plugin settings beforehand, to ensure our plugin has the latest data from
   your Mailchimp account.
 * Let me know if that helps,
    Jon
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Product Tabs for WooCommerce] Problems with Divi builder and Yoast](https://wordpress.org/support/topic/problems-with-divi-builder-and-yoast/)
 *  [jpowersdev](https://wordpress.org/support/users/jpowersdev/)
 * (@jpowersdev)
 * [4 years ago](https://wordpress.org/support/topic/problems-with-divi-builder-and-yoast/#post-15724140)
 * Hi [@td8000](https://wordpress.org/support/users/td8000/),
 * Could you use something like [https://imgbb.com/](https://imgbb.com/) to share
   the screenshot?
 * In general though, the compatibility with Divi Builder is not good. You can find
   several threads on our forums addressing this. Regardless, I’ll do what I can
   to help.
 * Thanks,
    Jon
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Product Tabs for WooCommerce] Woolentor compatibility](https://wordpress.org/support/topic/woolentor-compatibility/)
 *  [jpowersdev](https://wordpress.org/support/users/jpowersdev/)
 * (@jpowersdev)
 * [4 years ago](https://wordpress.org/support/topic/woolentor-compatibility/#post-15716449)
 * Hi [@1bachus1](https://wordpress.org/support/users/1bachus1/),
 * I’m not familiar with that plugin, but our plugin supports shortcodes in tab 
   content. I know others have used the “build a shortcode” feature of some page
   builders in the past to combine the two approaches.
 * Let me know if that helps,
    Jon
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Forms for Mailchimp] No data collected or visible anyway](https://wordpress.org/support/topic/no-data-collected-or-visible-anyway/)
 *  [jpowersdev](https://wordpress.org/support/users/jpowersdev/)
 * (@jpowersdev)
 * [4 years ago](https://wordpress.org/support/topic/no-data-collected-or-visible-anyway/#post-15713506)
 * Hi [@marcuslion](https://wordpress.org/support/users/marcuslion/),
 * I entered the form and received an email. It looks like you have the double-opt-
   in strategy active, so it sent me an email asking me to confirm my subscription.
   I did so.
 * Can you check and see if an email address from yikesinc was added to your list?
 * Jon
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Forms for Mailchimp] Form Doesn’t Connect to the Correct List](https://wordpress.org/support/topic/form-doesnt-connect-to-the-correct-list/)
 *  [jpowersdev](https://wordpress.org/support/users/jpowersdev/)
 * (@jpowersdev)
 * [4 years ago](https://wordpress.org/support/topic/form-doesnt-connect-to-the-correct-list/#post-15713497)
 * Hi [@aywangsd](https://wordpress.org/support/users/aywangsd/),
 * That is indeed very strange. I would have to assume that some sort of identifying
   bit of information (like the title or something) is shared between lists, and
   that is causing some sort of confusion.
 * I’d recommend first clearing the API cache ([https://yikesplugins.com/knowledge-base/api-cache-settings/](https://yikesplugins.com/knowledge-base/api-cache-settings/))
   and if that doesn’t work, delete the form and re-create it. If neither of those
   work, you can delete the plugin and re-install it. This will wipe all plugin 
   data from your WordPress site that might be interfering with the connection.
 * Let me know if that helps,
    Jon
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Product Tabs for WooCommerce] Is it possible to add the Custom tabs to the Product page template in Elementor?](https://wordpress.org/support/topic/is-it-possible-to-add-the-custom-tabs-to-the-product-page-template-in-elementor/)
 *  [jpowersdev](https://wordpress.org/support/users/jpowersdev/)
 * (@jpowersdev)
 * [4 years ago](https://wordpress.org/support/topic/is-it-possible-to-add-the-custom-tabs-to-the-product-page-template-in-elementor/#post-15713491)
 * Hi [@gallegoara](https://wordpress.org/support/users/gallegoara/),
 * As for your first question – I’m no SEO expert, but the tabs are present in the
   page markup, and as such I would have to assume that they are relevant for SEO
   purposes.
 * As for your second question – this is a fairly complex setup. To achieve “the
   same tabs on each product, but different content for different products” you 
   will probably want to create a shortcode that is capable of rendering the correct
   tab content per product, then set up tabs in a particular order that contain 
   those shortcodes. Global and Taxonomy-assigned tabs are features of the pro version
   of this plugin, but you can accomplish a similar feat (with slightly more legwork)
   by creating Saved tabs and assigning them to your products individually.
 * Let me know if that helps,
    Jon
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Easy Forms for Mailchimp] Form doesn’t show up](https://wordpress.org/support/topic/form-doesnt-show-up-3/)
 *  [jpowersdev](https://wordpress.org/support/users/jpowersdev/)
 * (@jpowersdev)
 * [4 years ago](https://wordpress.org/support/topic/form-doesnt-show-up-3/#post-15706875)
 * Hi Tom,
 * You’re welcome to open a support thread if you’d like help with this issue. Could
   you provide a link to the page you are having trouble with?
 * Thanks,
    Jon
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Product Tabs for WooCommerce] All tabs carry the same content as the description tab](https://wordpress.org/support/topic/all-tabs-carry-the-same-content-as-the-description-tab/)
 *  [jpowersdev](https://wordpress.org/support/users/jpowersdev/)
 * (@jpowersdev)
 * [4 years ago](https://wordpress.org/support/topic/all-tabs-carry-the-same-content-as-the-description-tab/#post-15700133)
 * Hi [@arjunlajpal](https://wordpress.org/support/users/arjunlajpal/),
 * It looks like you’re using Elementor when building your site. Please try enabling
   page builder compatibility in our plugin settings.
 * Here is a relevant knowledge base article – [https://yikesplugins.com/knowledge-base/page-builder-compatibility/](https://yikesplugins.com/knowledge-base/page-builder-compatibility/)
 * Let me know if that helps,
    Jon
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Product Tabs for WooCommerce] Work with Elementor Pro](https://wordpress.org/support/topic/work-with-elementor-pro-2/)
 *  [jpowersdev](https://wordpress.org/support/users/jpowersdev/)
 * (@jpowersdev)
 * [4 years ago](https://wordpress.org/support/topic/work-with-elementor-pro-2/#post-15700123)
 * Hi [@mstudioil](https://wordpress.org/support/users/mstudioil/),
 * Sure- I’d recommend creating a custom shortcode to handle displaying that information.
   Then you can create a Saved Tab containing the shortcode and assign it to your
   products as needed.
 * Let me know if that helps,
    Jon
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Product Tabs for WooCommerce] Problem with WPML](https://wordpress.org/support/topic/problem-with-wpml-37/)
 *  [jpowersdev](https://wordpress.org/support/users/jpowersdev/)
 * (@jpowersdev)
 * [4 years ago](https://wordpress.org/support/topic/problem-with-wpml-37/#post-15699846)
 * Hi [@brnsantos](https://wordpress.org/support/users/brnsantos/),
 * Our plugin does work with WPML, but my understanding is that there is no automated
   way of doing what you’re looking to do. You would need to manually create a matching
   tab on the different versions of a product.
 * I’m making some assumptions here (as we aren’t the authors of WPML), but this
   is my understanding of the problem –
 * When initially creating a new language version of a product, the full meta is
   copied to that new product so that it can be translated. All tabs are stored 
   together as a single meta field. When you create a new tab on a product, it’s
   just updating the existing meta, not creating a new meta field. As a result, 
   WPML can’t just copy that updated meta or it would override the translated meta
   on the other versions of that product.
 * Let me know if that helps,
    Jon

Viewing 15 replies - 1 through 15 (of 567 total)

1 [2](https://wordpress.org/support/users/jpowersdev/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/jpowersdev/replies/page/3/?output_format=md)…
[36](https://wordpress.org/support/users/jpowersdev/replies/page/36/?output_format=md)
[37](https://wordpress.org/support/users/jpowersdev/replies/page/37/?output_format=md)
[38](https://wordpress.org/support/users/jpowersdev/replies/page/38/?output_format=md)
[→](https://wordpress.org/support/users/jpowersdev/replies/page/2/?output_format=md)