Jump to content

[solucionado] Configurar posiciones de Modulo PlBlog


TechnoSpain

Recommended Posts

Hola amigos, he nstalado este módulo y estoy intentando que aparezca en el lateral derecho con el orden cambiado, es decir, me gustaria que apareciera primero el bloque de categorias y despues el de post/ comentarios.

 

Decir que estuve primero buscando y probe la solucion de este post http://www.prestasho...-modulo-plblog/ pero no me funciona, lo que hice fue sustituir todo el contenido de mi Blog_I.tpl por este, forzar compilacion y nada.

 

Ya he restaurado el original.

 

Mi pregunta es:

 

¿Lo hice bien? ¿Debo repetirlo de otra manera? Mi prestashop es el 1.4.7

 

Mi Web: http://www.technospain.es/es/

 

<!-- Blog categories -->
{if $PL_DISPLAY_CATEGORY != 'Disable'}
{if $PL_DISPLAY_CATEGORY == 'Left'}
 <div id="categories_block_left" class="block pl_block_category">
  <h4>{l s='Blog categories' mod='plblog'}</h4>
  <div class="block_content">
<ul class="tree {if $pl_isDhtml}dhtml{/if}">
{foreach from=$pl_blockCategTree.children item=child name=pl_blockCategTree}
	 {if $smarty.foreach.pl_blockCategTree.last}
	  {include file="$pl_branche_tpl_path" node=$child last='true'}
	 {else}
	  {include file="$pl_branche_tpl_path" node=$child}
	 {/if}
{/foreach}
</ul>
  </div>
 </div>
{/if}
{/if}
<!-- /Blog categories -->
<!-- Lastest post -->
{if $DISPLAY_LASTEST_POST != 'Disable'}
{if $DISPLAY_LASTEST_POST == 'Left'}
 <div class="block pl_block">
  <h4>{l s='Latest Posts' mod='plblog'}</h4>
  <div class="block_content center">
<ul>
{foreach from=$pl_lastest_post item=post}
	 <li>
	  <a href="{$plTools->getPostLink($post['id_pl_blog_post'], $post['link_rewrite'], $post['id_pl_blog_category'])}">
	   <span>{$post['post_title']|truncate:40}</span>
	  </a>
	  <i>{$post['post_date_create']}</i>
	  {$pl_blog_post = $post['post_description']|strip_tags}
	  {$pl_blog_post|truncate:$PL_COLP_MAXIMUM}
	 </li>
{/foreach}
</ul>
{if $url_rewrite == 1}
	 <a class="button_large" href="{$home}blog/all-post.html">{l s='view all' mod='plblog'}</a>
{/if}
{if $url_rewrite == 0}
	 <a class="button_large" href="{$home}modules/plblog/frontent/all-post.php">{l s='view all' mod='plblog'}</a>
{/if}
  </div>
 </div>
{/if}
{/if}
<!-- /Lastest post -->
<!-- Blog tags -->
{if $PL_DISPLAY_TAG != 'Disable'}
{if $PL_DISPLAY_TAG == 'Left'}
 <div class="block pl_tag">
  <h4>{l s='Blog tags' mod='plblog'}</h4>
  <div class="block_content center">
<p class="block_content">
	 {foreach from=$tags item=tag}
	  {if $tag['id_pl_blog_tags'] != 1}
	   <a href="{$plTools->getTagLink($tag['id_pl_blog_tags'], $tag['tags_name'])}">{$tag['tags_name']}</a>
	  {/if}
	 {/foreach}
</p>
  </div>
 </div>
{/if}
{/if}
<!-- /Blog tags -->

Edited by TechnoSpain (see edit history)
Link to comment
Share on other sites

Hola amigos, he nstalado este módulo y estoy intentando que aparezca en el lateral derecho con el orden cambiado, es decir, me gustaria que apareciera primero el bloque de categorias y despues el de post/ comentarios.

 

Decir que estuve primero buscando y probe la solucion de este post http://www.prestasho...-modulo-plblog/ pero no me funciona, lo que hice fue sustituir todo el contenido de mi Blog_I.tpl por este, forzar compilacion y nada.

 

Ya he restaurado el original.

 

Mi pregunta es:

 

¿Lo hice bien? ¿Debo repetirlo de otra manera? Mi prestashop es el 1.4.7

 

Mi Web: http://www.technospain.es/es/

 

<!-- Blog categories -->
{if $PL_DISPLAY_CATEGORY != 'Disable'}
{if $PL_DISPLAY_CATEGORY == 'Left'}
 <div id="categories_block_left" class="block pl_block_category">
  <h4>{l s='Blog categories' mod='plblog'}</h4>
  <div class="block_content">
<ul class="tree {if $pl_isDhtml}dhtml{/if}">
{foreach from=$pl_blockCategTree.children item=child name=pl_blockCategTree}
	 {if $smarty.foreach.pl_blockCategTree.last}
	  {include file="$pl_branche_tpl_path" node=$child last='true'}
	 {else}
	  {include file="$pl_branche_tpl_path" node=$child}
	 {/if}
{/foreach}
</ul>
  </div>
 </div>
{/if}
{/if}
<!-- /Blog categories -->
<!-- Lastest post -->
{if $DISPLAY_LASTEST_POST != 'Disable'}
{if $DISPLAY_LASTEST_POST == 'Left'}
 <div class="block pl_block">
  <h4>{l s='Latest Posts' mod='plblog'}</h4>
  <div class="block_content center">
