admin | Answers

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
0 Votes

[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 Question
0 Votes

Replace .live with .on Before: [apcode language="jscript"] $('#nav a').live('click', function) [/apcode] After: [apcode language="jscript"] $('#nav').on('click',...

View Question
0 Votes edited answer

[apcode language="jscript"] $(document).ready(function(){  $(".overlay-play").click(); }); [/apcode]

View Question
0 Votes

Using 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 Question
0 Votes

You 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
0 Votes

[apcode language="xml"] <textarea id="one"></textarea> <textarea id="two"></textarea> [/apcode] [apcode language="jscript"] $("#one, #two").on("change...

View Question
0 Votes

Use 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 Question
0 Votes

Hi, use this [apcode language="jscript"] $( document ).ready(function() {     console.log( "ready!" ); }); [/apcode]

View Question
0 Votes