Ir para conteúdo
View in the app

A better way to browse. Learn more.

GGames Fórum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Existe uma forma de você exibir uma descrição em seus FRETES FIXOS (Flate Rate). Por padrão o Woocommerce não permite inserir nenhuma descrição no frete fixo, então você coloca o prazo junto do título e fica feito comparado com o frete dos Correios. Com esse simples código é possível adicionar sua descrição, basta coloca-lo no functions.php do seu tema.

add_action( 'woocommerce_after_shipping_rate', 'action_after_shipping_rate', 10, 2 );
function action_after_shipping_rate ( $method, $index ) {

    if( 'flat_rate:10' === $method->id ) {
        echo __("<p><small>Entrega em 3 dias úteis</small></p>");
    }
    if( 'flat_rate:2' === $method->id ) {
        echo __("<p>Arriving on your chosen date between 9am - 7pm Perfect for residential addresses</p>");
    }
}

O código acima foi editado do ORIGINAL para exibir as informações dentro do CHECKOUT e também do CARRINHO. O número 10 representa o ID da regra. Para descobrir o ID é só acessar o link da regra no navegador, no final do link vai exibir. wp-admin/admin.php?page=wc-settings&tab=shipping&instance_id=10

image.pngimage.png

Créditos ao código: LoicTheAztec 

Feedback do Usuário

Comentários Recomendados

Não há comentários para mostrar.

Crie uma conta ou entre para comentar

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.