Jump to content

Sandeep Tiwari

Members
  • Posts

    119
  • Joined

  • Last visited

2 Followers

About Sandeep Tiwari

  • Birthday 08/12/1988

Contact Methods

Profile Information

  • Location
    India
  • Interests
    Programming
  • First Name
    Sandeep
  • Last Name
    Tiwari
  • Activity
    Developer

Recent Profile Visitors

1,392 profile views

Sandeep Tiwari's Achievements

Rookie

Rookie (2/14)

  • Dedicated Rare
  • First Post Rare
  • Collaborator Rare
  • Week One Done Rare
  • One Month Later Rare

Recent Badges

2

Reputation

  1. Hi Dan Are you sure that have you assigned a parent category , by default it is associated with home category and that's why URL is coming without category. Please check the default route settings from the new 1.5 version and copy the same because it is also possible that {category:/}{id}-{rewrite}{-:ean13}.html also exist for product or some other URL in the settings.
  2. What is your PHP version ?
  3. Please try to clear cache under var/cache folder and downgrade your PHP version to 7.4. Let me know if the issue still persist.
  4. Please make sure "fileinfo" extension is installed on your server in order to use mime_content_type. https://www.php.net/manual/en/book.fileinfo.php
  5. Can you enable debug mode and then post an error here from the payment page ?
  6. Please replace your code with the below in your file at following location. Path: themes/classic/modules/ps_mainmenu/ps_mainmenu.tpl {assign var=_counter value=0} {function name="menu" nodes=[] depth=0 parent=null} {if $nodes|count} <ul class="top-menu"{if $depth == 0} id="top-menu"{/if} data-depth="{$depth}"> {foreach from=$nodes item=node} <li class="{$node.type}{if $node.current} current {/if}" id="{$node.page_identifier}"> {assign var=_counter value=$_counter+1} <a class="{if $depth >= 0}dropdown-item{/if}{if $depth === 1} dropdown-submenu{/if}" href="{$node.url}" data-depth="{$depth}" {if $node.open_in_new_window} target="_blank" {/if} > {if $node.children|count} {* Cannot use page identifier as we can have the same page several times *} {assign var=_expand_id value=10|mt_rand:100000} <span class="float-xs-right hidden-md-up"> <span data-target="#top_sub_menu_{$_expand_id}" data-toggle="collapse" class="navbar-toggler collapse-icons"> <i class="material-icons add">&#xE313;</i> <i class="material-icons remove">&#xE316;</i> </span> </span> {/if} {if $node.image_urls|count} {foreach from=$node.image_urls item=image_url} <img src="{$image_url}"> {/foreach} {/if} {$node.label} </a> {if $node.children|count} <div {if $depth === 0}class="popover sub-menu js-sub-menu collapse"{else}class="collapse"{/if} id="top_sub_menu_{$_expand_id}"> {menu nodes=$node.children depth=$node.depth parent=$node} </div> {/if} </li> {/foreach} </ul> {/if} {/function} <div class="menu js-top-menu position-static hidden-sm-down" id="_desktop_top_menu"> {menu nodes=$menu.children} <div class="clearfix"></div> </div>
  7. Do you want to show thumbnails in the menu or category pages ?
  8. Hi @Soha 8084 If the thumbnails are not visible on category pages on your store , can you make sure if these settings are in place ?
  9. To prevent employee to access ALL SHOP , you need to do some custom work in the file to disable the ALL SHOP for employee role. Inside admin-dev/themes/new-theme/template/components/layout/shop_list.tpl , you need to add a condition at line no 39 {if !isset($current_shop_name) || $current_shop_name == ''} {if $employee->id_profile==1} {l s='All stores' d='Admin.Global'} {/if} {else} Not tested but this is something you need to play with to hide the ALL SHOP for a particular profile in Prestashop.
  10. For the first point, you need to add a css rule in your css file so that your text color will change when you hover over it. (Reference : https://www.w3schools.com/cssref/sel_hover.php ) and for the second point , I think you need an option here in the backend when you are adding a product, option to say your product is obsolète and then display a message on the product page based on the condition.
  11. Please post your website link, it looks like a custom feature so you need to customize the same to have total with tax.
×
×
  • Create New...