Recent Posts

Pages: 1 ... 8 9 [10]
91
Embedding / Re: Wordpress Plug running on Abantecart
« Last post by promovers on September 10, 2024, 03:54:41 PM »
Running a WordPress plugin on AbanteCart isn't feasible directly since they are built on different platforms and architectures—WordPress uses PHP with a specific plugin system, while AbanteCart is an eCommerce platform that also runs on PHP but has its own extension system. To integrate functionality between the two, you would likely need custom development or use APIs to bridge the systems, rather than running a WordPress plugin directly on AbanteCart.
92
To force category names to stay on one line in drop-down menus, you can use CSS to prevent text wrapping. Here’s a quick solution:
.dropdown-menu li a {
    white-space: nowrap;
}
This CSS rule applies the nowrap property to the anchor tags within the dropdown menu, ensuring that the text stays on a single line. If the text is too long, it will overflow horizontally, so you may also want to set a max width and enable text truncation:
.dropdown-menu li a {
    white-space: nowrap;
    max-width: 200px; /* Adjust as necessary */
    overflow: hidden;
    text-overflow: ellipsis;
}

93
General Discussion / Re: Second level breadcrumb is removed in 1.4.0?
« Last post by yonghan79 on September 10, 2024, 10:39:38 AM »
Thanks abolabo, the patch file works.
95
General Discussion / Re: Second level breadcrumb is removed in 1.4.0?
« Last post by abolabo on September 10, 2024, 04:06:08 AM »
why does the second level breadcrumb is removed?

It's not on purpose. You just found a bug.
96
General Discussion / Second level breadcrumb is removed in 1.4.0?
« Last post by yonghan79 on September 09, 2024, 11:37:48 PM »
Hi core devs,

i want to ask why does the second level breadcrumb is removed?

For example i open Home > Apparel & accessories > Shoes. the breadcrumb only shows Home > Shoes.

Please refer to the attached screenshot.

I test in a clean 1.4.0 installation. Both novator and default template are the same.

97
Extension Support / MOVED: X logo
« Last post by Basara on September 09, 2024, 04:08:17 AM »
98
General Support / Re: no images in admin page after installing
« Last post by Basara on September 09, 2024, 04:07:24 AM »
Hello,

Version 1.3.2 is outdated and requires an older PHP version, which you likely don't have. We recommend installing the latest version, 1.4.0
99
Support / Re: Errors after updating help
« Last post by Basara on September 09, 2024, 04:06:13 AM »
Hello.
Please check your AbanteCart error log for last errors
100
General Support / Re: disable fast checkout in 1.4.0
« Last post by Basara on September 09, 2024, 04:05:23 AM »
From what I am reading in this forum is there should be an extension that I could just turn off but my version 1.4.0  doesn't have that extension. I am using 'novator' theme.

Hello. The regular checkout is deprecated in 1.4.0
Pages: 1 ... 8 9 [10]

Powered by SMFPacks Social Login Mod