I have an issue with m2epro. There's a wrong counting for inactive items.
I don't have this item in listing! Listing counting 20 items, but if I see in "detailed listing" there are 19. I'm not able to see the active items.
Where I'm wrong?
This is the link to screenshot
Thanks in advance!
I am not sure why this happens, but to work around it. From the listings page, click on manage from the action dropdown list. This will show you the inactive listings. I hope this helps
Related
I want to make a 'year' and 'month' selection on the mobile web using HTML selection list with independent 2 columns. Selection one doesn't affect the other selection like iPhone alarm setting.
Also, I want to make a drop-down using one click (etc. I don't want to let the people click twice to open each year and month selection.)
I've searched google and I couldn't find the answer. Anyone would help? Thank you very much!!
I have many products in my store (Magento). But in the list page configurable products are not adding to Cart. Googled lot and dig the code but no luck. Anyone can help me please?
Configurable product is not allowed for add to cart without selecting configurable options. You have to go to product detail page and select
option and add to card.
If you want to add configurable product from list page, then you have to
develop or integrate 'quick view' feature. Here, you will get
configurable options on popup and select and add to cart.
I have been searching the net and especially here for this issue for hours now.
My Totals in the Cart/Checkout show a Tax.Line, but it's only labelled as "Tax". I know there is a setting to get it as "expandable" (with a + in front). Although I have in the settings the "show complete" option enabled, it still does not show any details.
I am especially looking to see the tax rate (%) there. As it is for different countries, it should be automatically, not a hard hack.
Oh, the Tax gets calculated correctly for every country. Just not shown /labelled correctly.
Any idea would be helpful!
After applying the Tax, delete Cache from the Magento admin and Reindex the data from the Magento admin.
If you want to display the full Tax Summary on the Cart Page Navigate to the System > Configuration > Click on the Tax under the Sales Tab Left sidebar Now click on the Shopping Cart Display Settings and Display Full Tax Summary : Yes Now you will see the full Tax Summary on the Cart page.
You can select other options from here.
Hope it helps,
Thanks
Could anybody help, please?
I'm confused a bit about where that feature could be find in VS and some docs about it
thanks in advance
Your screenshot is showing a feature called Drilldown.
With this, you can show or hide report items by setting the ToggleItem property to a textbox outside of the item Scope.
You can see more information at Books Online:
Hiding and Showing Report Items by Adding Drilldown.
Add an Expand/Collapse Action to an Item.
I have created some shapes dynamically at run time by mouse drag, Now i want to delete any selected item the white board.How can i achieve that.
Currently i am able to delete the last drawn item through "removeChild()" method, but not the previous items.
Please help.
Thanks in advance.
Luckily i got my answer very soon.
To delete multiple items at run time i've assign the ids to them dyanimically and the done the following:
parentComponent.removeChild(parent.getChildByName("itemName"));
before trying this i was doing
parentComponent.removeChild(item);
Cheers !!!