Jump to content

mma87

Members
  • Posts

    227
  • Joined

  • Last visited

  • Days Won

    2

mma87 last won the day on December 29 2023

mma87 had the most liked content!

2 Followers

Profile Information

  • Location
    Italy
  • Activity
    Marketing / SEO Agency
    Web Development Agency
    Freelancer
    Developer
    Module Developer

Recent Profile Visitors

7,968,669 profile views

mma87's Achievements

Newbie

Newbie (1/14)

  • Reacting Well Rare
  • First Post Rare
  • Collaborator Rare
  • Dedicated Rare
  • Week One Done Rare

Recent Badges

31

Reputation

  1. this is the query ALTER TABLE `PREFIX_tab` ADD `route_name` VARCHAR(255) NULL DEFAULT NULL AFTER `class_name`; Change "PREFIX" with the right prefix
  2. potresti provare così: (fai sempre un backup prima) sostituisci questo blocco: {block name='product_name'} {if $page.page_name == 'index'} <h3 class="h3 product-title" itemprop="name"><a href="{$product.url}" itemprop="url" content="{$product.url}">{$product.name|truncate:30:'...'}</a></h3> {else} <h2 class="h3 product-title" itemprop="name"><a href="{$product.url}" itemprop="url" content="{$product.url}">{$product.name|truncate:30:'...'}</a></h2> {/if} {/block} con questo: {block name='product_name'} {if $page.page_name == 'index'} <h3 class="h3 product-title" itemprop="name"><a href="{$product.url}" itemprop="url" content="{$product.url}">{$product.name|truncate:30:'...'}</a></h3> <p class="quantita-prod-categorie"><b>{l s='Pz' d='Shop.Theme.Catalog'}:</b> {$product.quantity} <span style="text-align: right"><b>{l s='RIf' d='Shop.Theme.Catalog'}:</b> {$product.reference}</span></p> {else} <h2 class="h3 product-title" itemprop="name"><a href="{$product.url}" itemprop="url" content="{$product.url}">{$product.name|truncate:30:'...'}</a></h2> <p class="quantita-prod-categorie"><b>{l s='Pz' d='Shop.Theme.Catalog'}:</b> {$product.quantity} <span style="text-align: right"><b>{l s='RIf' d='Shop.Theme.Catalog'}:</b> {$product.reference}</span></p> <p class="quantita-prod-categorie"></p> {/if} {/block} però ti consiglio di fare attenzione, da quello che mi sembra di capire è meglio prima approfondire i concetti base di html e css, sennò rischi malfunzionamenti ecc ci sono tanti siti online dove puoi formarti in maniera gratuita, uno buono è questo https://www.w3schools.com/ ciao, Matteo
  3. una versione semplificata del codice potrebbe essere questa <p class="quantita-prod-categorie"><b>{l s='Quantità' d='Shop.Theme.Catalog'}:</b> {$product.quantity}</p> ovviamente sentiti libero di modificare a piacimento il nome della classe
  4. Ciao, il dominio è diverso, è normale? comunque c'è un'opzione per posizionare alla fine i prodotti esauriti. da moduli > gestione moduli > ricerca per aspetti scorri in fondo alla pagina e attiva l'opzione
  5. first of all: backup! then: disable the languages don't used open .htaccess and add this code before "# Dispatcher" (if you have only en and it lang) RewriteRule ^en/(.*)$ /$1 [R=301,L] RewriteRule ^it/(.*)$ /$1 [R=301,L] save and upload the edited .htaccess TIP: regenerate the sitemap! Matteo
  6. first of all: backup! then: disable the languages don't used open .htaccess and add this code before "# Dispatcher" (if you have only en and it lang) RewriteRule ^en/(.*)$ /$1 [R=301,L] RewriteRule ^it/(.*)$ /$1 [R=301,L] save and upload the edited .htaccess TIP: regenerate the sitemap! Matteo
  7. tout d'abord : backup! ensuite: désactiver les langues non utilisées ouvrez .htaccess et ajoutez ce code avant "# Dispatcher" (si vous n'avez qu'en et qu'il lang) RewriteRule ^en/(.*)$ /$1 [R=301,L] RewriteRule ^it/(.*)$ /$1 [R=301,L] enregistrer et télécharger le .htaccess modifié ASTUCE : régénérez le plan du site ! Matteo
  8. first of all: backup! then: disable the languages don't used open .htaccess and add this code before "# Dispatcher" (if you have only en and it lang) RewriteRule ^en/(.*)$ /$1 [R=301,L] RewriteRule ^it/(.*)$ /$1 [R=301,L] save and upload the edited .htaccess TIP: regenerate the sitemap! Matteo
  9. Hello, I fix this issue deleting from the database all hooks of the cart module in ps_hook_module table. you can see the module id searching ps_hook_module table the ps_shoppingcart BACKUP FIRST your database and if you are not confident with prestashop database don't delete anythings
  10. Hello, I fix this issue deleting from the database all hooks of the cart module in ps_hook_module table. you can see the module id searching ps_hook_module table the ps_shoppingcart BACKUP FIRST your database and if you are not confident with prestashop database don't delete anythings
  11. Hello, I fix this issue deleting from the database all hooks of the cart module in ps_hook_module table. you can see the module id searching ps_hook_module table the ps_shoppingcart BACKUP FIRST your database and if you are not confident with prestashop database don't delete anythings
  12. Hello, I fix this issue deleting from the database all hooks of the cart module in ps_hook_module table. you can see the module id searching ps_hook_module table the ps_shoppingcart BACKUP FIRST your database and if you are not confident with prestashop database don't delete anythings
  13. I had this problem and I fix it by following those steps. upgrade to prestashop 1.7.6.4 backup first!! If you are not confident with databases please don't try this guide. Those are the steps to follow: 0) backup first your database 1) check if ps_access is empty, in my case it was empty after upgrade 2) go to the table ps_authorization_role and export it as csv 3) open this file, if you use microsoft excel select "Data" > "Text to Column" 4) delete the content in column B 5) insert a column before the column A 6) add =1 in the A1 cell 7) copy this function until the end (you can click CTRL + C and then CTRL + SHIFT + arrow down using windows) and save the file as csv 😎 go to ps_authorization_role, click import and upload the file 9) insert in "Columns separated with" ; and press Go 10) check if all works fine now Note #1: if the table ps_access isn't empty you have to import only the missing roles Note #2: if you have other active profiles you have to repeat those steps also for the other profiles you can see also the video tutorial for more details see https://www.kuboweb.it/tutorials/prestashop-access-denied-in-back-office-after-upgrade/
  14. I had this problem and I fix it by following those steps. upgrade to prestashop 1.7.6.4 backup first!! If you are not confident with databases please don't try this guide. Those are the steps to follow: 0) backup first your database 1) check if ps_access is empty, in my case it was empty after upgrade 2) go to the table ps_authorization_role and export it as csv 3) open this file, if you use microsoft excel select "Data" > "Text to Column" 4) delete the content in column B 5) insert a column before the column A 6) add =1 in the A1 cell 7) copy this function until the end (you can click CTRL + C and then CTRL + SHIFT + arrow down using windows) and save the file as csv 😎 go to ps_authorization_role, click import and upload the file 9) insert in "Columns separated with" ; and press Go 10) check if all works fine now Note #1: if the table ps_access isn't empty you have to import only the missing roles Note #2: if you have other active profiles you have to repeat those steps also for the other profiles you can see also the video tutorial for more details see https://www.kuboweb.it/tutorials/prestashop-access-denied-in-back-office-after-upgrade/
×
×
  • Create New...