Jump to content

Recommended Posts

Hola a todos,

hace poco pregunté cómo incluir Bootstrap en mi Prestashop. El usuario @gusman126 me comentó que Prestashop ya incluye Bootstrap. Entonces: ¿por qué no están funcionando en mi página las clases row y col? ¿Es porque he copiado mi código directamente en el apartado Código fuente de la página que estoy editando? ¿Necesitaría instalar un módulo para incluir html? Mi versión de Prestashop es 1.7.5.2, por si eso sirve de algo. Dejo el código de lo que había intentado hacer para enlazar en el archivo head.tpl hasta ahora para enlazar Bootstrap:

1. Habiendo subido el bootstrap.css y bootstrap.min.css a la carpeta que se muestra en la url (lo de include file venía ya por defecto). Esta opción también la probé con un CDN y no hubo manera:

{block name='stylesheets'} 
	{include file="_partials/stylesheets.tpl" stylesheets=$stylesheets} 
	<link rel="stylesheet" href="http://mi-dominio.com/themes/modez/assets/css/bootstrap.css"> 
{/block}

2. Habiendo subido el css de bootstrap a la carpeta _partials:

{block name='stylesheets'}
	{include file="_partials/stylesheets.tpl" stylesheets=$stylesheets} 
	{include file="_partials/bootstrap.css" stylesheets=$stylesheets} 
{/block}

3.

{block name='stylesheets'}
	{include file="_partials/stylesheets.tpl" stylesheets=$stylesheets} 
	<link rel="stylesheet" href="{$base_dir}bootstrap.css"> 
{/block}

Muchísimas gracias de antemano por vuestras respuestas.

Link to comment
Share on other sites

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...