February 21, 2014

WordPress Plugin – Injection Guard

Injection Guard

December 10, 2013

WordPress Plugin – Endless Posts Navigation

Endless Posts Navigation

November 29, 2013

WordPress Admin is slowing down?

WordPress Admin is slowing down? I have checked a client’s website in details. The reason was ACF, i couldn’t install any plugin so can’t tell the no. of queries+DOM elements generation which were taking time to load. In fact ACF was querying to every single field to wp_posts & wp_postmeta and then include a no. […]

September 21, 2013

Multiple images are not importing to gallery!

Woocommerce CSV importer Note: If you are using FAT32 system then you might will face the same issue. if(!function_exists(‘wce_gallery_update’)){ function wce_gallery_update($post_id, $attach_ids){ is_array($attach_ids)?$attach_ids:array(); if(!empty($attach_ids)){ $meta_value = implode(‘,’, $attach_ids); update_post_meta($post_id, ‘_product_image_gallery’, $meta_value); } } } Woocommerce CSV importer

September 19, 2013

WooCommerce Version 2.0.12 – get_item_meta

WooCommerce Version 2.0.12 File: classes/class-wc-order.php Function: get_item_meta Issue: It returns empty although itemdata table have records. Ref: Support Suggested Fix: There is another function which is available in the same class with the name “has_meta”. We can use it as an else case. Insert the following code in function “get_items” after this line $items[ $item->order_item_id […]

June 22, 2013

How WP Mechanic Will Work?

WordPress Mechanic - WordPress Plugin

How WP Mechanic Will Work? WordPress mechanic is a combination of FAQ feeds, blog items, consolidated tips and suggestions from WordPress gurus on wp-admin dashboard for those who are not familiar with technicalities. They don’t need to Google every small issue, just browse with WordPress mechanic or ask a new question if they are tired […]

June 19, 2013

Woocommerce CSV importer – Resume Feature

Woocommerce CSV importer – Resume Feature if(!function_exists(‘wce_gallery_resume’)){ function wce_gallery_resume($post_id){ $files = array(); $check_image = get_post_meta($post_id, ‘_product_image_gallery’, true); $check_image = is_array($check_image)?$check_image:explode(‘,’,$check_image); if(!empty($check_image)){ foreach($check_image as $image){ $i = basename(get_post_meta($image, ‘_wp_attached_file’, true)); $files[$i] = $image; } } return $files; } } How to use this? Locate this file “include/woocommerce-csvimport-functions.php” Locate function “woocsv_import_products_from_csv” Locate this line “if ( isset( […]

June 2, 2013

WordPress Plugin – Alphabetic Pagination

Alphabetic Pagination