PhilippePierre
Forum Replies Created
-
Forum: Reviews
In reply to: [Comments - wpDiscuz] Great plugin indeed, bravo !Thanks for this useful info about complete redesign possibility.
Sorry for missing it.
One more star to make that bright plugin higher in the constellation !đ
Up to three stars for code quality which seems to be exceptional.
But I could not fully test the plugin, lite version is not very generous…Thanks Collins for your quick answer and different version features “colors” to come in documentation.
Forum: Plugins
In reply to: [Antispam Bee] Spam Counter BrokenThank you Torsten for your feedback.
Sorry, it seems that’s not really a bug but just some statistics delay displaying well (because I just installed plugin recently).
I’ll let you know if it persists.
Thanks again.Forum: Plugins
In reply to: [WP-SpamShield] Piracy Warnings in October Since Version 1.9.42Seems that version 1.9.45 (released 10/25/2019) fixed most problems, so far.
Activation done, at least free from false piracy accusation! đForum: Plugins
In reply to: [WP-SpamShield] Piracy Warnings in October Since Version 1.9.42@mikkosinisalo
Thanks a lot for posting here, clearly explained, the exact experience I had recently with this plugin and its (non) support.
Still no fix found for the absolutely wrong “piracy warning” with no activation possible…- This reply was modified 6 years, 7 months ago by PhilippePierre.
Forum: Plugins
In reply to: [Antispam Bee] Spam Counter Broken(Not exactly the same problem but related to Antispam Bee dashboard widget as well. WordPress v. 5.2.4)
Generated statistics text fonts are really small if not invisible, widget is mostly a white box.
Thanks for having a look at it.Forum: Plugins
In reply to: [Advanced Editor Tools] How do I change default font?I havenât found an easy way to change default font to Arial
sorry for this late reply.
No direct modifications to the plug-ing itself :
– 1) add a new css file, called it whatever you want, like âtinymce_custom_editor.cssâ for example, upload it to the folder âcssâ in your theme -> [wp-content/themes/YOUR-THEME/css/]– 2) add a new function in your theme âfunction.phpâ file
Details :
1) CSS â
 Make a file âtinymce_custom_editor.cssâ with following code â, then add it to folder [wp-content/themes/grandblog/css]
————————-
body#tinymce.wp-editor {
font-family: Arial, Helvetica, sans-serif !important;
}
————————-2) function.php
Add following new function to call previously uploaded css file âtinymce_custom_editor.css” in [wp-content/themes/YOUR-THEME/functions.php] â
————————-
function my_theme_add_editor_styles() {
   add_editor_style( ‘css/tinymce_custom_editor.css’ );
}
add_action( ‘after_setup_theme’, ‘my_theme_add_editor_styles’ );
————————-Hope the best is better.
- This reply was modified 8 years, 9 months ago by PhilippePierre.
Forum: Plugins
In reply to: [Advanced Editor Tools] How do I change default font?@dzung Did you get/find the solution? If no, i’ll share “mine”.
Regards.- This reply was modified 8 years, 10 months ago by PhilippePierre.
@ronalfy
Deeply appreciated, works perfectly now! Thank you very much.
Missing star has been added. đ- This reply was modified 9 years, 4 months ago by PhilippePierre.
added 2 stars. Thanks’ in advance for the fix.
- This reply was modified 9 years, 4 months ago by PhilippePierre.
Correction : plugin conflict might be more related to Epoch plugin than Comment Mail Pro.
Forum: Reviews
In reply to: [WP YouTube Lyte] 4 Stars because…And indeed, it does! đ
Previously it did not work in my “test” post because I inserted both : full video + audio-only links. But with just the audio-only link (httpa…), full-size video shows up fine on mobiles.
Thanks again.- This reply was modified 9 years, 5 months ago by PhilippePierre.
Forum: Reviews
In reply to: [WP YouTube Lyte] 4 Stars because…Thanks for the prompt reply.
Understood for audio-only option restriction(s).
A suggestion how to implement a logical choice according to terminal : {IF mobile, show video, else, keep audio-only}?
Best regards.