Is Alidropship able to migrate it with a fee charged for the user ?
I doubt it. Just rewriting all the descriptions would be a monumental task ... and you may not like the descriptions they write and will have to re-write them yourself anyway. But if you hand the keys of your site over to someone else to rebuild ... you'll just have to accept that. I myself wouldn't. I like to be in 100% control of EVERYTHING on my sites.Will Alidropship consider such a service enhancement ?
It seems you want HEAPS of work done for a minimal cost. Dreaming. LOLif the service fee is manageable
That would be a Hell of a lot of work. If it took you 2 months to do it would take someone else the same amount of time to do it again. It would cost a fortune!
I doubt it. Just rewriting all the descriptions would be a monumental task ... and you may not like the descriptions they write and will have to re-write them yourself anyway. But if you hand the keys of your site over to someone else to rebuild ... you'll just have to accept that. I myself wouldn't. I like to be in 100% control of EVERYTHING on my sites.
It seems you want HEAPS of work done for a minimal cost. Dreaming. LOL
Just admit to a mistake and start from scratch. Really.
But anyway, having said all that, I may be wrong, but this is not the place to ask. You would be better off writing to Support. Who knows? They just may agree to do months of work for you at the same time as all their other work for a cheap as chips price.
Good Luck.
The Original Alidropship plugin is basically a stand alone "shopping cart" plugin. Woo Commerce is another stand alone "shopping cart plugin. They both use totally different database tables. The Alidropship Woo plugin is just an extra plugin for WooCommerce. It's not a complete "shopping cart". It's just a Woo "addon". Many other plugins/scripts (forums, CMS's etc) have migration scripts for platforms with different database tables as they have been around for years. Alidropship does not have one. And until they get all the bugs out of it ... I doubt they will be bothered to make one anytime soon.
The database tables are not compatible. Simple as that.
Choice 1. Pay a HUGE FORTUNE for the Alidropship Team/Someone else to spend a couple of months re-creating all your work.
Choice 2. Find a freelancer and pay them a HUGE FORTUNE to develop a migration script. (Then possibly sell copies of it to regain your expenses)
Choice 3. Just stay with the Original Alidropship plugin you have now, but make a Child Theme and customize the Hell out of it. (like I did)
Choice 4. Start from scratch with the Woo plugin
Take your pick. I'd go for Choice 3 if I was you.
In my opinion, apart from the themes, the original Alidropship plugin is far superior to the Woo "addon"
there's so many add-on and plugins that's only available to woo,
There's so many marketing options outside the actual plugin (Facebook, Adsense, Social Rabbit, Forums etc), I don't worry about it.the marketing part
So this path (Choice 3) was what you've taken as well ? Meaning u started with original, then realized its' shortcomings and procreated a child theme to work around it ?
Great, so now I've to CSI how to do up a child theme.
Not really that many that would make any major difference ... and if you're patient, they will eventually be developed for the original. (Like the Abandoned cart plugin)
There's so many marketing options outside the actual plugin (Facebook, Adsense, Social Rabbit, Forums etc), I don't worry about it.
Yes. You wouldn't recognise my Davinci Child theme. It make my sites as unique as a Woo site.
Making the basic child theme is easy and can be done in minutes. It's the customising and editing that takes time and skill.
Not really that many that would make any major difference ... and if you're patient, they will eventually be developed for the original. (Like the Abandoned cart plugin)
There's so many marketing options outside the actual plugin (Facebook, Adsense, Social Rabbit, Forums etc), I don't worry about it.
Yes. You wouldn't recognise my Davinci Child theme. It make my sites as unique as a Woo site.
Making the basic child theme is easy and can be done in minutes. It's the customising and editing that takes time and skill.
No. It works fine for me. You must have made mistake somewhere. Are you sure you even "activated" the child theme? Do you still have the "mother" theme installed?I created a child theme but found out that the theme "Customization" panel does not affect the theme anymore, if I make changes from the "Customization" panel nothing happen, does this happen to you too ?
Now I've to wait for support to reset it cos I've no idea what I've done that caused my product page to disappear. Its was previously 123.com/products but now its just 123.com/? follow by a strange ID
In that case ... just be happy with the Original plugin or start from scratch with Woo. But be warned ... setting up a Woo store is a lot more complicated than the original plugin.I am not up for creating a child theme when I can screw up my site
Backups? Never thought of that as a foreplay before I start playing with the permalinks.
No. It works fine for me. You must have made mistake somewhere. Are you sure you even "activated" the child theme? Do you still have the "mother" theme installed?
Theme Name: Davinci child
1. Name the folder davinci-child
2. Change the functions.php to this ...
<?php
function theme_enqueue_styles() {
$parent_style = 'parent-style';
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style )
);
}
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
add_theme_support( 'post-thumbnails' );
Or ... use the one attached here ....
Thank you very much