Show Posts


Messages - HADY

Pages: 1 ... 3 4 [5] 6 7 ... 22
61
Templates / Promotional text
« on: January 14, 2022, 08:27:27 AM »
Hello,

Is there any way to write the (Promotional text of product in html) as in the Description ??

Thank you...

62
Embedding / Re: embedding categories
« on: January 13, 2022, 08:52:34 AM »
Thank you Mr. Basara,

here is the link:
https://imkotekstil . com . tr/products

63
Embedding / Re: embedding categories
« on: January 13, 2022, 05:03:10 AM »
Hello,

Any ideas please?

Thank you...

64
Templates / Re: Meta Tag Description
« on: January 13, 2022, 04:28:48 AM »
Ok, 


I found it  ;D  ;D  ;D 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.


sorry for bothering you.

65
Templates / Meta Tag Description
« on: January 13, 2022, 04:12:58 AM »
Hello,


Is it possible to increase the number of words which we can write in the Meta Tag Description of categories??? If yes, how?

Thank you...

66
Embedding / Re: embedding categories
« on: January 10, 2022, 02:43:14 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


Hello,

Yes, I embedded categories inside other category's description.

I used W3Schools live editor to modify the code

In the browser console no errors related to this issue i guess. they are about the JS of Trusted Site Logo which located in the bottom of the pages.

Examples:

Here an original given embedded category code:

<script src="https://imkotekstil.com.tr/index.php?rt=r/embed/js" type="text/javascript"></script>
<ul style="display:none;" class="abantecart-widget-container" data-url="https://imkotekstil.com.tr/" data-css-url="https://imkotekstil.com.tr/storefront/view/default/stylesheet/embed.css" data-language="en" data-currency="EUR">
   <li id="abc_164179978461429" class="abantecart_category" data-category-id="29" data-language="en" data-currency="EUR">
      <span class="abantecart_image"></span>
      <h3 class="abantecart_name"></h3>
      <p class="abantecart_products_count"></p>
   </li>
</ul>

Here is the Edited and final code:

<script src="https://imkotekstil.com.tr/index.php?rt=r/embed/js" type="text/javascript"></script>
<style="display:none;" class="abantecart-widget-container" data-url="https://imkotekstil.com.tr/" data-css-url="https://imkotekstil.com.tr/storefront/view/default/stylesheet/embed.css">
   <li id="abc_164179978461429" class="abantecart_category" data-category-id="29">
      <span class="abantecart_image"></span>
      <p class="abantecart_products_count"></p>
   </li>


In the edited code i removed the next element <ul> </ul> and the language & currency tags from the code to push the browser to show the exactly browser's language as also removed the name of category too.



Is there anything wrong?


Thank you.

67
Embedding / embedding categories
« on: January 07, 2022, 08:56:15 AM »
Hello,


I use last versions of Abantecart and php on website

I embedded a categories html code in a new category but i got a problem in the website when showing that category screen as you can see this in the screenshot.

What to do to fix it ??


Thank you

68
Template Support / Re: Edit Account
« on: October 01, 2021, 06:23:31 AM »
you can do this via hook

Code: [Select]
    public 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);
    }


can you share the file path please ?

69
Template Support / Edit Account
« on: September 30, 2021, 10:08:12 AM »
Hello,

I would like to prevent the client from changing some personal details such Name surname email etc.

How to lock these fields to be read only?


Thanks...
 

70
Thank you


Thank you for editing my reply too.

71
Here is my suggestion to you :)




Code: [Select]
<!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>

72
Templates / Re: SimpleDisk configuration
« on: September 07, 2021, 09:40:51 AM »
Hello.
I don't think your question is related to AbanteCart. What is SimpleDisk?

This is a supporting ticketing management extension. here is the features: hxxps://xxx.simpledesk.net/download/features

73
Templates / SimpleDisk configuration
« on: September 07, 2021, 09:08:41 AM »
hello!

I need your help and support to tell me if this Mod. will work on v1.3.1 or not and if yes, which one should be used? Have you test it and use it before ? what is your opinions and suggestion in this issue? How to configurate it on AbanteCart ?


Thanks...

74
New Features Discussion / Agreement Account Terms
« on: September 07, 2021, 08:58:40 AM »
Hello!

In our business the client should check all boxes for (About Us - Privacy Policy - Return Policy - Shipping Policy - Terms and Conditions - GDPR) and confirm that he did read all contains included in all of those statements pages.  those sections should be checked one by one. These are the New terms now in Turkey to be sure there will not be any conflicts in the future between both sides seller and buyer. Also there is equivalent time for reading the statements will activate the checkbox to be clicked. for example: if the (About us page) takes around 5 min. to be read the checkbox will be activated after 5 min. only and not before.  ;D :D ;) :) . This is good point for next version :)

What do you think guys?

75
Templates / Re: Agreement Account Terms
« on: September 07, 2021, 08:20:09 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

how to make that exactly ??

Pages: 1 ... 3 4 [5] 6 7 ... 22

Powered by SMFPacks Social Login Mod