Show Posts


Messages - yonghan79

Pages: [1] 2 3 ... 6
1
Built-in Features / Re: Shipping doesn't work at check out
« on: March 09, 2025, 08:38:40 AM »
Hi,

both username and password should be 12 chars long each.

2
General Support / Re: Layout format
« on: March 06, 2025, 10:49:32 AM »
you're welcome.

3
General Support / Re: Layout format
« on: March 06, 2025, 10:10:56 AM »
This is the default BS5 Main Page Carousel content. It is from AbanteCart v1.3.4 demo data.

Code: [Select]
<div id="mainPageSliderIndicators" class="carousel carousel-dark slide bg-light" data-bs-ride="carousel">
    <div class="carousel-indicators">
        <button type="button" data-bs-target="#mainPageSliderIndicators" data-bs-slide-to="0" class="active"
                aria-current="true" aria-label="Slide 1"></button>
        <button type="button" data-bs-target="#mainPageSliderIndicators" data-bs-slide-to="1"
                aria-label="Slide 2"></button>
        <button type="button" data-bs-target="#mainPageSliderIndicators" data-bs-slide-to="2"
                aria-label="Slide 3"></button>
        <button type="button" data-bs-target="#mainPageSliderIndicators" data-bs-slide-to="3"
                aria-label="Slide 4"></button>
    </div>
    <div class="carousel-inner">
        <div class="carousel-item banner active">
            <div class="d-flex flex-wrap flex-sm-nowrap justify-content-center align-items-center">
                <div class="flex-item "><img class="my-auto w-100"
                                             src="extensions/bootstrap5/storefront/images/Slide_600x300.jpeg"></div>
                <div class="flex-item col-9 col-sm-3 m-5"><h5>HTML5 Responsive Storefront to look great on</h5>  <h5>ALL
                        Screen Sizes</h5>
                    <p>Natively responsive template implemented with bootstrap library and HTML5. Will look good on most
                        mobile devices and tablets.</p>
                    <h3><a href="#" class=""> Try on your device!</a></h3></div>
            </div>
        </div>
        <div class="carousel-item banner">
            <div class="d-flex flex-wrap flex-sm-nowrap justify-content-center align-items-center">
                <div class="flex-item "><img class="my-auto w-100"
                                             src="extensions/bootstrap5/storefront/images/Slide_600x300.jpeg"></div>
                <div class="flex-item col-9 col-sm-3  m-5"><h5>Highly flexible layout on any page</h5>  <h5>SEO
                        Friendly</h5>
                    <p>Fast Loading</p>
                    <h3><a href="#" class=""> Try Now!</a></h3></div>
            </div>
        </div>
        <div class="carousel-item banner">
            <div class="d-flex flex-wrap flex-sm-nowrap justify-content-center align-items-center">
                <div class="flex-item "><img class="my-auto w-100"
                                             src="extensions/bootstrap5/storefront/images/Slide_600x300.jpeg"></div>
                <div class="flex-item col-9 col-sm-3  m-5"><h5>Feature rich with smart UI</h5>  <h5>Easy &amp; fun to
                        manage</h5>
                    <p>Feature reach shopping cart application right out of the box. Standard features allow to set up
                        complete eCommerce site with all the tools needed to sell products online.</p>
                    <h3><a href="#" class="">Install Now!</a></h3></div>
            </div>
        </div>
        <div class="carousel-item banner">
            <div class="d-flex flex-wrap flex-sm-nowrap justify-content-center align-items-center">
                <div class="flex-item "><img class="my-auto w-100"
                                             src="extensions/bootstrap5/storefront/images/Slide_600x300.jpeg"></div>
                <div class="flex-item col-9 col-sm-3  m-5"><h5>Stay in control</h5>  <h5>Easy updates</h5>
                    <p>Upgrade right from admin. Backward supportability in upgrades and automatic backups. Easy
                        extension download with one step installation.</p>
                    <h3><a href="#" class="">Get Yours!</a></h3></div>
            </div>
        </div>
    </div>
    <button class="carousel-control-prev" type="button" data-bs-target="#mainPageSliderIndicators" data-bs-slide="prev">
        <span class="carousel-control-prev-icon" aria-hidden="true"></span> <span
                class="visually-hidden">Previous</span></button>
    <button class="carousel-control-next" type="button" data-bs-target="#mainPageSliderIndicators" data-bs-slide="next">
        <span class="carousel-control-next-icon" aria-hidden="true"></span> <span class="visually-hidden">Next</span>
    </button>
