Title: mhmuc's Replies | WordPress.org

---

# mhmuc

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/mhmuc/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/mhmuc/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Tooltips for Wordpress] Uncaught SyntaxError: missing ) after argument list](https://wordpress.org/support/topic/uncaught-syntaxerror-missing-after-argument-list-8/)
 *  [mhmuc](https://wordpress.org/support/users/mhmuc/)
 * (@mhmuc)
 * [11 months, 1 week ago](https://wordpress.org/support/topic/uncaught-syntaxerror-missing-after-argument-list-8/#post-18557531)
 * Hi, I’ll be happy to send you the CSV however to replicate the issue you have
   to select the following options:
    1. Show every occurence of the keyword on the page (iso only the first occurence)
    2. Have a keyword within the tooltip-content.
 * To stick to your example: Change the text of your demo-tooltip to something containing
   the phrase “Contact us now”.
 * This will generate Java-Script-Code in the tooltip output with incorrectly escaped
   quotations which results in the javascript-failure.
 * I came across this problem, because I used a word in the tooltip description 
   that is another tooltip-keyword.
    -  This reply was modified 11 months, 1 week ago by [mhmuc](https://wordpress.org/support/users/mhmuc/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Relevanssi - A Better Search] Variants of hidden products in search results](https://wordpress.org/support/topic/variants-of-hidden-products-in-search-results/)
 *  Thread Starter [mhmuc](https://wordpress.org/support/users/mhmuc/)
 * (@mhmuc)
 * [11 months, 2 weeks ago](https://wordpress.org/support/topic/variants-of-hidden-products-in-search-results/#post-18543446)
 * Thank you for the quick reply. This is how I got it sorted out:
 *     ```wp-block-code
       <?php/** * Produktvariationen versteckter Produkte von Relevanssi ausschließen */add_filter('relevanssi_do_not_index', 'exclude_hidden_product_variations', 10, 2);function exclude_hidden_product_variations($block, $post_id) {    // Nur bei Produktvariationen prüfen    if (get_post_type($post_id) !== 'product_variation') {        return $block;    }        // Parent-Produkt-ID ermitteln    $parent_id = wp_get_post_parent_id($post_id);    if (!$parent_id) {        return $block;    }        // Prüfen ob Parent-Produkt versteckt ist    $parent_product = wc_get_product($parent_id);    if ($parent_product && $parent_product->get_catalog_visibility() === 'hidden') {        return 'Variation von verstecktem Produkt ausgeschlossen';    }        return $block;}?>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Tooltips for Wordpress] Uncaught SyntaxError: missing ) after argument list](https://wordpress.org/support/topic/uncaught-syntaxerror-missing-after-argument-list-8/)
 *  [mhmuc](https://wordpress.org/support/users/mhmuc/)
 * (@mhmuc)
 * [11 months, 2 weeks ago](https://wordpress.org/support/topic/uncaught-syntaxerror-missing-after-argument-list-8/#post-18543343)
 * I have the same problem. I think it is because another tooltip keyword is in 
   the tooltip description. I think escaping with ” instead of ‘ might help.
    -  This reply was modified 11 months, 2 weeks ago by [mhmuc](https://wordpress.org/support/users/mhmuc/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CM Tooltip Glossary] Not working in enfold theme](https://wordpress.org/support/topic/not-working-in-enfold-theme/)
 *  Thread Starter [mhmuc](https://wordpress.org/support/users/mhmuc/)
 * (@mhmuc)
 * [11 months, 3 weeks ago](https://wordpress.org/support/topic/not-working-in-enfold-theme/#post-18537577)
 * Hi, thank you very much for the quick reply. 
   Product(product) is activated, 
   but it is still not working.
 * We created a glossary-entry called “DuoFlow”, which is in the product description,
   but it is not showing a tooltip. Can I send you the URL privatly?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Relevanssi - A Better Search] Product with dashes and spaces not found.](https://wordpress.org/support/topic/product-with-dashes-and-spaces-not-found/)
 *  Thread Starter [mhmuc](https://wordpress.org/support/users/mhmuc/)
 * (@mhmuc)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/product-with-dashes-and-spaces-not-found/#post-16118022)
 * Problem was solved with the minimum word length. Thank you very much!
    -  This reply was modified 3 years, 8 months ago by [mhmuc](https://wordpress.org/support/users/mhmuc/).
      Reason: marked solved
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Change shortcode value within plugin](https://wordpress.org/support/topic/change-shortcode-value-within-plugin/)
 *  Thread Starter [mhmuc](https://wordpress.org/support/users/mhmuc/)
 * (@mhmuc)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/change-shortcode-value-within-plugin/#post-15367378)
 * Hi everyone,
 * the problem is solved.
    I executed the function that changes the short-code-content
   within the action of the contact form. Somehow that ran at a different stage 
   so it was not executed in the right time. I solved it differently now…
 * THank you very much for your help!
 * `add_action( 'wpcf7_contact_form', 'action_wpcf7_contact_form', 10, 1 );`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Change shortcode value within plugin](https://wordpress.org/support/topic/change-shortcode-value-within-plugin/)
 *  Thread Starter [mhmuc](https://wordpress.org/support/users/mhmuc/)
 * (@mhmuc)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/change-shortcode-value-within-plugin/#post-15358084)
 * Hi bcworkz,
 * thank you for your reply.
 * What I basically trying to do is use a shortcode in the frontend e.g. [TEST],
   that is dynamically filled during plugin-runtime.
 * I get it to work if I define the shortcode in the init-part of the plugin, but
   I can’t change the content in another function of the plugin. This must be possible
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Filter for WooCommerce by WBW] Link to filters](https://wordpress.org/support/topic/link-to-filters/)
 *  Thread Starter [mhmuc](https://wordpress.org/support/users/mhmuc/)
 * (@mhmuc)
 * [5 years ago](https://wordpress.org/support/topic/link-to-filters/#post-14566098)
 * Hi. I will contact you via email.
    Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Compare] Translation Issue](https://wordpress.org/support/topic/translation-issue-144/)
 *  Thread Starter [mhmuc](https://wordpress.org/support/users/mhmuc/)
 * (@mhmuc)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/translation-issue-144/#post-14406166)
 * Sorry I forgot that the german translation is not included.
    How long does it
   take to include the german file with default updates if I finish of the german
   translation on [https://translate.yithemes.com/gp/projects/yith-woocommerce-compare/de/default/](https://translate.yithemes.com/gp/projects/yith-woocommerce-compare/de/default/)
 * ?
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Compare] Translation Issue](https://wordpress.org/support/topic/translation-issue-144/)
 *  Thread Starter [mhmuc](https://wordpress.org/support/users/mhmuc/)
 * (@mhmuc)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/translation-issue-144/#post-14402178)
 * Hi,
 * the plugin is all english now.
    Also Price and Product Title aren’t translated.
   What happend to the german translation?
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Relevanssi - A Better Search] Find number in woocommerce product title](https://wordpress.org/support/topic/find-number-in-woocommerce-product-title/)
 *  Thread Starter [mhmuc](https://wordpress.org/support/users/mhmuc/)
 * (@mhmuc)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/find-number-in-woocommerce-product-title/#post-14221650)
 * Ahhh! Great. Thank you very much.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Event List Monthly (Format)](https://wordpress.org/support/topic/event-list-monthly-format/)
 *  Thread Starter [mhmuc](https://wordpress.org/support/users/mhmuc/)
 * (@mhmuc)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/event-list-monthly-format/#post-14221626)
 * Well that was easy. I didn’t no I could use htmltags in the shortcode.
    Thank
   you very much!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Filter for WooCommerce by WBW] Tabs not working](https://wordpress.org/support/topic/tabs-not-working-35/)
 *  Thread Starter [mhmuc](https://wordpress.org/support/users/mhmuc/)
 * (@mhmuc)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/tabs-not-working-35/#post-14194127)
 * Hi. Thanks for coming back to me so quickly.
    Actually it was the plugin “WP-
   DATA-Access”. I don’t see why this is interferring, as it doesn’t have anything
   to do with woocommerce.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[QR code MeCard/vCard generator] Dynamic vcard / qr](https://wordpress.org/support/topic/dynamic-vcard-qr/)
 *  Thread Starter [mhmuc](https://wordpress.org/support/users/mhmuc/)
 * (@mhmuc)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/dynamic-vcard-qr/#post-14190175)
 * I found a way to do it with the google charts API.
    I have a list of people and
   want to show the vcard behind the contact.
 * I just implement it is an image now….
 * Thank you for your help
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[QR code MeCard/vCard generator] Dynamic vcard / qr](https://wordpress.org/support/topic/dynamic-vcard-qr/)
 *  Thread Starter [mhmuc](https://wordpress.org/support/users/mhmuc/)
 * (@mhmuc)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/dynamic-vcard-qr/#post-14189721)
 * I installed the plugin, but I don’t see how I may dynamically create qr codes.
   I can just create static ones.

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

1 [2](https://wordpress.org/support/users/mhmuc/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/mhmuc/replies/page/2/?output_format=md)