Customization Woocommerce On Mobile Theme

Posted in: Newspaper
Post count: 12

I am trying to customize woocommerce on mobile theme, but not works.
I want to edit woocommerce template with this customization https://drive.google.com/open?id=0BzvCLBh5_Hp4cUpXeDdoUHR6WGc and also i want to add this code to function.php

/*Filter ini untuk mengganti description ke spesifikasi*/
}

add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 );
function woo_rename_tabs( $tabs ) {

	$tabs['description']['title'] = __( 'Spesifikasi' );		// Rename the description tab

	return $tabs;

}

/*Filter ini untuk mengganti product description heading menjadi spesifikasi lengkap*/
add_filter('woocommerce_product_description_heading',
'isa_product_description_heading');

function isa_product_description_heading() {
return __('Spesifikasi Lengkap', 'woocommerce');
}

/*Filter ini untuk memonaktifkan fungsi cart*/
add_filter( 'woocommerce_is_purchasable', false );

/*action ini untuk menghapus short description pada single product page*/
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20);

/*Filter ini untuk membenarkan reviews pada woocommerce karena bentrok dengan disqus comments*/
add_action('the_post', 'sb_remove_woocommerce_disqus');
remove_action('pre_comment_on_post', 'dsq_pre_comment_on_post');

function sb_remove_woocommerce_disqus() {
	global $post, $wp_query;
	
	if (get_post_type() == 'product') { 
		remove_filter('comments_template', 'dsq_comments_template');
	}
}

// Display 16 products per page. Goes in functions.php
add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 16;' ), 20 );
Post count: 23312

Hello rosihan16,

Unfortunately, please notice that to accomplish this type of request it is necessary to do a lot of additional customizations through code that involves custom work and we cannot provide these services at the moment, sorry! If you want to develop more levels in our theme and you are not aware of the steps in this regard, please consider hiring a freelancer/developer to help you!

Thanks for your understanding!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.