António Pinto (Vanguardly)
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce On Sale Information] Data de inicioOlá @josecarlosamaral
Na nova vers?o (1.1.1) já apresenta ambas as datas, início e fim.
Por favor atualize.
Obrigado pela sugest?o.====
On the new version (1.1.1) the plugin now shows both on sale start and end dates.
Thanks for your suggestion @josecarlosamaralForum: Plugins
In reply to: [WooCommerce On Sale Information] CSS Class not workingThis is now fixed as version 1.1.1, please update.
Thank you for reporting.
Forum: Plugins
In reply to: [WooCommerce On Sale Information] Not workingI’m marking this as resolved as there was no feedback and I couldn’t find any issues.
Forum: Plugins
In reply to: [WooCommerce On Sale Information] Data de inicioOlá José.
Obrigado pelo feedback.Adicionei a sua sugest?o à lista de funcionalidades da próxima release.
Penso disponibilizar em breve.Forum: Plugins
In reply to: [WooCommerce On Sale Information] CSS Class not workingHello @carlyblack
Thank you so much for your feedback and often a good but report ??
I’ll fix it over the weekend.
I’m sorry for taking so long to reply ??
Forum: Plugins
In reply to: [WooCommerce On Sale Information] Not workingHello @filipeos
Thank you for trying the plug-in.Can you be more clear about what does not work?
What is your WordPress version?
And what’s your WooCommerce version?Forum: Reviews
In reply to: [WooCommerce On Sale Information] worked greatThank you for your review.
Glad it worked. Let me know if there is anything you need.Forum: Plugins
In reply to: [Contact Form 7] Tag generator js errorsI did used Chrome and Tested with FireFox (both last versions)
Forum: Plugins
In reply to: [Contact Form 7] Tag generator js errorsI also have exactly the same issue.
Using latest CF7 4.2 and WP4.2.2Already switched to default theme and disabled all plugins.
The issue appeard after the update to CF7 4.2
Forum: Plugins
In reply to: [Custom Post Type UI] Permalinks causing 404 errors on custom post typeYour Custom Post Type has to have Archive set to true to enable Permalinks.
To update the Permalinks structure you can add the following function to your functions.php file:
// ============================================== // Flush Permalinks on Save Post // ============================================== //Create a Function to Flush Permalinks function nr_flush_permalinks() { /* Call WordPress rewrite function to flush rules. https://codex.www.ads-software.com/Rewrite_API/flush_rules */ $wp_rewrite->flush_rules(); // Do anything you wish to do more.... } //Add Function "n_flush_permalinks()" to the "save_post" action hook: add_action( 'save_post', 'nr_flush_permalinks()' );