
Allow your visitors to increase or decrease font size of the "main" section of your website.
Allows your visitors to increase or decrease font size of the “main” section of your website.
Features:
Try changing settings, specifically the jQuery selector field. Your theme might have different mark up.
Use [wpavefrsz-resizer] to output resizer wherever you want.
Use ‘wpavefrsz_render_flag’ filter. For example, to only disable it on pages, use it like so:
add_filter('wpavefrsz_render_flag', function ($render, $post) { if ($post->post_type === 'page') { return false; } return $render; }, 10, 2);Let’s fix that! Contact me at aleksandarziher@gmail.com