Base solution for your next web application

Activities of "TimMackey"

ANZ Team:

It's been almost 3 weeks since I sent my project to you. Wondering what the ETA is for a solution?

This issue is related to #10212. Resolving this issue will close 2 issues.

ANZ Team:

It's been almost 3 weeks since I sent my project to you, as requested. Wondering what the ETA is for a solution?

The aforementioned code to add a shopping cart icon to TopBarComponent and DefaultLayoutComponent has been abandoned in favor of adding an additional toolbar to my custom form, as follows:

    <div id="ttm_dashboard_toolbar" class="kt-content  kt-grid__item kt-grid__item--fluid kt-grid kt-grid--hor">
        <div class="kt-subheader kt-grid__item">
            <div class="kt-container">
                <div class="kt-subheader__main">
                </div>
                <div class="kt-subheader__toolbar">
                    <div id="kt_shopping_cart" class="kt-header__topbar-item dropdown">
                        <div class="kt-header__topbar-wrapper ttm-shopping-cart"
                                            pTooltip={{shopping_cart_tooltip}}
                                            tooltipPosition="left">
                            <a routerLink="/app/main/ttm-page_7" [queryParams]="{menuId: 7, frameId: 'fiFrameId_ShoppingCart'}">
                                <span class="kt-header__topbar-icon kt-header__topbar-icon--brand" (click)="onShoppingCartClick()">
                                    <div *ngIf="shoppingCartItemCount > 0; else elseCount">
                                        <i class="fas fa-shopping-cart fa-2x"></i>
                                        <span class="kt-badge kt-badge--primary ttm-shopping-cart-badge">
                                            {{shoppingCartItemCount}}
                                        </span>
                                    </div>
                                </span>
                                <ng-template #elseCount>
                                    <i class="far fa-shopping-cart fa-2x"></i>
                                </ng-template>
                            </a>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>

While the above solution does consume vertical real estate, it does work, and solves the problem of the shopping cart icon showing up inappropriately in host and tenant admin pages.

Wondering if any progress has been made in determining a solution?

Wondering if any progress has been made in determining a solution?

Wondering if any progress has been made in determining a solution?

Wondering if any progress has been made in determining a solution?

Yes. Azure

This is my directory structure. I'm going to assume it is correct since everything seems to work.

This was caused by an invalid domain forwarding configruation error. Specifically, when Godaddy is the domain name registrar, and Azure is the host provider, you must use an A record with the Azure host IP address, and NOT the "Forwarding" setup in Godaddy.

Showing 41 to 50 of 285 entries