Jump to content

how to put the Cart in the Nav bar ?


Recommended Posts

Hello ,

 

I would like to put the Cart in the Nav bar  and at the extreme right.

 

When i attach the Cart in the module 'Display nav' it works but…

the Cart is placed in a ligne below

 

No way to modify with Live edit…

 

Someone to help me ???

 

Thanks a lot

Pacual

Link to comment
Share on other sites

Yes, and i also tried to move the cart bloc with live edit but it stays at the same place.

 

In fact, i was wondering if i had to change some lignes in css nav bar or in css cart ??

 

but as i am definitively not a developer, i am looking for some help :-)

 

if you have any idea , it iss nice for me

 

Pascual

Link to comment
Share on other sites

So funny to read you ,

 

but i just don't know what do you mean by   " from main div of the cart div…"

 

Are you talking about a file ????   a module ??    in prestashop admin  or a file that i have to open with texxt edit ??

I am goning to look at cart's module , as a start …

 

before begginner, this is what i am  ;-)

 

thanks a lot

pascual

Link to comment
Share on other sites

And the legend must go on !!!!

 

i found it…   i did it …

i just have to find how to put everybody on the same height  (sorry for my poor english)

 

Thanks to you …   moderator  :-)

 

(but it is like you make me speak japanese for one or two minutes   ah ah ah !!! )

 

Pascual

Link to comment
Share on other sites

  • 2 months later...

Hi,

Great post, and using above method I have put my cart block in the nav bar(not displaytop) on the right hand side.

All looks good except when viewed on a phone or tablet. The cart block extends to full width and messes up the nav bar.

How cant I stop this?

 

Second question : what part of the CSS positions the cart drop down? Now I have moved it to the nav bar, there is a big gap when you view your cart.

 

Thanks

Link to comment
Share on other sites

Hello ,

 

Sorry but i really don't know nothing about phone version…   i am not that good :-)

 

For the  cart dop down position, if you have a gap it can be

- in blockcart.css file

- in the second part of the file ( part below -  on line  'top''  that you change so it fits you cart position in navbar).

 

/*******************************************************************
    Cart Block(Header) Styles 
********************************************************************/
#header .cart_block { /*BLOC INFERIEUR DU PANIER*/
  position: absolute;
  top: 37px;
  right: 0;
  z-index: 100;
  display: none;
  height: auto;
  background: #484848;
  color: white;
  width: 260px; }

… 

 

 

I hope it helps you

Sincerely

Link to comment
Share on other sites

  • 4 months later...

btw. i see your cart in top navbar :)

NpRDESw.png

 

 

solution is easy. from main div of the cart div remove col-sm-4 clearfix

then move module before block user info module on modules list: displayTop

 

 

effect:

zfXPbPn.png

Hi, Thanks for your reply but which files We will delete col-sm-4 clearfix

Please can you write name of css files.

thanks

Link to comment
Share on other sites

