Shahaji Deshmukh
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Social Feeds Widget & Shortcode] Lazy LoadHi @catmaniax,
Are you ready to pay for this feature? If yes, mail me on [ redacted ]
- This reply was modified 7 years, 11 months ago by Jan Dembowski.
Forum: Plugins
In reply to: [Advanced Social Feeds Widget & Shortcode] Lazy LoadThis feature will be available in the pro version of the plugin. Which will be launched soon.
Forum: Plugins
In reply to: [Advanced Social Feeds Widget & Shortcode] Lazy LoadYes. Lazy loading is possible.
Forum: Plugins
In reply to: [Advanced Social Feeds Widget & Shortcode] Lazy LoadHi catmaniax,
Can you please share your website url.
Forum: Plugins
In reply to: [Advanced Social Feeds Widget & Shortcode] How can I reduce the font size?Hi Manaz,
Where do you want to reduce the font size? Can you please share your website url.
Forum: Plugins
In reply to: [Social Feeds] Feeds are under some objects on pageHi Sonekka,
Can you please share your website url.
Forum: Plugins
In reply to: [Social Feeds] Feeds are under some objects on pageYou can use plugin 1.1 version. I have implemented this option in current 1.1 version.
Forum: Plugins
In reply to: [Rocket Fireworks] Broken imagesI have resolved the broken images issue into the version 1.2
- This reply was modified 8 years, 1 month ago by Shahaji Deshmukh.
- This reply was modified 8 years, 1 month ago by Shahaji Deshmukh.
Forum: Plugins
In reply to: [WooCommerce] Hooking and adding new column on woocommerce order admin page./* * ********************************************************
*
* Remove Actions, shipping address columns and add billing address column in orders menu
*
* ********************************************************* */
add_filter(‘manage_edit-shop_order_columns’, ‘show_product_order’, 15);function show_product_order($columns) {
$new_columns = (is_array($columns)) ? $columns : array();
//remove column
unset($new_columns[‘order_actions’]);
unset($new_columns[‘shipping_address’]);//add column
$new_columns[‘billing_address’] = __(‘Address’);return $new_columns;
}add_action(‘manage_shop_order_posts_custom_column’, ‘shahaji_custom_shop_order_column’, 10, 2);
function shahaji_custom_shop_order_column($column) {
global $post, $woocommerce, $the_order;
switch ($column) {
case ‘billing_address’ :
if ( $address = $the_order->get_formatted_billing_address() ) {
echo esc_html( preg_replace( ‘#<br\s*/?>#i’, ‘, ‘, $address ) );
} else {
echo ‘–’;
}break;
}
}