</div>

4
This is what is in products.tpl file:

Code: [Select]
$hookVarArray = $this->getHookVar('product_description_array');
                if( $hookVarArray ){
                foreach($hookVarArray as $key=>$hkVar){ ?>
                <div class="accordion-item">
                    <h2 class="accordion-header" id="heading<?php echo $key?>>">
                        <button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapse<?php echo $key?>"
                                aria-expanded="true" aria-controls="collapse<?php echo $key?>">
                            <?php echo $hkVar['title']; ?>
                        </button>
                    </h2>
                    <div id="collapse<?php echo $key?>" class="accordion-collapse collapse" aria-labelledby="heading<?php echo $key?>" data-bs-parent="#productDetailsAccordion">
                        <div class="accordion-body">
                            <?php echo $hkVar['html']; ?>
                        </div>
                    </div>
                </div>

5
Hi core devs,

I'm found this hook "$this->getHookVar('product_description_array')" in the product.tpl file.

I have tried to add array like this:

Code: [Select]
$tabs['Test'] = [
       'title' => $view->fetch('pages/test/test_tab.tpl'),
       'html' => $view->fetch('pages/test/test_content.tpl')
];
$that->view->addHookVar('product_description_array',$tabs);

It's not working.

I tried to debug in the tpl file and found out that the variable is set as a string contains 'array', not a real array.

6
Development Help Needed / Re: Override or hook into AForm and AHtml
« on: November 13, 2024, 11:04:28 AM »
How do we allow the custom captcha html element to be available as selection for admin to choose from the field type list? so it is loaded in the contact us form.

7
Development Help Needed / Re: Override or hook into AForm and AHtml
« on: November 12, 2024, 10:44:06 AM »
i mean like custom captcha

8
Development Help Needed / Override or hook into AForm and AHtml
« on: November 12, 2024, 06:06:48 AM »
Hi, core developers,

i want to ask if it's possible to override AForm and AHtml and then use the overriden as the default one to be used by cart?

I would like to add a custom HTML field that core code can access as well, such as the default contact us form.

Thanks.

9
Hi core devs,

how do we restrict customer from being able to login to other store that was set by using multistore?

e.g. we have a VIP and Wholesale store. Wholesale customer should not be able to login to VIP store.

AbanteCart v1.3.4 and v1.4.0.

10
General Discussion / Re: Second level breadcrumb is removed in 1.4.0?
« on: September 12, 2024, 12:56:19 PM »
The most current patch of this is available at our patch files here: https://why2central.net/patch/abantecart-v1-4-0-storefront-category-breadcrumb-patch-file/

Handoyo from
The Support Team
We Hear You 2, Inc  (WHY2)

11
General Discussion / Re: Second level breadcrumb is removed in 1.4.0?
« on: September 11, 2024, 12:29:44 PM »
Hi abolabo,

i just found out that the breadcrumb is correct, but now the products that doesn't belong to the subcat is shown too.

i test the patch in a clean 1.4.0 site.

i attached both storefront category page and admin product page for the product that shouldn't show in the category page.


12
General Discussion / Re: Second level breadcrumb is removed in 1.4.0?
« on: September 10, 2024, 10:39:38 AM »
Thanks abolabo, the patch file works.

13
General Discussion / Second level breadcrumb is removed in 1.4.0?
« 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.


14
thanks, i see it now

15
Hi core devs,

i would like to ask where can we download abantecart_1.4.0_upgrade_only.tar.gz?




Pages: [1] 2 3 ... 6

Powered by SMFPacks Social Login Mod