jpowersdev
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Tabs not showingHi @venanciovinas,
The markup does look like normal WooCommerce tab markup, but the custom tabs are not there. That suggests that it isn’t your theme. But there’s still a chance that your theme or some other plugin is hooking into the WooCommerce tab list and overriding our ability to add tabs.
I’d recommend doing the conflict troubleshooting steps as follows:
1. Temporarily switch to a core WordPress theme, such as 2020 or 2021. See if the problem still exists.
2. Temporarily disable all plugins except for WooCommerce and Custom Tabs. See if the problem still exists.This process will allow you to determine where the conflict is, and then you can decide on next steps.
Let me know if that helps,
JonForum: Plugins
In reply to: [Easy Forms for Mailchimp] Multiple Submission Notification EmailsForum: Plugins
In reply to: [Easy Forms for Mailchimp] After submit nothing happenForum: Plugins
In reply to: [Easy Forms for Mailchimp] Groups in Contact Form 7Hi @kindnessville,
We have another filter that allows you to modify the overall body of the request sent to MailChimp. Here is the call as you can see it in our plugin:
$data = apply_filters( 'yikes-mailchimp-checkbox-integration-body', $data, $type, $list_id, $integration_vars );So if you added a filter on
yikes-mailchimp-checkbox-integration-body, you’d receive four parameters. The first one is the actual request data, and that array contains the keyinterests, which is an array of Interest Group ID’s.Ultimately, you’d probably do something like the following:
function cf7_change_MC_groups( $data, $type, $list_id, $integration_vars ){ // Get your form id $cf7_form_id = isset( $_POST['_wpcf7'] ) && ! empty( $_POST['_wpcf7'] ) ? filter_var( $_POST['_wpcf7'], FILTER_SANITIZE_NUMBER_INT ) : 0; // If form id is desired id if ( (int) $cf7_form_id === 111111 ) { // Add your desired group id $data['interests'] = array( 12345 ); } // Return the form data return $data; } add_filter( 'yikes-mailchimp-checkbox-integration-body', 'cf7_change_MC_groups' );Let me know if that helps,
JonForum: Plugins
In reply to: [Easy Forms for Mailchimp] After submit nothing happenHi @varganem,
I agree, that is a big problem. If you turn off “Enable AJAX submission” for that form, does it still not work?
Do you have any other form or api-related plugins that may be interfering?
Do you see any errors in your site’s debug log?
Could you provide a link to the page you are having trouble with?
Thanks,
JonHey @alygraphy,
Our plugin fires a
yikes_clear_input_fields_after_successful_submissionevent after a successful submission. It’s triggered on the form element itself. You could add an event listener to that and trigger a popup when it fires.Let me know if that helps,
JonForum: Plugins
In reply to: [Easy Forms for Mailchimp] Replacing broken form with new formHi Jennie,
Sorry to hear about your developer! Hopefully I can help you out. When you changed the API key, was the new key for a different account? If so, the old forms won’t be recognized as part of the account.
You can just replace the shortcode, yes. It’s hard to know for sure without being able to see the site files, but my guess would be that it’s located in the footer.php file in your theme folder. If you aren’t familiar with the wordpress structure, that’s going to be in
wp-content/themes/your-theme-name.You can also edit the files in your site’s Theme Editor under the Appearance tab on the Admin side (as opposed to using FTP, for example). If you’re going to do it that way, make sure you don’t accidentally delete any semicolons or anything, or the site could go down. Take a backup before editing anything.
Let me know if that helps,
JonHi @magnusjacobsson,
Thanks for the report.
1. We use WordPress’ TinyMCE editor as the tab content editor, so issues there are somewhat out of our control. I know WordPress 5.6+ unearthed some issues with TinyMCE, I’m not sure if they’ve since been resolved. You may try updating to the latest available version.
2. I see what you mean with regards to those separator lines. That’s actually coming from your theme. I see the following style:
body.woocommerce #content-area div.product .woocommerce-tabs ul.tabs li, body.woocommerce #content-area div.product .woocommerce-tabs ul.tabs li.active, body.woocommerce div.product .woocommerce-tabs ul.tabs li, body.woocommerce div.product .woocommerce-tabs ul.tabs li.active { margin: 0 -2px; }That -2px on the horizontal is causing tabs to overlap, which is hiding the border on some screen sizes. If you change the screen size you can watch it change/flicker. The line is coming from the minified css file 6ljv8.css.
Let me know if that helps,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Divi incompatibility ?Hi @droniworldnet,
That is very strange. Page builders often cause compatibility issues with other plugins, but not normally in the form of a server error. You could try enabling page builder support in our plugin options as referenced here – https://yikesplugins.com/knowledge-base/page-builder-compatibility/
Let me know if that helps,
JonHi @serhatc,
When doing an import using the WooCommerce CSV importer, you’ll need to specify the column mappings. If you’re importing custom tabs, you’ll have to make sure to select the right column when preparing the import.
If you are trying to customize the tabs during the import, we have a brief article on doing that using JSON – https://yikesplugins.com/knowledge-base/importing-custom-tabs-using-the-built-in-woocommerce-csv-importer/
Let me know if that helps,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Custom product tabs and polylangHi @marco978,
I’m not sure how we can help with this. Our plugin just adds additional meta to a product. It’s up to Polylang to decide how they choose to translate that information. I think you need to reach out to them.
If Polylang lets you translate things on the fly using a function, you could use the following filters:
// Use the following filter instead of the_content add_filter( 'yikes_woo_use_the_content_filter', '__return_false' ); // Manipulate the tab content somehow add_filter( 'yikes_woo_filter_main_tab_content', function( $tab_content ) { return $tab_content; // You could run some sort of "translate if available" function on this content. }, 10, 1 );Let me know if that helps,
JonForum: Plugins
In reply to: [Easy Forms for Mailchimp] Multiple Submission Notification EmailsHi @ektrunks,
I might be confused here, but the code you’re referencing does set a different subject for each form. It uses the $form_name variable here:
$subject = ‘New MailChimp Submission for Form: ‘ . $form_name;Is that not showing what you expect it to?
Thanks,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Pestañas Version ProHola @robertova,
Las pestañas guardadas solo se pueden editar desde la página de pestañas guardadas. Puede “anular” el contenido de la pestaña guardada al editarla en la página del producto, pero no cambia la pestaña guardada.
AvÃsame si eso ayuda
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Tab closesHi @samvk,
I really wouldn’t be able to tell you. This isn’t something that’s related to our plugin, it would be up to your theme developer to fix.
Jon
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Beaver Builder supportHi @fabiorcferreira,
We don’t explicitly provide support for editing our tabs using Beaver Builder. It is possible that it will work, but page builders tend to cause all manner of compatibility issues with other plugins. We instead use the TinyMCE editor that is built in to WordPress.
If Beaver Builder allows you to create a sort of standalone page section that you can call as a shortcode, that would be the best way to accomplish this. Shortcodes will work in the content of your tabs.
Let me know if that helps,
Jon