skreaver Posted January 8, 2014 Share Posted January 8, 2014 Hello, i have a problem with user info block.. Problem is see in the picture. Can someone help me ? Link to comment Share on other sites More sharing options...
muktadir Posted January 8, 2014 Share Posted January 8, 2014 Hi, You need a bit of work with CSS to fix that. Can you do that? -M 1 Link to comment Share on other sites More sharing options...
skreaver Posted January 8, 2014 Author Share Posted January 8, 2014 Hi, You need a bit of work with CSS to fix that. Can you do that? -M Hi, thank you for you answer,but i try it, but unsuccesful. Can you help me? Link to comment Share on other sites More sharing options...
Carolina Custom Designs Posted January 8, 2014 Share Posted January 8, 2014 muktadir is correct. If you can post a link to the site I'm sure someone can provide a solution for you. Marty Shue Link to comment Share on other sites More sharing options...
skreaver Posted January 8, 2014 Author Share Posted January 8, 2014 www.barados.sk/eshop www.barados.sk/eshop Link to comment Share on other sites More sharing options...
shailendra Posted January 9, 2014 Share Posted January 9, 2014 (edited) Hello, i have a problem with user info block.. Problem is see in the picture. Can someone help me ? It seems that during theme customization you have changed the tpl file of blockuserinfo module due to which two blocks have intercganged. Now the solution is to just interchange these two block(ul with id=header_nav and a p tag with id=header_user_info) in blockuserinfo.tpl file else use this default code <!-- Block user information module HEADER --> <div id="header_user" {if $PS_CATALOG_MODE}class="header_user_catalog"{/if}> <ul id="header_nav"> {if !$PS_CATALOG_MODE} <li id="shopping_cart"> <a href="{$link->getPageLink($order_process, true)|escape:'html'}" title="{l s='View my shopping cart' mod='blockuserinfo'}" rel="nofollow">{l s='Cart' mod='blockuserinfo'} <span class="ajax_cart_quantity{if $cart_qties == 0} hidden{/if}">{$cart_qties}</span> <span class="ajax_cart_product_txt{if $cart_qties != 1} hidden{/if}">{l s='Product' mod='blockuserinfo'}</span> <span class="ajax_cart_product_txt_s{if $cart_qties < 2} hidden{/if}">{l s='Products' mod='blockuserinfo'}</span> <span class="ajax_cart_total{if $cart_qties == 0} hidden{/if}"> {if $cart_qties > 0} {if $priceDisplay == 1} {assign var='blockuser_cart_flag' value='Cart::BOTH_WITHOUT_SHIPPING'|constant} {convertPrice price=$cart->getOrderTotal(false, $blockuser_cart_flag)} {else} {assign var='blockuser_cart_flag' value='Cart::BOTH_WITHOUT_SHIPPING'|constant} {convertPrice price=$cart->getOrderTotal(true, $blockuser_cart_flag)} {/if} {/if} </span> <span class="ajax_cart_no_product{if $cart_qties > 0} hidden{/if}">{l s='(empty)' mod='blockuserinfo'}</span> </a> </li> {/if} <li id="your_account"><a href="{$link->getPageLink('my-account', true)|escape:'html'}" title="{l s='View my customer account' mod='blockuserinfo'}" rel="nofollow">{l s='Your Account' mod='blockuserinfo'}</a></li> </ul> <p id="header_user_info"> {l s='Welcome' mod='blockuserinfo'} {if $logged} <a href="{$link->getPageLink('my-account', true)|escape:'html'}" title="{l s='View my customer account' mod='blockuserinfo'}" class="account" rel="nofollow"><span>{$cookie->customer_firstname} {$cookie->customer_lastname}</span></a> <a href="{$link->getPageLink('index', true, NULL, "mylogout")|escape:'html'}" title="{l s='Log me out' mod='blockuserinfo'}" class="logout" rel="nofollow">{l s='Log out' mod='blockuserinfo'}</a> {else} <a href="{$link->getPageLink('my-account', true)|escape:'html'}" title="{l s='Login to your customer account' mod='blockuserinfo'}" class="login" rel="nofollow">{l s='Login' mod='blockuserinfo'}</a> {/if} </p> </div> <!-- /Block user information module HEADER --> Edited January 9, 2014 by shailendra (see edit history) Link to comment Share on other sites More sharing options...
skreaver Posted January 9, 2014 Author Share Posted January 9, 2014 It seems that during theme customization you have changed the tpl file of blockuserinfo module due to which two blocks have intercganged. Now the solution is to just interchange these two block(ul with id=header_nav and a p tag with id=header_user_info) in blockuserinfo.tpl file else use this default code Yeah,thank you very much....it works: ) thanks Link to comment Share on other sites More sharing options...
shailendra Posted January 9, 2014 Share Posted January 9, 2014 Yeah,thank you very much....it works: ) thanks Please mark this post as solved. Link to comment Share on other sites More sharing options...
Recommended Posts