Show Posts


Messages - HADY

Pages: [1] 2 3 ... 22
1
Customization help / Re: Dropdown Sub-Category
« on: March 27, 2024, 08:31:06 AM »
Hello.
Please switch to php 8.1 the PHP 8.3 is not supported yet. Your question is not clear post block, theme, and screenshots so others can help you.

on my website: globaloverlinedotcom if you go to category of:  PRODUCTION AND TRADING SOLUTIONS > and scroll down to: Textile Industry Solutions there is under that sub-category another sub-categories which i want them to dropdown when scrolling down the mouse indicator to sub-category to be showed same as when you scroll the mouse to the category and expanding, did you understood my point ?


2
Opinions / affiliate Program
« on: March 26, 2024, 02:07:15 AM »
Hello AbanteCart Team,

I want to say that AbanteCart still my best choice for many reasons, I would like to see a lot of features such affiliate program so is there any chance to see it soon ?

Best regards

3
Customization help / Re: Dropdown Sub-Category
« on: March 26, 2024, 02:03:30 AM »
any ideas please?

4
Customization help / Dropdown Sub-Category
« on: March 23, 2024, 04:28:47 AM »
Hello,

I did searched the forum about such thing but I didn't found any results. i need your help to make some changes in the Sub-Categories to make them with Dropdown function. I'm using recently AbanteCart v1.3.4. with php 8.3.

Thank you in advance

5
Template Support / Re: Countdown timer on AbanteCart v1.3.4
« on: January 11, 2024, 08:06:17 AM »
Hello.
Replace
Code: [Select]
document.getElementById("demo").innerHTML = days + "d " + hours + "h "
  + minutes + "m " + seconds + "s ";
with
Code: [Select]
document.getElementById("demo").innerHTML = `${days}d ${hours}h ${minutes}m ${seconds}s `;

Solved


Thank you so much

6
Template Support / Countdown timer on AbanteCart v1.3.4
« on: January 10, 2024, 08:33:56 AM »
Hello,
HAPPY NEW YEAR

I'm trying to test countdown timer code as follow on last version of AbanteCart v1.3.4 and php 8.1 but it doesn't worked.
The test loaded on my next website: wwwdotglobaloverlinedotcom
 
What is missing please?



<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
p {
  text-align: center;
  font-size: 60px;
  margin-top: 0px;
}
</style>
</head>
<body>

<p id="demo"></p>

<script>
// Set the date we're counting down to
var countDownDate = new Date("Jan 5, 2025 15:37:25").getTime();

// Update the count down every 1 second
var x = setInterval(function() {

  // Get today's 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>



Thank you all

7
News and Announcements / Re: AbanteCart version 1.3.4 is finaly released
« on: January 10, 2024, 06:57:25 AM »
Hello,
HAPPY NEW YEAR

I'm trying to test countdown timer code as follow on last version but it doesn't worked.
What is missing please?

<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
p {
  text-align: center;
  font-size: 60px;
  margin-top: 0px;
}
</style>
</head>
<body>

<p id="demo"></p>

<script>
// Set the date we're counting down to
var countDownDate = new Date("Jan 5, 2025 15:37:25").getTime();

// Update the count down every 1 second
var x = setInterval(function() {

  // Get today's 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>



Thank you all

8
General Discussion / Re: Weekly - Monthly - yearly sales reports lists
« on: August 16, 2023, 08:40:26 AM »
To print the list, you should first list and filter the data of customers who have purchased goods in the last year. Then print the list out

how and where exactly ??

9
Support / Re: orders disappearing
« on: July 19, 2023, 05:48:08 AM »
Hello.
Maybe you have some issues with the cache. Try to disable cache in admin to investigate the problem.

I already passed that step but nothing founded. anything else could be tried maybe ?

10
Support / Re: orders disappearing
« on: July 18, 2023, 08:36:08 AM »
Hello.
What is the order statuses?

status of (Completed)

11
Support / orders disappearing
« on: July 18, 2023, 06:48:37 AM »
Hello,

There is a problem on Admin page and on clients account when looking for some orders but they are disappearing and only could be seen at PhpMyAdmin server.

How to get back these disappeared orders to be seen for clients and for admin ?? 

12
Support / restricted access to Admin login page
« on: March 08, 2023, 06:08:34 AM »
Hello,

I did searched too much this community but couldn't find related issue.

Is that possible on AbanteCart to make the login to website admin page restricted by specific PC ?

Is that possible on AbanteCart? if yes, tell me how please?

Thanks

13
Templates / Small Website logo on Google search results
« on: January 28, 2023, 01:24:28 PM »
Hello,
How to Change little logo next to search results on google
I have tried everything to get this logo to change for my listing on Google. Does anybody know where Google pulls this image from? Google has the correct logo for my knowledge panel but I can't make heads or tails of where the logo next to google results come from. I have tried a bunch of things found on Google but nothing I have found specifically says 'this is why the logo is this'.

I attached images of the logo's that I am talking about.

Thanks

14
General Discussion / Weekly - Monthly - yearly sales reports lists
« on: December 06, 2022, 03:08:34 AM »
Hello,
How to print on paper a list of some client's to know what he/she bought through a specific period for example in last year??

 

15
General Discussion / Re: Color Picker
« on: November 28, 2022, 09:28:56 AM »
I have a question about the color picture, is it possible to make it to be appeared in the product picture section ??

Pages: [1] 2 3 ... 22

Powered by SMFPacks Social Login Mod