Benjamin Zekavica
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy SVG Support] Adding SVG icon in headings (h1, h2, etc..)@nanny7 Yes for this usecase you have to use the hooks. In my plugin I added SVG Sanitizer for clean the files. Add this to your functions.php and modify your used tags and attributes.
// XML TAGS add_filter( 'esw_svg_allowed_tags', function ($tags) { $tags[] = 'p'; $tags[] = 'info'; return $tags; } );
// XML attributes add_filter( 'esw_svg_allowed_attributes', function ( $attributes ) { $attributes[] = 'src'; return $attributes; } );
Forum: Plugins
In reply to: [WooCommerce] block_render ProblemSorry I think you don’t understand my problem. In the new update you use the gutenberg block hook render_block and all plugins that override this function has now a conflict.
Same problem here:
https://www.ads-software.com/support/topic/legacytemplate-function-add_alignment_class_to_wrapper-errorForum: Reviews
In reply to: [Hide Block] Does not workHallo first thank you for your review. In our WordPress Community we can’t support all plugins direcly. Because I create this plugin in my freetime and it’s only optimized for blank WordPress installtion. But for future it’s better to open a support thread and to add a feature request. That is the better way because this plugin is for free and I will spend much time to make it better. This review section I think is a bad way, because this dosn’t help the developers direcly.
I will check your problem and soon as possible I will publish a new update.
Hmm I don’t see a update notice …
Forum: Plugins
In reply to: [Hide Block] Generating huge debugIt’s now fixed ?? Please update your plugin version.
It’s now fixed ?? But the columns support I will add soon as possibile.
Thank you ?? Do you have a screenshot and which Theme & Plugins you use on your WordPress installation?
Forum: Reviews
In reply to: [Hide Block] Simple & ElegantThank you ??
Forum: Reviews
In reply to: [Easy SVG Support] Simple and efficientThank you very much ??
Forum: Reviews
In reply to: [Easy SVG Support] Simple Works eExcellent!Thank you very much ??
Forum: Reviews
In reply to: [Hide Block] Small, simple, excellent!Thank you very much ??
Forum: Plugins
In reply to: [Easy SVG Support] Adding SVG icon in headings (h1, h2, etc..)Hallo ?? I’m so sorry but this plugin is only to update SVG Files in the Media library. If you want to display, than you have to embet the FontAwesome Font into your CSS file.
If you don’t have experience than you can look for a plugin here on www.ads-software.com for FontAwesome. Than you can use this libary.
Greetings from Germany
Benjamin ZekavicaForum: Reviews
In reply to: [Hide Block] Please merge this in the core of WordPressThank you ?? I hope it
Forum: Plugins
In reply to: [Ninja Forms Merge Tag Addon] PHP ErrorsHallo, I’m so sorry for my late reply. Which PHP Version you use?
For some developers here some hints:
I fixed the problem if you call the fileclass.yourmergetag.php
Here one example:
function nfmta_register_merge_tags(){ require_once 'class.nfmergecontent.php'; Ninja_Forms()->merge_tags[ 'nfmta_merge_tags' ] = new NFMTA_AddonTag(); } add_action( 'ninja_forms_loaded', 'nfmta_register_merge_tags' );
- This reply was modified 5 years, 7 months ago by Benjamin Zekavica.