Hello Erdem  (I don't know if Erdem is a first name) :-)

 

CSS file is for graphic modifications (wider , elments closer, colours, …)
Defaut-bootstrap / CSS / Modules / Blockcart / blockcart.css
 
 
TPL file is to modify the place of the cart (in the nav bar and at the right position)
defaut-Bootstrap / modules / blockcart / blockcart.TPL
replace 'col-sm-4 clearfix'  with  'pull-right'  like shown under, in my file
 

Then in 'Modules positions' , remove the module from 'Display TOP'  and place it at the top in 'Display Header'

 

I hope it will help you.  In case feel free to contact again

sincerely

pascual

 
***********************************************************************
 
{*
* 2007-2014 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <[email protected]>
*  @copyright  2007-2014 PrestaShop SA
*  @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*}
<!-- MODULE Block cart -->
{if isset($blockcart_top) && $blockcart_top}
<div class=”pull-right{if $PS_CATALOG_MODE} header_user_catalog{/if}”>      /*  'col-sm-4 clearfix' replaced with 'pull-right'  */
{/if}
     <div class="shopping_cart">
          <a href="{$link->getPageLink($order_process, true)|escape:'html':'UTF-8'}" title="{l s='View my shopping cart' mod='blockcart'}" rel="nofollow">
               <b>{l s='Cart' mod='blockcart'}</b>
               <span class="ajax_cart_quantity{if $cart_qties == 0} unvisible{/if}">{$cart_qties}</span>
               <span class="ajax_cart_product_txt{if $cart_qties != 1} unvisible{/if}">{l s='Product' mod='blockcart'}</span>
               <span class="ajax_cart_product_txt_s{if $cart_qties < 2} unvisible{/if}">{l s='Products' mod='blockcart'}</span>
               <span class="ajax_cart_total{if $cart_qties == 0} unvisible{/if}">
                    {if $cart_qties > 0}
                         {if $priceDisplay == 1}
                              {assign var='blockcart_cart_flag' value='Cart::BOTH_WITHOUT_SHIPPING'|constant}
                              {convertPrice price=$cart->getOrderTotal(false, $blockcart_cart_flag)}
                         {else}
                              {assign var='blockcart_cart_flag' value='Cart::BOTH_WITHOUT_SHIPPING'|constant}
                              {convertPrice price=$cart->getOrderTotal(true, $blockcart_cart_flag)}
                         {/if}
                    {/if}
               </span>
               <span class="ajax_cart_no_product{if $cart_qties > 0} unvisible{/if}">{l s='(empty)' mod='blockcart'}</span>
               {if $ajax_allowed && isset($blockcart_top) && !$blockcart_top}
                    <span class="block_cart_expand{if !isset($colapseExpandStatus) || (isset($colapseExpandStatus) && $colapseExpandStatus eq 'expanded')} unvisible{/if}"> </span>
                    <span class="block_cart_collapse{if isset($colapseExpandStatus) && $colapseExpandStatus eq 'collapsed'} unvisible{/if}"> </span>
               {/if}
          </a>
          {if !$PS_CATALOG_MODE}
               <div class="cart_block block exclusive">
                    <div class="block_content">
                         <!-- block list of products -->
                         <div class="cart_block_list{if isset($blockcart_top) && !$blockcart_top}{if isset($colapseExpandStatus) && $colapseExpandStatus eq 'expanded' || !$ajax_allowed || !isset($colapseExpandStatus)} expanded{else} collapsed unvisible{/if}{/if}">
                              {if $products}
                                   <dl class="products">
                                        {foreach from=$products item='product' name='myLoop'}
                                             {assign var='productId' value=$product.id_product}
                                             {assign var='productAttributeId' value=$product.id_product_attribute}
                                             <dt data-id="cart_block_product_{$product.id_product}_{if $product.id_product_attribute}{$product.id_product_attribute}{else}0{/if}_{if $product.id_address_delivery}{$product.id_address_delivery}{else}0{/if}" class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if}">
                                                  <a class="cart-images" href="{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category)|escape:'html':'UTF-8'}" title="{$product.name|escape:'html':'UTF-8'}"><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'cart_default')}" alt="{$product.name|escape:'html':'UTF-8'}" /></a>
                                                  <div class="cart-info">
                                                       <div class="product-name">
                                                            <span class="quantity-formated"><span class="quantity">{$product.cart_quantity}</span> x </span><a class="cart_block_product_name" href="{$link->getProductLink($product, $product.link_rewrite, $product.category, null, null, $product.id_shop, $product.id_product_attribute)|escape:'html':'UTF-8'}" title="{$product.name|escape:'html':'UTF-8'}">{$product.name|truncate:13:'...'|escape:'html':'UTF-8'}</a>
                                                       </div>
                                                       {if isset($product.attributes_small)}
                                                            <div class="product-atributes">
                                                                 <a href="{$link->getProductLink($product, $product.link_rewrite, $product.category, null, null, $product.id_shop, $product.id_product_attribute)|escape:'html':'UTF-8'}" title="{l s='Product detail' mod='blockcart'}">{$product.attributes_small}</a>
                                                            </div>
                                                       {/if}
                                                       <span class="price">
                                                            {if !isset($product.is_gift) || !$product.is_gift}
                                                                 {if $priceDisplay == $smarty.const.PS_TAX_EXC}{displayWtPrice p="`$product.total`"}{else}{displayWtPrice p="`$product.total_wt`"}{/if}
                                                            {else}
                                                                 {l s='Free!' mod='blockcart'}
                                                            {/if}
                                                       </span>
                                                  </div>
                                                  <span class="remove_link">
                                                       {if !isset($customizedDatas.$productId.$productAttributeId) && (!isset($product.is_gift) || !$product.is_gift)}
                                                            <a class="ajax_cart_block_remove_link" href="{$link->getPageLink('cart', true, NULL, 'delete=1&id_product={$product.id_product}&ipa={$product.id_product_attribute}&id_address_delivery={$product.id_address_delivery}&token={$static_token}', true)|escape:'html':'UTF-8'}" rel="nofollow" title="{l s='remove this product from my cart' mod='blockcart'}"> </a>
                                                       {/if}
                                                  </span>
                                             </dt>
                                             {if isset($product.attributes_small)}
                                                  <dd data-id="cart_block_combination_of_{$product.id_product}{if $product.id_product_attribute}_{$product.id_product_attribute}{/if}_{$product.id_address_delivery|intval}" class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if}">
                                             {/if}
                                             <!-- Customizable datas -->
                                             {if isset($customizedDatas.$productId.$productAttributeId[$product.id_address_delivery])}
                                                  {if !isset($product.attributes_small)}
                                                       <dd data-id="cart_block_combination_of_{$product.id_product}_{if $product.id_product_attribute}{$product.id_product_attribute}{else}0{/if}_{if $product.id_address_delivery}{$product.id_address_delivery}{else}0{/if}" class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if}">
                                                  {/if}
                                                  <ul class="cart_block_customizations" data-id="customization_{$productId}_{$productAttributeId}">
                                                       {foreach from=$customizedDatas.$productId.$productAttributeId[$product.id_address_delivery] key='id_customization' item='customization' name='customizations'}
                                                            <li name="customization">
                                                                 <div data-id="deleteCustomizableProduct_{$id_customization|intval}_{$product.id_product|intval}_{$product.id_product_attribute|intval}_{$product.id_address_delivery|intval}" class="deleteCustomizableProduct">
                                                                      <a class="ajax_cart_block_remove_link" href="{$link->getPageLink("cart", true, NULL, "delete=1&id_product={$product.id_product|intval}&ipa={$product.id_product_attribute|intval}&id_customization={$id_customization}&token={$static_token}", true)|escape:"html":"UTF-8"}" rel="nofollow"> </a>
                                                                 </div>
                                                                 {if isset($customization.datas.$CUSTOMIZE_TEXTFIELD.0)}
                                                                      {$customization.datas.$CUSTOMIZE_TEXTFIELD.0.value|replace:"<br />":" "|truncate:28:'...'|escape:'html':'UTF-8'}
                                                                 {else}
                                                                      {l s='Customization #%d:' sprintf=$id_customization|intval mod='blockcart'}
                                                                 {/if}
                                                            </li>
                                                       {/foreach}
                                                  </ul>
                                                  {if !isset($product.attributes_small)}</dd>{/if}
                                             {/if}
                                             {if isset($product.attributes_small)}</dd>{/if}
                                        {/foreach}
                                   </dl>
                              {/if}
                              <p class="cart_block_no_products{if $products} unvisible{/if}">
                                   {l s='No products' mod='blockcart'}
                              </p>
                              {if $discounts|@count > 0}
                                   <table class="vouchers"{if $discounts|@count == 0} style="display:none;"{/if}>
                                        {foreach from=$discounts item=discount}
                                             {if $discount.value_real > 0}
                                                  <tr class="bloc_cart_voucher" data-id="bloc_cart_voucher_{$discount.id_discount}">
                                                       <td class="quantity">1x</td>
                                                       <td class="name" title="{$discount.description}">
                                                            {$discount.name|truncate:18:'...'|escape:'html':'UTF-8'}
                                                       </td>
                                                       <td class="price">
                                                            -{if $priceDisplay == 1}{convertPrice price=$discount.value_tax_exc}{else}{convertPrice price=$discount.value_real}{/if}
                                                       </td>
                                                       <td class="delete">
                                                            {if strlen($discount.code)}
                                                                 <a class="delete_voucher" href="{$link->getPageLink("$order_process", true)}?deleteDiscount={$discount.id_discount}" title="{l s='Delete' mod='blockcart'}" rel="nofollow">
                                                                      <i class="icon-remove-sign"></i>
                                                                 </a>
                                                            {/if}
                                                       </td>
                                                  </tr>
                                             {/if}
                                        {/foreach}
                                   </table>
                              {/if}
                              <div class="cart-prices">
                                   <div class="cart-prices-line first-line">
                                        <span class="price cart_block_shipping_cost ajax_cart_shipping_cost">
                                             {if $shipping_cost_float == 0}
                                                  {l s='Free shipping!' mod='blockcart'}
                                             {else}
                                                  {$shipping_cost}
                                             {/if}
                                        </span>
                                        <span>
                                             {l s='Shipping' mod='blockcart'}
                                        </span>
                                   </div>
                                   {if $show_wrapping}
                                        <div class="cart-prices-line">
                                             {assign var='cart_flag' value='Cart::ONLY_WRAPPING'|constant}
                                             <span class="price cart_block_wrapping_cost">
                                                  {if $priceDisplay == 1}
                                                       {convertPrice price=$cart->getOrderTotal(false, $cart_flag)}{else}{convertPrice price=$cart->getOrderTotal(true, $cart_flag)}
                                                  {/if}
                                             </span>
                                             <span>
                                                  {l s='Wrapping' mod='blockcart'}
                                             </span>
                                      </div>
                                   {/if}
                                   {if $show_tax && isset($tax_cost)}
                                        <div class="cart-prices-line">
                                             <span class="price cart_block_tax_cost ajax_cart_tax_cost">{$tax_cost}</span>
                                             <span>{l s='Tax' mod='blockcart'}</span>
                                        </div>
                                   {/if}
                                   <div class="cart-prices-line last-line">
                                        <span class="price cart_block_total ajax_block_cart_total">{$total}</span>
                                        <span>{l s='Total' mod='blockcart'}</span>
                                   </div>
                                   {if $use_taxes && $display_tax_label == 1 && $show_tax}
                                        <p>
                                        {if $priceDisplay == 0}
                                             {l s='Prices are tax included' mod='blockcart'}
                                        {elseif $priceDisplay == 1}
                                             {l s='Prices are tax excluded' mod='blockcart'}
                                        {/if}
                                        </p>
                                   {/if}
                              </div>
                              <p class="cart-buttons">
                                   <a id="button_order_cart" class="btn btn-default button button-small" href="{$link->getPageLink("$order_process", true)|escape:"html":"UTF-8"}" title="{l s='Check out' mod='blockcart'}" rel="nofollow">
                                        <span>
                                             {l s='Check out' mod='blockcart'}<i class="icon-chevron-right right"></i>
                                        </span>
                                   </a>
                              </p>
                         </div>
                    </div>
               </div><!-- .cart_block -->
          {/if}
     </div>
{if isset($blockcart_top) && $blockcart_top}
</div>
{/if}
{counter name=active_overlay assign=active_overlay}
{if !$PS_CATALOG_MODE && $active_overlay == 1}
     <div id="layer_cart">
          <div class="clearfix">
               <div class="layer_cart_product col-xs-12 col-md-6">
                    <span class="cross" title="{l s='Close window' mod='blockcart'}"></span>
                    <h2>
                         <i class="icon-ok"></i>{l s='Product successfully added to your shopping cart' mod='blockcart'}
                    </h2>
                    <div class="product-image-container layer_cart_img">
                    </div>
                    <div class="layer_cart_product_info">
                         <span id="layer_cart_product_title" class="product-name"></span>
                         <span id="layer_cart_product_attributes"></span>
                         <div>
                              <strong class="dark">{l s='Quantity' mod='blockcart'}</strong>
                              <span id="layer_cart_product_quantity"></span>
                         </div>
                         <div>
                              <strong class="dark">{l s='Total' mod='blockcart'}</strong>
                              <span id="layer_cart_product_price"></span>
                         </div>
                    </div>
               </div>
               <div class="layer_cart_cart col-xs-12 col-md-6">
                    <h2>
                         <!-- Plural Case [both cases are needed because page may be updated in Javascript] -->
                         <span class="ajax_cart_product_txt_s {if $cart_qties < 2} unvisible{/if}">
                              {l s='There are [1]%d[/1] items in your cart.' mod='blockcart' sprintf=[$cart_qties] tags=['<span class=ajax_cart_quantity"&gt]}
                         </span>
                         <!-- Singular Case [both cases are needed because page may be updated in Javascript] -->
                         <span class="ajax_cart_product_txt {if $cart_qties > 1} unvisible{/if}">
                              {l s='There is 1 item in your cart.' mod='blockcart'}
                         </span>
                    </h2>
    
                    <div class="layer_cart_row">
                         <strong class="dark">
                              {l s='Total products' mod='blockcart'}
                              {if $priceDisplay == 1}
                                   {l s='(tax excl.)' mod='blockcart'}
                              {else}
                                   {l s='(tax incl.)' mod='blockcart'}
                              {/if}
                         </strong>
                         <span class="ajax_block_products_total">
                              {if $cart_qties > 0}
                                   {convertPrice price=$cart->getOrderTotal(false, Cart::ONLY_PRODUCTS)}
                              {/if}
                         </span>
                    </div>
    
                    {if $show_wrapping}
                         <div class="layer_cart_row">
                              <strong class="dark">
                                   {l s='Wrapping' mod='blockcart'}
                                   {if $priceDisplay == 1}
                                        {l s='(tax excl.)' mod='blockcart'}
                                   {else}
                                        {l s='(tax incl.)' mod='blockcart'}
                                   {/if}
                              </strong>
                              <span class="price cart_block_wrapping_cost">
                                   {if $priceDisplay == 1}
                                        {convertPrice price=$cart->getOrderTotal(false, Cart::ONLY_WRAPPING)}
                                   {else}
                                        {convertPrice price=$cart->getOrderTotal(true, Cart::ONLY_WRAPPING)}
                                   {/if}
                              </span>
                         </div>
                    {/if}
                    <div class="layer_cart_row">
                         <strong class="dark">
                              {l s='Total shipping' mod='blockcart'} {l s='(tax excl.)' mod='blockcart'}
                         </strong>
                         <span class="ajax_cart_shipping_cost">
                              {if $shipping_cost_float == 0}
                                   {l s='Free shipping!' mod='blockcart'}
                              {else}
                                   {$shipping_cost}
                              {/if}
                         </span>
                    </div>
                    {if $show_tax && isset($tax_cost)}
                         <div class="layer_cart_row">
                              <strong class="dark">{l s='Tax' mod='blockcart'}</strong>
                              <span class="price cart_block_tax_cost ajax_cart_tax_cost">{$tax_cost}</span>
                         </div>
                    {/if}
                    <div class="layer_cart_row">    
                         <strong class="dark">
                              {l s='Total' mod='blockcart'}
                              {if $priceDisplay == 1}
                                   {l s='(tax excl.)' mod='blockcart'}
                              {else}
                                   {l s='(tax incl.)' mod='blockcart'}
                              {/if}
                         </strong>
                         <span class="ajax_block_cart_total">
                              {if $cart_qties > 0}
                                   {if $priceDisplay == 1}
                                        {convertPrice price=$cart->getOrderTotal(false)}
                                   {else}
                                        {convertPrice price=$cart->getOrderTotal(true)}
                                   {/if}
                              {/if}
                         </span>
                    </div>
                    <div class="button-container">    
                         <span class="continue btn btn-default button exclusive-medium" title="{l s='Continue shopping' mod='blockcart'}">
                              <span>
                                   <i class="icon-chevron-left left"></i>{l s='Continue shopping' mod='blockcart'}
                              </span>
                         </span>
                         <a class="btn btn-default button button-medium"     href="{$link->getPageLink("$order_process", true)|escape:"html":"UTF-8"}" title="{l s='Proceed to checkout' mod='blockcart'}" rel="nofollow">
                              <span>
                                   {l s='Proceed to checkout' mod='blockcart'}<i class="icon-chevron-right right"></i>
                              </span>
                         </a>    
                    </div>
               </div>
          </div>
          <div class="crossseling"></div>
     </div> <!-- #layer_cart -->
     <div class="layer_cart_overlay"></div>
{/if}
{strip}
{addJsDef CUSTOMIZE_TEXTFIELD=$CUSTOMIZE_TEXTFIELD}
{addJsDef img_dir=$img_dir|addslashes}
{addJsDef ajax_allowed=$ajax_allowed|boolval}
 
{addJsDefL name=customizationIdMessage}{l s='Customization #' mod='blockcart' js=1}{/addJsDefL}
{addJsDefL name=removingLinkText}{l s='remove this product from my cart' mod='blockcart' js=1}{/addJsDefL}
{addJsDefL name=freeShippingTranslation}{l s='Free shipping!' mod='blockcart' js=1}{/addJsDefL}
{addJsDefL name=freeProductTranslation}{l s='Free!' mod='blockcart' js=1}{/addJsDefL}
{addJsDefL name=delete_txt}{l s='Delete' mod='blockcart' js=1}{/addJsDefL}
{/strip}
<!-- /MODULE Block cart --> 
 
*******************************************************************
*******************************************************************
 
 
 

 

Link to comment
Share on other sites

  • 2 weeks later...

thanks for your reply.it is ok for cart block.Sameway I want to do it search block but I can not it.

Is it possible to place it in the same way for search block(picture1).

 

I would like to extend logo throughout the page(picture1).

How can I do it? 

 

When I change the resolution cart block and search block changing places(picture2).

post-736186-0-37419600-1414598787_thumb.png

post-736186-0-47964300-1414598788_thumb.png

Edited by erdem_ustun (see edit history)
Link to comment
Share on other sites

  • 5 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...