<ul>
{foreach from=$pl_lastest_post item=post}
	 <li>
	  <a href="{$plTools->getPostLink($post['id_pl_blog_post'], $post['link_rewrite'], $post['id_pl_blog_category'])}">
	   <span>{$post['post_title']|truncate:40}</span>
	  </a>
	  <i>{$post['post_date_create']}</i>
	  {$pl_blog_post = $post['post_description']|strip_tags}
	  {$pl_blog_post|truncate:$PL_COLP_MAXIMUM}
	 </li>
{/foreach}
</ul>
{if $url_rewrite == 1}
	 <a class="button_large" href="{$home}blog/all-post.html">{l s='view all' mod='plblog'}</a>
{/if}
{if $url_rewrite == 0}
	 <a class="button_large" href="{$home}modules/plblog/frontent/all-post.php">{l s='view all' mod='plblog'}</a>
{/if}
  </div>
 </div>
{/if}
{/if}
<!-- /Lastest post -->
<!-- Blog tags -->
{if $PL_DISPLAY_TAG != 'Disable'}
{if $PL_DISPLAY_TAG == 'Left'}
 <div class="block pl_tag">
  <h4>{l s='Blog tags' mod='plblog'}</h4>
  <div class="block_content center">
<p class="block_content">
	 {foreach from=$tags item=tag}
	  {if $tag['id_pl_blog_tags'] != 1}
	   <a href="{$plTools->getTagLink($tag['id_pl_blog_tags'], $tag['tags_name'])}">{$tag['tags_name']}</a>
	  {/if}
	 {/foreach}
</p>
  </div>
 </div>
{/if}
{/if}
<!-- /Blog tags -->

En tu caso tienes que tocar el fichero:

 

Blog_r.tpl

 

Por que lo tienes en la right_column colocado el modulo.

Link to comment
Share on other sites

En tu caso tienes que tocar el fichero:

 

Blog_r.tpl

 

Por que lo tienes en la right_column colocado el modulo.

En tu caso tienes que tocar el fichero:

 

Blog_r.tpl

 

Por que lo tienes en la right_column colocado el modulo.

 

JAJAJA

 

No me lo puedo creer...

 

Y pongo lo mismo?

Link to comment
Share on other sites

JAJAJA

 

No me lo puedo creer...

 

Y pongo lo mismo?

Coloca esto:

 

<!-- Blog categories -->
{if $PL_DISPLAY_CATEGORY != 'Disable'}
{if $PL_DISPLAY_CATEGORY == 'Right'}
 <div id="categories_block_left" class="block pl_block_category">
  <h4>{l s='Blog categories' mod='plblog'}</h4>
  <div class="block_content">
   <ul class="tree {if $pl_isDhtml}dhtml{/if}">
   {foreach from=$pl_blockCategTree.children item=child name=pl_blockCategTree}
 {if $smarty.foreach.pl_blockCategTree.last}
  {include file="$pl_branche_tpl_path" node=$child last='true'}
 {else}
  {include file="$pl_branche_tpl_path" node=$child}
 {/if}
   {/foreach}
   </ul>
  </div>
 </div>
{/if}
{/if}

<!-- /Blog categories -->
<!-- Lastest post -->
{if $DISPLAY_LASTEST_POST != 'Disable'}
{if $DISPLAY_LASTEST_POST == 'Right'}
 <div class="block">
  <h4>{l s='Latest Posts' mod='plblog'}</h4>
  <div class="block_content center pl_block">
   <ul>
   {foreach from=$pl_lastest_post item=post}
 <li>
  <a href="{$plTools->getPostLink($post['id_pl_blog_post'], $post['link_rewrite'], $post['id_pl_blog_category'])}"><span style="font-weight:bold">{$post['post_title']}</span></a>
  <i>{$post['post_date_create']}</i>
  {$pl_blog_post = $post['post_description']|strip_tags}
  {$pl_blog_post|truncate:$PL_COLP_MAXIMUM}
 </li>
   {/foreach}
   </ul>
   {if $url_rewrite == 1}
 <a class="button_large" href="{$home}blog/all-post.html">{l s='View all' mod='plblog'}</a>
   {/if}
   {if $url_rewrite == 0}
 <a class="button_large" href="{$home}modules/plblog/frontent/all-post.php">{l s='View all' mod='plblog'}</a>
   {/if}
  </div>
 </div>
{/if}
{/if}
<!-- /Lastest post -->

<!-- Blog tags -->
{if $PL_DISPLAY_TAG != 'Disable'}
{if $PL_DISPLAY_TAG == 'Right'}
 <div class="block pl_tag">
  <h4>{l s='Blog tags' mod='plblog'}</h4>
  <div class="block_content center">
   <p class="block_content">
 {foreach from=$tags item=tag}
  {if $tag['id_pl_blog_tags'] != 1}
   <a href="{$plTools->getTagLink($tag['id_pl_blog_tags'], $tag['tags_name'])}">{$tag['tags_name']}</a>
  {/if}
 {/foreach}  
   </p>
  </div>
 </div>
{/if}
{/if}
<!-- /Blog tags -->

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...