mhmuc
Forum Replies Created
-
Forum: Plugins
In reply to: [Tooltips for Wordpress] Uncaught SyntaxError: missing ) after argument listHi, I’ll be happy to send you the CSV however to replicate the issue you have to select the following options:
- Show every occurence of the keyword on the page (iso only the first occurence)
- 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 10 months, 2 weeks ago by mhmuc.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Variants of hidden products in search resultsThank you for the quick reply. This is how I got it sorted out:
<?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
In reply to: [Tooltips for Wordpress] Uncaught SyntaxError: missing ) after argument listI 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 10 months, 3 weeks ago by mhmuc.
Forum: Plugins
In reply to: [CM Tooltip Glossary] Not working in enfold themeHi, 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
In reply to: [Relevanssi - A Better Search] Product with dashes and spaces not found.Problem was solved with the minimum word length. Thank you very much!
- This reply was modified 3 years, 7 months ago by mhmuc. Reason: marked solved
Forum: Fixing WordPress
In reply to: Change shortcode value within pluginHi 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
In reply to: Change shortcode value within pluginHi 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
In reply to: [Product Filter for WooCommerce by WBW] Link to filtersHi. I will contact you via email.
Thanks.Forum: Plugins
In reply to: [YITH WooCommerce Compare] Translation IssueSorry 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/?
Thanks
Forum: Plugins
In reply to: [YITH WooCommerce Compare] Translation IssueHi,
the plugin is all english now.
Also Price and Product Title aren’t translated.
What happend to the german translation?Thanks!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Find number in woocommerce product titleAhhh! Great. Thank you very much.
Well that was easy. I didn’t no I could use htmltags in the shortcode.
Thank you very much!Forum: Plugins
In reply to: [Product Filter for WooCommerce by WBW] Tabs not workingHi. 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
In reply to: [QR code MeCard/vCard generator] Dynamic vcard / qrI 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
In reply to: [QR code MeCard/vCard generator] Dynamic vcard / qrI installed the plugin, but I don’t see how I may dynamically create qr codes. I can just create static ones.