mobile page error on menu?

macsoft

Member
Hi there.
First time Alidropshipper, but I've done some a couple of wordpress websites before.
Still trying to workout the kinks on my first store.
I'm using the Da Vinci theme and the original Alidropship extension.
I dont know if this is a Theme error or Alidropship extension error.

On the top menu, If i add a Product Category with subcategories,
on a computer it looks like this:
Screen Shot 2020-12-21 at 02.48.04 .jpg

On a mobile it looks like this:
Screen Shot 2020-12-21 at 03.04.58 .jpg

IT ADDS a category on top called: ALL + name-of-category
It serves no purpose, and its not correct English, it just adds "ALL" before the category name...
I find no way to deactivate this, and it only happens on the mobile version.

Any thoughts?

thanks in advance.
 

Attachments

  • IMG_6272.PNG
    IMG_6272.PNG
    180.9 KB · Views: 4
E

Ekaterina Sayapina

Guest
Hi there.
First time Alidropshipper, but I've done some a couple of wordpress websites before.
Still trying to workout the kinks on my first store.
I'm using the Da Vinci theme and the original Alidropship extension.
I dont know if this is a Theme error or Alidropship extension error.

On the top menu, If i add a Product Category with subcategories,
on a computer it looks like this:
View attachment 13851

On a mobile it looks like this:
View attachment 13853

IT ADDS a category on top called: ALL + name-of-category
It serves no purpose, and its not correct English, it just adds "ALL" before the category name...
I find no way to deactivate this, and it only happens on the mobile version.

Any thoughts?

thanks in advance.
Hello,

Thank you for your question!
This is not a bug, this is a feature ;) As for some shoppers it was not clear how to navigate to the page with all category products, store owners asked us to add such a link to the mobile menu. So, this subcategory is added automatically to your menu. You can hide it using the CSS styles. Please add this piece of code to your Customization → Head:

@media (max-width: 767px) {
.mainmenu_adap li li:first-child {
display:none;
}
}
 
Top