Hello,
Is there any way to write the (Promotional text of product in html) as in the Description ??
Thank you...
Is there any way to write the (Promotional text of product in html) as in the Description ??
Thank you...
AbanteCart v1.4.3 is released.

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
it is in the database (Category_descriptions) columns under meta_description table. We need to change the type of varchar from 255 character to above one you need. I increased it to 10000 characters.
i will check how it will works then maybe i will leave a new comment if needed.Quote from: Basara on January 10, 2022, 12:34:56 AM
Hello.
Did you embed the categories inside other category description?
Did you use Visual editor when editing the category description?
Do you see errors in the browser console
Quote from: abolabo on October 01, 2021, 04:35:27 AM
you can do this via hookpublic function onControllerPagesAccountEdit_UpdateData()
{
if (IS_ADMIN == true) {
return;
}
$that = &$this->baseObject;
$form = $that->view->getData('form');
$form['fields']['email']->attr .= ' readonly';
$form['fields']['telephone']->attr .= ' readonly';
$that->view->assign('form', $form);
}
<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
p {
text-align: center;
font-size: 100px;
margin-top: 100px;
}
</style>
</head>
<body>
<h1>Today</p>26.08.2021</p> At (13:15:00).</h1></p><h1>We'll be Online...</h1> </p>
<p id="demo"></p>
<script>
// Set the date we're counting down to
var countDownDate = new Date("August 26, 2021 13:15:00").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
// Get todays date and time
var now = new Date().getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Output the result in an element with id="demo"
document.getElementById("demo").innerHTML = days + "d " + hours + "h "
+ minutes + "m " + seconds + "s ";
// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = "EXPIRED";
}
}, 1000);
</script>
</body>
</html>
Quote from: Basara on September 07, 2021, 09:33:45 AM
Hello.
I don't think your question is related to AbanteCart. What is SimpleDisk?
. This is good point for next version 
Quote from: Basara on September 03, 2021, 06:21:46 AM
Hello. Create a poll here https://forum.abantecart.com/index.php/board,38.0.html
We will consider adding a feature if a lot user require it