Best Woocommerce Theme For AliDropShip

prod3v

New Member
Hello there ,
I just wanna to know ,what is the best woocommerce theme for alidropship plugin except Flatsome & claue
There are a ton of themes better than these themes (Flatsome & claue) :(
Did anybody test any theme and worked for him with alidropship ?
 

Mar

Moderator
Hello there ,
I just wanna to know ,what is the best woocommerce theme for alidropship plugin except Flatsome & claue
There are a ton of themes better than these themes (Flatsome & claue) :(
Did anybody test any theme and worked for him with alidropship ?
Your question is hard to answer. This is a matter of preference. The theme that is good for us may not be good for you.
 

mduncanvm

Member
I would suggest to go with themes that are 100% working with woo commerce. That seems to be more important than what it looks like. There are list of them if you do your search starting on the woo commerce site for example.
 

iori17

New Member
Hello there ,
I just wanna to know ,what is the best woocommerce theme for alidropship plugin except Flatsome & claue
There are a ton of themes better than these themes (Flatsome & claue) :(
Did anybody test any theme and worked for him with alidropship ?

Hello!

I think it will depend on what kind of website (business) you will build.

For Multipurpose website I prefer DIVI (I am user of DIVI).

In case for Ecommerce (I suppose that you are going to build ecommerce...obvious?) try Flatsome.

I used Shopkeeper, DIVI, Flatsome, Cosmetro, elementor, etc and in my opinion my best investment was divi and flatsome... because I make ecommerce website. and it is really easy(compared to others) for non-techies.

also as @mduncanvm said above, is good to choice a theme that works well with woocommerce.

Recently DIVI made a big update, I didnt try it yet, but check and compare with others and hope you make a good choice!
(JFYI I am not a theme seller)

regarding woocommerce, I suggest to modify your theme functions.php to boos your speed eliminating stylesheets that are very heavy.

Cheers!
 

iori17

New Member
How do you modify?

/** Disable Ajax Call from WooCommerce */
add_action( 'wp_enqueue_scripts', 'dequeue_woocommerce_cart_fragments', 11);
function dequeue_woocommerce_cart_fragments() { if (is_front_page()) wp_dequeue_script('wc-cart-fragments'); }

/** Disable All WooCommerce Styles and Scripts Except Shop Pages*/
add_action( 'wp_enqueue_scripts', 'dequeue_woocommerce_styles_scripts', 99 );
function dequeue_woocommerce_styles_scripts() {
if ( function_exists( 'is_woocommerce' ) ) {
if ( ! is_woocommerce() && ! is_cart() && ! is_checkout() ) {
# Styles
wp_dequeue_style( 'woocommerce-general' );
wp_dequeue_style( 'woocommerce-layout' );
wp_dequeue_style( 'woocommerce-smallscreen' );
wp_dequeue_style( 'woocommerce_frontend_styles' );
wp_dequeue_style( 'woocommerce_fancybox_styles' );
wp_dequeue_style( 'woocommerce_chosen_styles' );
wp_dequeue_style( 'woocommerce_prettyPhoto_css' );
# Scripts
wp_dequeue_script( 'wc_price_slider' );
wp_dequeue_script( 'wc-single-product' );
wp_dequeue_script( 'wc-add-to-cart' );
wp_dequeue_script( 'wc-cart-fragments' );
wp_dequeue_script( 'wc-checkout' );
wp_dequeue_script( 'wc-add-to-cart-variation' );
wp_dequeue_script( 'wc-single-product' );
wp_dequeue_script( 'wc-cart' );
wp_dequeue_script( 'wc-chosen' );
wp_dequeue_script( 'woocommerce' );
wp_dequeue_script( 'prettyPhoto' );
wp_dequeue_script( 'prettyPhoto-init' );
wp_dequeue_script( 'jquery-blockui' );
wp_dequeue_script( 'jquery-placeholder' );
wp_dequeue_script( 'fancybox' );
wp_dequeue_script( 'jqueryui' );
}
}
}

this code will disable some heavy stylesheets from woocommerce and improve page load speed. specially for mobile devices
 

iori17

New Member
also is helpful if stop the heartbeat

add_action( 'init', 'stop_heartbeat', 1 );
function stop_heartbeat() {
wp_deregister_script('heartbeat');
}
 

apparelpulsar

New Member
Yeah, you should try El Greco Woo. I'm using it currently, for it's clear and fast. These are two main characteristics I'm lloking for when choosing themes for my ecommerce sites.
 
Top