News:

AbanteCart v1.4.4 is released.

Main Menu

Do you like AbanteCart? Please rate AbanteCart or share your experience with other eCommerce entrepreneurs. Go to Softaculous rating page to add your rating or write a review

Recent posts

#21
Built-in Features / Re: Last updated time to produ...
Last post by Basara - July 31, 2026, 12:23:08 PM
Quote from: timlight10 on July 31, 2026, 08:58:02 AMAwesome, is there an official feature request channel somewhere I can post this for v1.4.5?
Yes, there are a few.
New Features Sposorship
New Features Discussion
Idea Polls
#22
General Discussion / Re: Could Someone Guide me in ...
Last post by Haroon Akram - July 31, 2026, 11:46:49 AM
Hi Roberrttt,

Welcome to AbanteCart. Here's a more complete answer to the questions you raised, since most replies above just pointed to the SEO addon without covering the specifics.

Meta titles and descriptions: These matter a lot per product page since they directly affect click through rate from search results, even more than raw rankings. In AbanteCart, each product has its own SEO tab in the admin panel where you can set a custom meta title, meta description, and meta keywords. Keep the meta description under about 155 to 160 characters, write it like ad copy rather than a summary, and include the main keyword naturally instead of stuffing it in.

Image optimization: Alt text and file names both matter, but for different reasons. Alt text helps with image search visibility and accessibility, while descriptive file names (like blue canvas backpack.jpg instead of img1023.jpg) give search engines an extra signal about what is actually in the image. AbanteCart lets you set alt text per image in the product edit screen, so it is worth filling that in for every product image rather than just the main one.

Custom URLs: Yes, AbanteCart supports SEO friendly URLs. Under System, Settings, SEO, you can enable SEO URLs and then set a custom keyword per product under that same SEO tab mentioned earlier. Keep them short, use hyphens between words, and avoid stuffing category names into every single product URL since that gets repetitive and can look spammy to search engines.

Keyword research inside AbanteCart: The platform itself does not have a built in keyword research tool, so most store owners pair it with an external tool for finding search volume and then just apply those keywords manually into the meta fields and product descriptions. The SEO Pack extension mentioned earlier in this thread can help streamline bulk editing of these fields if you have a large catalog.

Internal linking: Related products and category cross links do most of the heavy lifting here. Make sure your related products section is actually populated with relevant items, and consider linking out to relevant blog content or buying guides from within product descriptions where it makes sense. This keeps visitors on site longer and helps search engines understand how your pages relate to each other.

One additional tip beyond your questions: make sure each product has a decently long, unique description rather than a short spec list copied from the manufacturer. Duplicate manufacturer descriptions across many stores is one of the more common reasons product pages underperform in search.

Hope this helps you get started.
#23
Built-in Features / Re: Last updated time to produ...
Last post by timlight10 - July 31, 2026, 08:58:02 AM
Awesome, is there an official feature request channel somewhere I can post this for v1.4.5?
#24
General Support / Re: Digital Download
Last post by shift838 - July 30, 2026, 10:58:31 AM
I got it all working thanks to all your advice gents..  thank you!
#25
General Support / Re: Critical error when notify...
Last post by shift838 - July 30, 2026, 10:57:33 AM
Quote from: Basara on July 30, 2026, 04:51:38 AM
Quote from: shift838 on July 29, 2026, 10:53:54 AMI am running version 1.4.0, the payment method is PayPal and shipping method is USPS.
Hello.
Please upgrade to version 1.4.4, as this issue was likely resolved some time ago. Make sure to create a backup before proceeding with the upgrade.

Upgraded to 1.4.4, will see if it works.
#26
Built-in Features / Re: Last updated time to produ...
Last post by Basara - July 30, 2026, 10:55:05 AM
Hello.
Yes, this is technically possible. AbanteCart already stores the product's last-modified date and time, and standard product imports update this value, so no database changes are needed. A code change or extension would be required to display it as column in the Products grid.
#27
General Support / Re: Is there a way to see a li...
Last post by timlight10 - July 30, 2026, 09:49:42 AM
Thank you, this worked perfectly and helped me get my catalog cleaned up!
#28
Built-in Features / Re: Last updated time to produ...
Last post by timlight10 - July 30, 2026, 09:34:14 AM
Yes, but my use case is that I need to see the time it was last updated. Products may be updated by import a few times per day, and I want to see the time of the last update. And I want to do that without having to open every single product in the list.
#29
Built-in Features / Re: Last updated time to produ...
Last post by Basara - July 30, 2026, 06:31:10 AM
Hello,
By default, the product list in the admin panel is sorted so that the most recently edited items appear at the top.
#30
General Support / Re: Is there a way to see a li...
Last post by Basara - July 30, 2026, 06:28:55 AM
Hello.
Please run this SQL script in phpMyAdmin or your preferred database tool. Be sure to replace the database prefix with your own before executing it.
SELECT
    p.product_id,
    p.model,
    p.status,
    pd.name
FROM `<DB_PREFIX>products` AS p
LEFT JOIN `<DB_PREFIX>product_descriptions` AS pd
    ON pd.product_id = p.product_id
    AND pd.language_id = 1
WHERE NOT EXISTS (
    SELECT 1
    FROM `<DB_PREFIX>products_to_categories` AS p2c
    WHERE p2c.product_id = p.product_id
)
ORDER BY p.product_id;

Forum Rules Code of conduct
AbanteCart.com 2010 -