Recent Posts

Pages: 1 2 3 [4] 5 6 ... 10
31
Installation and Configuration / Re: Cart show number of goods in menu bar
« Last post by naimehossain37 on September 09, 2023, 10:36:12 AM »
I would like to see the number of items in the cart next to the link, how does that work?
32
General Discussion / user Module to allow Outside Sellers
« Last post by nuevavidatv28 on September 09, 2023, 08:07:54 AM »
Does AbanteCart allow the ability to create users who can sell their products on the site and of course the host take a %?
Is there an extension to accomplish this?
looking to use this to potentially create a community car sales site.
33
AbanteCart v2.0 / Re: Age Verification
« Last post by Basara on September 07, 2023, 02:38:54 AM »
Hello.
You have two options to add code to your site: either use the HTML block feature or install an extension from a third party.
https://abantecart.atlassian.net/wiki/spaces/AD/pages/12419073/HTML+Block
https://marketplace.abantecart.com/age_verification
34
AbanteCart v2.0 / Age Verification
« Last post by iverpectin on September 06, 2023, 08:18:22 PM »
I see that the last time this came up was 2014, so here we go again.

I asked chatgpt to create some code for this thing and got this: Question is where to put it.. LOL. indexPHP?

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Age Verification</title>
    <style>
        /* CSS for the overlay */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            align-items: center;
            justify-content: center;
        }

        /* CSS for the popup */
        .popup {
            background-color: #fff;
            padding: 20px;
            border-radius: 5px;
            text-align: center;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
        }
    </style>
</head>
<body>
    <!-- Age verification overlay -->
    <div class="overlay" id="ageVerification">
        <div class="popup">
            <h2>You must be over 21 to access this content.</h2>
            <button onclick="closePopup()">OK</button>
        </div>
    </div>

    <!-- Your website content goes here -->

    <script>
        // JavaScript function to display the age verification popup
        function showPopup() {
            var overlay = document.getElementById('ageVerification');
            overlay.style.display = 'flex'; // Display the overlay
        }

        // JavaScript function to close the age verification popup
        function closePopup() {
            var overlay = document.getElementById('ageVerification');
            overlay.style.display = 'none'; // Hide the overlay
        }

        // Check the user's age (you should replace this with your own logic)
        function checkAge() {
            var userAge = 21; // Replace with the actual user's age
            if (userAge < 21) {
                showPopup();
            }
        }

        // Call the checkAge function when the page loads
        window.onload = checkAge;
    </script>
</body>
</html>
35
Security / Re: Home page is unsecured Http://
« Last post by Basara on September 06, 2023, 02:56:33 AM »
Hello.
Simply add a redirect rule to your htaccess file to direct all insecure traffic to https
https://forum.abantecart.com/index.php/topic,10146.msg39322.html#msg39322
36
Security / Home page is unsecured Http://
« Last post by Sharpeye on September 05, 2023, 03:41:59 PM »
Hello,
Can someone tell me why my home page is showing as an unsecured site in almost every Android browser on multiple Android devices? The hosting provider has secured the directory with SSL certificates, and keys, but just entering the URL as mystore.site(example) lands on my unsecured home page? In the Abantecart admin settings, I have the url's set to use https: yet it comes up every time as http: for reasons I cant figure out.

If while on the home page you click the store logo, then the site refreshes to a secure website (https:)..which is even more bizarre.

I don't get it?

Thanks
DM
37
Support / Re: Buy Now button does not add Shipping
« Last post by iverpectin on September 05, 2023, 04:55:04 AM »
Mnay thanks, I just didnt do it that far.. (lazy) but it makes perfect sense.
38
Support / Re: Buy Now button does not add Shipping
« Last post by Basara on September 05, 2023, 03:47:40 AM »
Hello.
When you click Buy Now you need to go through the checkout process (enter delivery address or login) to see the Shipping methods selection.
39
Support / Buy Now button does not add Shipping
« Last post by iverpectin on September 05, 2023, 12:23:30 AM »
Shipping is added on add to cart, but not on Buy Now.

Shipping is set as Fixed price on the product page

Can someone guide me here please.
40
How-to questions / Re: Option issue (question)
« Last post by macat on September 04, 2023, 03:32:59 PM »
Thank you Basara for the reply ... that is more or less what I have done, I have so many of each size, it looks like I just have to list them as I have and they have to add them individually, I did add a continue button right under the products in the cart so they don't have to scroll aal the way down to continue shopping if they want.   I couldn't get the multibox option to work, it still only allows for adding one item at a time, I thought that was so they could add more than one item in the list at the same time?

It will work this way, just a little more time consuming and you know how people are today, hurry, hurry hurry!

Thank you for your help.

Hello.
Create a combination of two attributes like described here https://abantecart.atlassian.net/wiki/spaces/AD/pages/29819029/Parent+Child+Options
It will look like this product https://demo.abantecart.com/casual-sleeve-baseball-t-shirt?keyword=casual&category_id=0
Pages: 1 2 3 [4] 5 6 ... 10

Powered by SMFPacks Social Login Mod