Main Menu
collapse

Simple Portal Archived Forum

This is an Archive Forum.

The content in this forum may be out-of-date or have been superseded by newer information, and links in forum pages to other sites may not work.
This forum contains archives for future reference.

Visit our thread at Simple Machines Forum for current support.

SMF 2.1 users: EhPortal is a ported version of Simple Portal specifically designed for the SMF 2.1 branch.
Please visit web-develop.ca to download EhPortal and for its support.

User Info

Welcome Guest.
Please log in.

Who's Online

  • Dot Guests: 1306
  • Dot Hidden: 0
  • Dot Users: 0

There aren't any users online.

Recent Posts

Adding Forums Button to Nav bar by jirapon
[August 01, 2019, 09:07:12 AM]


Re: Board Icons by ♦ Ninja ZX-10RR ♦
[July 30, 2019, 04:03:41 PM]


MOVED: Czech translation???? by ♦ Ninja ZX-10RR ♦
[July 30, 2019, 03:04:51 PM]


Board Icons by jirapon
[July 30, 2019, 07:28:44 AM]


Re: Thankyou Simpleportal, by ♦ Ninja ZX-10RR ♦
[July 29, 2019, 09:41:29 AM]


Thanks for having an interest with our portal. If you have any requests for features, have a look at the Feature Requests board.

Como instalar el boton "Agregar como art

Started by Angel Mu, August 08, 2009, 08:24:19 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Angel Mu

Buen dia, acabo de comprar el theme urban, le hize la instalacion del simple portal correctamente, todo va de maravillas sin embargo no he logrado instalar el boton "Agregar como art

130860

en tu archivo Themes/tu theme/Display.template.php

debes buscar esto:

// Show the page index... "Pages: [1]".


e inmediatamente depues, agregar esto:

// Make Article Button
if ($context['can_make_article'])
$normal_buttons['article'] = array('text' => 'sp-make_article', 'image' => 'addarticle.gif', 'lang' => true, 'url' => $context['portal_url'] . '?sa=addarticle;message=' . $context['topic_first_message'] . ';return=' . $context['current_topic'] . '.' . $context['start'] . ';sesc=' . $context['session_id']);

// Show the page index... "Pages: [1]".



si no lo encuentras o se te dificulta, por favor, adjunta tu archivo Display.template.php de tu theme.

saludos!

Javilico

Quote from: 130860 on August 08, 2009, 06:56:08 PM
en tu archivo Themes/tu theme/Display.template.php

debes buscar esto:

// Show the page index... "Pages: [1]".


e inmediatamente depues, agregar esto:

// Make Article Button
if ($context['can_make_article'])
$normal_buttons['article'] = array('text' => 'sp-make_article', 'image' => 'addarticle.gif', 'lang' => true, 'url' => $context['portal_url'] . '?sa=addarticle;message=' . $context['topic_first_message'] . ';return=' . $context['current_topic'] . '.' . $context['start'] . ';sesc=' . $context['session_id']);

// Show the page index... "Pages: [1]".



si no lo encuentras o se te dificulta, por favor, adjunta tu archivo Display.template.php de tu theme.

saludos!

Hola, refloto el tema porque he intentado la solucion que das al otro usuario, y no hay manera de que aparezca el boton, o las letras de "A

Sapinho

en el archivo que adjuntaste no se ve que hayas hecho la modifcicasion


Sapinho

hola estoy viendo en tu perfil, y dice que tienes una version 1.1.13 de simple machine, es la que estas usando actualmente?

lo que publico @130860 es una modificasion para el foro 2.0 y no para la 1.0, si tienes la version 1 de simple machine te dejo este codigo esperando te funcione:

busca en tu display template


// Show the page index... "Pages: [1]".


y lo reemplazas por:



// Make Article Button
if ($context['can_make_article'] && !empty($modSettings['articleactive']))
$normal_buttons['article'] = array('text' => 'sp-' . ($context['topic_is_article'] ? 'remove' : 'add') . '_article', 'image' => 'addarticle.gif', 'lang' => true, 'url' => $scripturl . '?action=portal;sa=' . ($context['topic_is_article'] ? 'remove' : 'add') . 'article;message=' . $context['topic_first_message'] . ';return=' . $context['current_topic'] . '.' . $context['start'] . ';sesc=' . $context['session_id']);

// Show the page index... "Pages: [1]".



con eso te deberia de funcionar, en la version 1 de SMF me parece que emplea gif para los botones trata de poner el archivo addarticle.gif en la carpeta del idioma que tu uses no recuerdo bien la ruta, me parece que es:

/tutemplate/images/tuidioma/addarticle.gif

saludos espero te funcione