Jump to content

webprog

Members
  • Posts

    312
  • Joined

  • Last visited

Profile Information

  • Location
    Kiev
  • Interests
    Prestashop development & support - https://webproggi.com/en/prestashop-development
  • Activity
    Freelancer

Recent Profile Visitors

7,505,111 profile views

webprog's Achievements

  1. Hello, at first you can try to clear cache. Then, you can see, what you have in this file, where the code is: themes\classic\templates\_partials\helpers.tpl In classic theme it looks like: {function renderLogo} <a href="{$urls.pages.index}"> <img class="logo img-fluid" src="{$shop.logo_details.src}" alt="{$shop.name}" width="{$shop.logo_details.width}" height="{$shop.logo_details.height}"> </a> {/function} Also, you can see this file: \themes\classic\templates\_partials\header.tpl You need to take note to such code here: <div class="col-md-2 hidden-sm-down" id="_desktop_logo"> {if $shop.logo_details} {if $page.page_name == 'index'} <h1> {renderLogo} </h1> {else} {renderLogo} {/if} {/if} </div> if Everything is ok, above, then the problem is in the database data. See what you have in Traffic & SEO tab in BackOffice.
  2. You can find as paid as free solutions using this url: https://www.google.com/search?client=firefox-b-e&q=price+range+in+prestashop
  3. Try this code in your theme.css: #header .header-nav #_desktop_contact_link { font-size:12px; }
  4. Hello, it depends on your theme. In classic theme this module: ps_contactinfo and its template file nav.tpl
  5. It seems that this slider is flickity - https://flickity.metafizzy.co/#flickity-in-use As you can see - Commercial license is not free.
  6. As I understand, that is not slider with javascript. That is usual .gif files - like short videos. You can create such files and insert them into description content of the product.
  7. Hello, for 1.7.8.5 you will need to edit themes\classic\templates\catalog\_partials\category-header.tpl file for classic theme, if you want to see description as it is - in the top. But better to use https://addons.prestashop.com/en/page-customization/16778-additional-description-category-new.html module. You will get partial view and now it supports powerfull FAQ system for category pages. And that is good for SEO.
  8. You can use your module, but insert js into code of the module before that.
  9. You can use footer file. For classic theme path is themes\classic\templates\_partials\footer.tpl But it is not clean way. Better to use hooks in modules.
  10. Hello you need to write some code in the module, for example for left column: public function hookDisplayLeftColumn() { some code of the function here }
  11. Hello, your slider in module tm_imageslider generates images without width and height. So, you need to make changes in this module or find another module.
  12. Hello, you can monitor large tables and partially clean up some tables in your database. Limited for some period of time for example.
  13. Hi, they can be in modules or theme settings. That depends on your theme and its configuration. See urls of the images to find the source also.
  14. If i had time to wait i would wait prestashop 1.8 and some of minor versions of it. I think it will take half a year. We have RC1 in testing now. There will be differencies in PHP 8.0 support and some functionalities also in prestashop 8.x.
×
×
  • Create New...