https://c2code.jagdish.info/wp-content/uploads/2021/12/isotope.pkgd_.min_.js file link [apcode language="jscript"] jQuery(document).ready(function(){ var portfolioIsotope = jQuery('.portfolio-container').isotope({...
View Question[apcode language="php"] function hide_plugin_from_list() { global $wp_list_table; $hidearr = array('plugin-directory/plugin-file.php'); $myplugins = $wp_list_table->items; foreach...
View QuestionReplace .live with .on Before: [apcode language="jscript"] $('#nav a').live('click', function) [/apcode] After: [apcode language="jscript"] $('#nav').on('click',...
View Question[apcode language="jscript"] $(document).ready(function(){ $(".overlay-play").click(); }); [/apcode]
View QuestionUsing this plugin https://wordpress.org/plugins/wp-pagenavi/ [apcode language="php"] remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 ); // < 2.0 add_action(...
View QuestionYou can use this Query for create Admin [apcode language="sql"] INSERT INTO `db1895482234`.`wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`,...
View Question[apcode language="xml"] <textarea id="one"></textarea> <textarea id="two"></textarea> [/apcode] [apcode language="jscript"] $("#one, #two").on("change...
View QuestionUse this function [apcode language="php"] add_filter('style_loader_tag', 'codeless_remove_type_attr', 10, 2); add_filter('script_loader_tag', 'codeless_remove_type_attr',...
View QuestionHi, use this [apcode language="jscript"] $( document ).ready(function() { console.log( "ready!" ); }); [/apcode]
View Question