How to solve WordPress accordion problem on Iphone?

For working with accordions in iphone we need to add href=”#id” attributes to tag. <a data-toggle=”collapse” data-target=”#collapse1″ href=”#collapse1″> <i class=”pull-right icon-chevron-right mobile-nav-icon”></i> </a> Please check this link for more help : https://stackoverflow.com/a/19869181/4227367

Elementor Contact Form Submit button has empty class

You can add below code in your JS file and replace the class demo with class name you want to add. I have made this code as per the structure in the URL you have shared above. jQuery(“#content-form-b1e59dc”).find(“button”).addClass(“demo”);

Busting Browser Cache when updating stylesheet of WordPress website

If you are editing the child theme CSS then this line has nothing to do with that: wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’, [], THEME_VERSION, ‘all’); get_template_directory_uri always refers to the parent theme, get_stylesheet_directory_uri always refers to the active theme, in this case the child theme. Likewise these lines refer to the currently active theme, aka … Read more

How to remove automatically added custom style tag?

In my case the style tag was added by the flying font plugin. I have modified the file ‘wp-content/plugins/flying-fonts/flying-fonts.php’ ……………. $style = “<style>body{font-family:-apple-system,system-ui,BlinkMacSystemFont,’Segoe UI’,Roboto,Oxygen,Ubuntu,Cantarell,’Fira Sans’,’Droid Sans’,’Helvetica Neue’,sans-serif !important}code{font-family:Menlo,Consolas,Monaco,Liberation Mono,Lucida Console,monospace !important}</style>”; $style=””; // set the style as ” $html = str_replace(‘</head>’, $style . ‘</head>’, $html); ……… And i have added the style manually in non … Read more