Luego de instalar el Mod "Hide Tag" (requerido antes de instalar este boton)http://custom.simplemachines.org/mods/index.php?mod=118
se extraña tener un boton HIDE en la plantilla de posteo, por lo que he creado la siguiente:
(http://img150.imageshack.us/img150/9853/muestrahidewq9.jpg)
Para SMF 1.1.XLo dejo como
adjunto, funciona perfectamente en el theme "default" y se instala como cualquier paquete.
Si no utilizas el theme "default", en la carpeta de tu theme, edita el archivo
Post.template.phpbuscar:
'ftp' => array('code' => 'ftp', 'before' => '[ftp]', 'after' => '[/ftp]', 'description' => $txt[434]),
y agregar en la linea siguiente:
'hide' => array('code' => 'hide', 'before' => '[hide]', 'after' => '[/hide]', 'description' => 'Hide'),
y ademas copia el archivo "hide.gif" a :
/themes/TU-THEME/images/bbc
Para SMF 2RC3, 2RC4en ./Sources/Subs-Editor.php
busca:
array(
'image' => 'ftp',
'code' => 'ftp',
'before' => '[ftp]',
'after' => '[/ftp]',
'description' => $txt['ftp']
),
array(),
agregar despues
array(
'image' => 'hide',
'code' => 'hide',
'before' => '[hide]',
'after' => '[/hide]',
'description' => 'Hide'
),
array(),
ademas copia el archivo "hide.gif" a :
/themes/TU-THEME/images/bbc
Saludos.
me busto el boton... gracias
Muy bueno...!
esto se supone que oculta el contenido hasta que se responde no?
sip
pero tiene que instalar el hide antes... este solo que coloca el boton en el editor...
Quote from: bigo on August 02, 2007, 07:49:13 PM
sip
pero tiene que instalar el hide antes... este solo que coloca el boton en el editor...
Esacto...
Bigo, gracias por responder ;)
hola, ante todo gracias por los mod , yo ya baje el mod hide y el boton que tan gentimente nos facilito EGAR, ahora una pregunta, se le puede poner al link que uno oculto algo asi como* link oculto, debes postear par poder ver el link*
por cierto el mod y el boton hide funcionan de maravilla
gracias
eso se hace en la configuracion del mod...
sino la ves, seguramente te falta la traduccion al español... pon el foro en ingles, configura el HIDE y luego lo vuelves a español.
por si alguien se anima a traducirlo, dejo el archivo atraducir:
<?xml version="1.0"?>
<!DOCTYPE modification SYSTEM "http://www.simplemachines.org/xml/modification">
<modification xmlns="http://www.simplemachines.org/xml/modification" xmlns:smf="http://www.simplemachines.org/">
<id>din1031:HideTag</id>
<version>1.6.0</version>
<info>Install the english Language for the Hide Tag Special</info>
<homepage>http://www.ayu-kult.de</homepage>
<file name="$languagedir/Admin.english.php">
<operation>
<search position="after"><![CDATA[?>]]></search>
<add><![CDATA[
//Hide Tag Special Options
$txt['hidetagspecial_titel'] = 'Hide Tag Special';
$txt['hidetagspecial_description'] = 'You can set all the Setting that needed for the Hide Tag Special mod "[hide][/hide]"';
$txt['hide_MUIswitch'] = 'MUI SWITCH';
$txt['hide_enableHTML'] = 'Enable HTML';
$txt['hide_enableHTML_help'] = 'Allow you use html on Hidden or Unhidden Text';
$txt['hide_enableUnhiddenText'] = 'Enable Unhidden Information';
$txt['hide_hiddentext'] = 'Hidden Text Information';
$txt['hide_unhiddentext'] = 'Unhidden Text Information';
$txt['hide_hiddentext_help'] = 'BBC allowed, You can use <strong>$txtvariable</strong> and <strong>$language</strong>,<br />look into the help for more info.';
$txt['hide_onlyonetimeinfo'] = 'Show the un-/hidden Text Information one time';
$txt['hide_onlyonetimeinfo_help'] = 'This will be only shown at the end of the Post.';
$txt['hide_noinfoforguests'] = 'Hide Text Information for guests';
$txt['hide_autounhidegroups'] = 'Allowed Groups to see a hidden content without posting';
$txt['hide_minpostunhide'] = 'Minmum post count to allow unhide content';
$txt['hide_minpostautounhide'] = 'Minmum post count to unhide content without posting';
$txt['hide_minpostautounhide_help'] = '"0" or empty to disable this option';
$txt['hide_useSpanTag'] = 'Use SPAN html tag instead of DIV.';
$txt['hide_posUnhiddenText'] = 'Position for Unhidden Text Information';
$txt['hide_posUnhiddenOption1'] = 'Before Hidden Content';
$txt['hide_posUnhiddenOption2'] = 'Before in Hidden Content';
$txt['hide_posUnhiddenOption3'] = 'After in Hidden Content';
$txt['hide_posUnhiddenOption4'] = 'After Hidden Content';
]]></add>
</operation>
</file>
<file name="$languagedir/Help.english.php">
<operation>
<search position="after"><![CDATA[?>]]></search>
<add><![CDATA[
$txt['hide_MUIswitch_help'] = '
<strong>MUI SWITCH - Hide Tag Special</strong><br /><br />
This Option is for Multi Language Forums, it enable the replacment for
<strong>$txtvariable</strong> with $txt[\'hide_hiddentext\']
or $txt[\'hide_unhiddentext\']. So that it use the correct Language
for the user. Please don\'t forget to insert the $txtvariable in the
Textarea of the Infomation so that you can use it.<br />
<span class="smalltext">You find this variable in <strong>index.english.php</strong> for example</span>';
$txt['hide_unhiddentext_help'] = '
<strong>Unhidden Informations - Hide Tag Special</strong><br /><br />
This information appear after you post to a thread, and will be shown after a Hide Tag.
So that the user know the content is unhidden.';
$txt['hide_text_help'] = '
<strong>Text Informations - Hide Tag Special</strong><br /><br />
Normal the Textarea will be BBC Parsed.<br />
You can use the Area to give a user the Infomation that there is a hidden or unhidden content.<br />
In the area you can use 2 Variables for MUI use.<br /><br />
<strong>$language</strong>:<br />
This will replace with the language that the user use.<br />
<em>Example:</em> <strong>hidden_$language</strong> will be in the output <strong>hidden_english</strong>
when the user use english as language.<br /><br />
<strong>$txtvariable</strong>:<br />
Work only if you enable the MUI Switch!<br />
This will replace the $txtvariable with the $txt[\'hide_hiddentext\'] or $txt[\'hide_unhiddentext\']
to make it Multilingual useable.<br />
<em>Example:</em> [b]$txtvarible[/b] will be in english something like
<div class="quote"><strong>The text from the index.english.php</strong></div>
because the $txtvariable is replaced with this.<br /><br />
<em>Some Examples for Hidden/Unhidden Informations:</em><br />
If you like to use a Image for the Text use:
<div class="code">[img]http://www.example.com/image.jpg[/img]</div>
Do you like to use a Image that be diffrent for each language use:
<div class="code">[img]http://www.example.com/$lanuguage.jpg[/img]</div>
You can also combine text and picture:
<div class="code">Here is a secret, please post to see it.[br][img]http://www.example.com/hidden.jpg[/img]</div>
[br] stands for a new line.
You can also combine MUI Switch and $language Picture:
<div class="code">$txtvariable[br][img]http://www.example.com/$lanuguage.jpg[/img]</div>
<span class="smalltext">$txtvariable will replace only if you enable MUI Switch</span>';
$txt['hide_useSpanTag_help'] = '
<strong>SPAN instead of DIV - Hide Tag Special</strong><br /><br />
Use <span class="hiddencontent">Hidden Value</span> instead
of <div class="hiddencontent">Hidden Value</div> after unhidding Text.';
$txt['hide_posUnhiddenText_help'] = '
<strong>Unhidden Text Position - Hide Tag Special</strong><br /><br />
With this you can select where the unhidden text should be stand,
after unhidding the content.<br /><br />
<u>Before Hidden Content</u>:<br />
<strong>Unhidden Text</strong><div class="hiddencontent">Hidden Value</div><br />
<u>Before In Hidden Content</u>:<br />
<div class="hiddencontent"><strong>Unhidden Text</strong> Hidden Value</div><br />
<u>After In Hidden Content</u>:<br />
<div class="hiddencontent">Hidden Value <strong>Unhidden Text</strong></div><br />
<u>After Hidden Content</u>:<br />
<div class="hiddencontent">Hidden Value</div><strong>Unhidden Text</strong><br />
<br />
This Option will only work when you enable Unhidden Text Information and not enabled the
Option for "Show the un-/hidden Text Information one time".';
]]></add>
</operation>
</file>
<file name="$languagedir/index.english.php" error="skip">
<operation>
<search position="after"><![CDATA[?>]]></search>
<add><![CDATA[
$txt['hide_hiddentext'] = 'Here is a litte secret... Or not?';
$txt['hide_unhiddentext'] = 'My little secret is shown now... Or not?';
]]></add>
</operation>
</file>
</modification>
gracias hacia falta asi no se edita en cada ugrade del foro
Quote from: EgAr on August 05, 2007, 04:58:38 PM
eso se hace en la configuracion del mod...
sino la ves, seguramente te falta la traduccion al español... pon el foro en ingles, configura el HIDE y luego lo vuelves a español.
por si alguien se anima a traducirlo, dejo el archivo atraducir:
<?xml version="1.0"?>
<!DOCTYPE modification SYSTEM "http://www.simplemachines.org/xml/modification">
<modification xmlns="http://www.simplemachines.org/xml/modification" xmlns:smf="http://www.simplemachines.org/">
<id>din1031:HideTag</id>
<version>1.6.0</version>
<info>Install the english Language for the Hide Tag Special</info>
<homepage>http://www.ayu-kult.de</homepage>
<file name="$languagedir/Admin.english.php">
<operation>
<search position="after"><![CDATA[?>]]></search>
<add><![CDATA[
//Hide Tag Special Options
$txt['hidetagspecial_titel'] = 'Hide Tag Special';
$txt['hidetagspecial_description'] = 'You can set all the Setting that needed for the Hide Tag Special mod "[hide][/hide]"';
$txt['hide_MUIswitch'] = 'MUI SWITCH';
$txt['hide_enableHTML'] = 'Enable HTML';
$txt['hide_enableHTML_help'] = 'Allow you use html on Hidden or Unhidden Text';
$txt['hide_enableUnhiddenText'] = 'Enable Unhidden Information';
$txt['hide_hiddentext'] = 'Hidden Text Information';
$txt['hide_unhiddentext'] = 'Unhidden Text Information';
$txt['hide_hiddentext_help'] = 'BBC allowed, You can use <strong>$txtvariable</strong> and <strong>$language</strong>,<br />look into the help for more info.';
$txt['hide_onlyonetimeinfo'] = 'Show the un-/hidden Text Information one time';
$txt['hide_onlyonetimeinfo_help'] = 'This will be only shown at the end of the Post.';
$txt['hide_noinfoforguests'] = 'Hide Text Information for guests';
$txt['hide_autounhidegroups'] = 'Allowed Groups to see a hidden content without posting';
$txt['hide_minpostunhide'] = 'Minmum post count to allow unhide content';
$txt['hide_minpostautounhide'] = 'Minmum post count to unhide content without posting';
$txt['hide_minpostautounhide_help'] = '"0" or empty to disable this option';
$txt['hide_useSpanTag'] = 'Use SPAN html tag instead of DIV.';
$txt['hide_posUnhiddenText'] = 'Position for Unhidden Text Information';
$txt['hide_posUnhiddenOption1'] = 'Before Hidden Content';
$txt['hide_posUnhiddenOption2'] = 'Before in Hidden Content';
$txt['hide_posUnhiddenOption3'] = 'After in Hidden Content';
$txt['hide_posUnhiddenOption4'] = 'After Hidden Content';
]]></add>
</operation>
</file>
<file name="$languagedir/Help.english.php">
<operation>
<search position="after"><![CDATA[?>]]></search>
<add><![CDATA[
$txt['hide_MUIswitch_help'] = '
<strong>MUI SWITCH - Hide Tag Special</strong><br /><br />
This Option is for Multi Language Forums, it enable the replacment for
<strong>$txtvariable</strong> with $txt[\'hide_hiddentext\']
or $txt[\'hide_unhiddentext\']. So that it use the correct Language
for the user. Please don\'t forget to insert the $txtvariable in the
Textarea of the Infomation so that you can use it.<br />
<span class="smalltext">You find this variable in <strong>index.english.php</strong> for example</span>';
$txt['hide_unhiddentext_help'] = '
<strong>Unhidden Informations - Hide Tag Special</strong><br /><br />
This information appear after you post to a thread, and will be shown after a Hide Tag.
So that the user know the content is unhidden.';
$txt['hide_text_help'] = '
<strong>Text Informations - Hide Tag Special</strong><br /><br />
Normal the Textarea will be BBC Parsed.<br />
You can use the Area to give a user the Infomation that there is a hidden or unhidden content.<br />
In the area you can use 2 Variables for MUI use.<br /><br />
<strong>$language</strong>:<br />
This will replace with the language that the user use.<br />
<em>Example:</em> <strong>hidden_$language</strong> will be in the output <strong>hidden_english</strong>
when the user use english as language.<br /><br />
<strong>$txtvariable</strong>:<br />
Work only if you enable the MUI Switch!<br />
This will replace the $txtvariable with the $txt[\'hide_hiddentext\'] or $txt[\'hide_unhiddentext\']
to make it Multilingual useable.<br />
<em>Example:</em> [b]$txtvarible[/b] will be in english something like
<div class="quote"><strong>The text from the index.english.php</strong></div>
because the $txtvariable is replaced with this.<br /><br />
<em>Some Examples for Hidden/Unhidden Informations:</em><br />
If you like to use a Image for the Text use:
<div class="code">[img]http://www.example.com/image.jpg[/img]</div>
Do you like to use a Image that be diffrent for each language use:
<div class="code">[img]http://www.example.com/$lanuguage.jpg[/img]</div>
You can also combine text and picture:
<div class="code">Here is a secret, please post to see it.[br][img]http://www.example.com/hidden.jpg[/img]</div>
[br] stands for a new line.
You can also combine MUI Switch and $language Picture:
<div class="code">$txtvariable[br][img]http://www.example.com/$lanuguage.jpg[/img]</div>
<span class="smalltext">$txtvariable will replace only if you enable MUI Switch</span>';
$txt['hide_useSpanTag_help'] = '
<strong>SPAN instead of DIV - Hide Tag Special</strong><br /><br />
Use <span class="hiddencontent">Hidden Value</span> instead
of <div class="hiddencontent">Hidden Value</div> after unhidding Text.';
$txt['hide_posUnhiddenText_help'] = '
<strong>Unhidden Text Position - Hide Tag Special</strong><br /><br />
With this you can select where the unhidden text should be stand,
after unhidding the content.<br /><br />
<u>Before Hidden Content</u>:<br />
<strong>Unhidden Text</strong><div class="hiddencontent">Hidden Value</div><br />
<u>Before In Hidden Content</u>:<br />
<div class="hiddencontent"><strong>Unhidden Text</strong> Hidden Value</div><br />
<u>After In Hidden Content</u>:<br />
<div class="hiddencontent">Hidden Value <strong>Unhidden Text</strong></div><br />
<u>After Hidden Content</u>:<br />
<div class="hiddencontent">Hidden Value</div><strong>Unhidden Text</strong><br />
<br />
This Option will only work when you enable Unhidden Text Information and not enabled the
Option for "Show the un-/hidden Text Information one time".';
]]></add>
</operation>
</file>
<file name="$languagedir/index.english.php" error="skip">
<operation>
<search position="after"><![CDATA[?>]]></search>
<add><![CDATA[
$txt['hide_hiddentext'] = 'Here is a litte secret... Or not?';
$txt['hide_unhiddentext'] = 'My little secret is shown now... Or not?';
]]></add>
</operation>
</file>
</modification>
mil gracias, ya esta solucionado
abusando de su generosidad le hago una pregunta mas, puse el mod de stage6 , se instalo bien, pero cuando agrego una peli, no arranca, lei lo que usted puso de poner los numeros que identifican a la pelicula pero nada ah se queda ?
gracias
saludos
Hola amigo fantastico, aunque tengo una pregunta... no puedo insalar el mod... o sea lo instalo todo perfecto, pero dsp no veo las opciones del administrador en admin -> posts and topics.... a que se debe??? pls ayudame!
gracias men.. funciono chido
Quote from: Reco-X on August 20, 2007, 02:28:55 AM
Hola amigo fantastico, aunque tengo una pregunta... no puedo insalar el mod... o sea lo instalo todo perfecto, pero dsp no veo las opciones del administrador en admin -> posts and topics.... a que se debe??? pls ayudame!
Saludos... para solucionar ese problema que no pueden ver el contenido o el Texto para poder Utilizar el Mod... es sencillo...
El problema radica en que el Instala en Ingles y al tener el SMF en Español aparecen solo los cuadros pero no el texto... claro porque el Mod no encuentra el Lenguaje Original(ingles) y no puede desplegar la Informacion...
Solucion: Pues haganle creer al Mod que el Sistema sigue en Ingles y de esa forma van a ver el Contenido... yo lo solucione con:
Load Standard Language (http://custom.simplemachines.org/mods/index.php?mod=615)
De esta forma cualquier Mod que sea exclusivamente en Ingles... nunca nota que esta en Español... siempre para el estara en Ingles... y muestra el contenido...
Saludos...
Quote from: EgAr on August 05, 2007, 04:58:38 PM
eso se hace en la configuracion del mod...
sino la ves, seguramente te falta la traduccion al español... pon el foro en ingles, configura el HIDE y luego lo vuelves a español.
por si alguien se anima a traducirlo, dejo el archivo atraducir:
<?xml version="1.0"?>
<!DOCTYPE modification SYSTEM "http://www.simplemachines.org/xml/modification">
<modification xmlns="http://www.simplemachines.org/xml/modification" xmlns:smf="http://www.simplemachines.org/">
<id>din1031:HideTag</id>
<version>1.6.0</version>
<info>Install the english Language for the Hide Tag Special</info>
<homepage>http://www.ayu-kult.de</homepage>
<file name="$languagedir/Admin.english.php">
<operation>
<search position="after"><![CDATA[?>]]></search>
<add><![CDATA[
//Hide Tag Special Options
$txt['hidetagspecial_titel'] = 'Hide Tag Special';
$txt['hidetagspecial_description'] = 'You can set all the Setting that needed for the Hide Tag Special mod "[hide][/hide]"';
$txt['hide_MUIswitch'] = 'MUI SWITCH';
$txt['hide_enableHTML'] = 'Enable HTML';
$txt['hide_enableHTML_help'] = 'Allow you use html on Hidden or Unhidden Text';
$txt['hide_enableUnhiddenText'] = 'Enable Unhidden Information';
$txt['hide_hiddentext'] = 'Hidden Text Information';
$txt['hide_unhiddentext'] = 'Unhidden Text Information';
$txt['hide_hiddentext_help'] = 'BBC allowed, You can use <strong>$txtvariable</strong> and <strong>$language</strong>,<br />look into the help for more info.';
$txt['hide_onlyonetimeinfo'] = 'Show the un-/hidden Text Information one time';
$txt['hide_onlyonetimeinfo_help'] = 'This will be only shown at the end of the Post.';
$txt['hide_noinfoforguests'] = 'Hide Text Information for guests';
$txt['hide_autounhidegroups'] = 'Allowed Groups to see a hidden content without posting';
$txt['hide_minpostunhide'] = 'Minmum post count to allow unhide content';
$txt['hide_minpostautounhide'] = 'Minmum post count to unhide content without posting';
$txt['hide_minpostautounhide_help'] = '"0" or empty to disable this option';
$txt['hide_useSpanTag'] = 'Use SPAN html tag instead of DIV.';
$txt['hide_posUnhiddenText'] = 'Position for Unhidden Text Information';
$txt['hide_posUnhiddenOption1'] = 'Before Hidden Content';
$txt['hide_posUnhiddenOption2'] = 'Before in Hidden Content';
$txt['hide_posUnhiddenOption3'] = 'After in Hidden Content';
$txt['hide_posUnhiddenOption4'] = 'After Hidden Content';
]]></add>
</operation>
</file>
<file name="$languagedir/Help.english.php">
<operation>
<search position="after"><![CDATA[?>]]></search>
<add><![CDATA[
$txt['hide_MUIswitch_help'] = '
<strong>MUI SWITCH - Hide Tag Special</strong><br /><br />
This Option is for Multi Language Forums, it enable the replacment for
<strong>$txtvariable</strong> with $txt[\'hide_hiddentext\']
or $txt[\'hide_unhiddentext\']. So that it use the correct Language
for the user. Please don\'t forget to insert the $txtvariable in the
Textarea of the Infomation so that you can use it.<br />
<span class="smalltext">You find this variable in <strong>index.english.php</strong> for example</span>';
$txt['hide_unhiddentext_help'] = '
<strong>Unhidden Informations - Hide Tag Special</strong><br /><br />
This information appear after you post to a thread, and will be shown after a Hide Tag.
So that the user know the content is unhidden.';
$txt['hide_text_help'] = '
<strong>Text Informations - Hide Tag Special</strong><br /><br />
Normal the Textarea will be BBC Parsed.<br />
You can use the Area to give a user the Infomation that there is a hidden or unhidden content.<br />
In the area you can use 2 Variables for MUI use.<br /><br />
<strong>$language</strong>:<br />
This will replace with the language that the user use.<br />
<em>Example:</em> <strong>hidden_$language</strong> will be in the output <strong>hidden_english</strong>
when the user use english as language.<br /><br />
<strong>$txtvariable</strong>:<br />
Work only if you enable the MUI Switch!<br />
This will replace the $txtvariable with the $txt[\'hide_hiddentext\'] or $txt[\'hide_unhiddentext\']
to make it Multilingual useable.<br />
<em>Example:</em> [b]$txtvarible[/b] will be in english something like
<div class="quote"><strong>The text from the index.english.php</strong></div>
because the $txtvariable is replaced with this.<br /><br />
<em>Some Examples for Hidden/Unhidden Informations:</em><br />
If you like to use a Image for the Text use:
<div class="code">[img]http://www.example.com/image.jpg[/img]</div>
Do you like to use a Image that be diffrent for each language use:
<div class="code">[img]http://www.example.com/$lanuguage.jpg[/img]</div>
You can also combine text and picture:
<div class="code">Here is a secret, please post to see it.[br][img]http://www.example.com/hidden.jpg[/img]</div>
[br] stands for a new line.
You can also combine MUI Switch and $language Picture:
<div class="code">$txtvariable[br][img]http://www.example.com/$lanuguage.jpg[/img]</div>
<span class="smalltext">$txtvariable will replace only if you enable MUI Switch</span>';
$txt['hide_useSpanTag_help'] = '
<strong>SPAN instead of DIV - Hide Tag Special</strong><br /><br />
Use <span class="hiddencontent">Hidden Value</span> instead
of <div class="hiddencontent">Hidden Value</div> after unhidding Text.';
$txt['hide_posUnhiddenText_help'] = '
<strong>Unhidden Text Position - Hide Tag Special</strong><br /><br />
With this you can select where the unhidden text should be stand,
after unhidding the content.<br /><br />
<u>Before Hidden Content</u>:<br />
<strong>Unhidden Text</strong><div class="hiddencontent">Hidden Value</div><br />
<u>Before In Hidden Content</u>:<br />
<div class="hiddencontent"><strong>Unhidden Text</strong> Hidden Value</div><br />
<u>After In Hidden Content</u>:<br />
<div class="hiddencontent">Hidden Value <strong>Unhidden Text</strong></div><br />
<u>After Hidden Content</u>:<br />
<div class="hiddencontent">Hidden Value</div><strong>Unhidden Text</strong><br />
<br />
This Option will only work when you enable Unhidden Text Information and not enabled the
Option for "Show the un-/hidden Text Information one time".';
]]></add>
</operation>
</file>
<file name="$languagedir/index.english.php" error="skip">
<operation>
<search position="after"><![CDATA[?>]]></search>
<add><![CDATA[
$txt['hide_hiddentext'] = 'Here is a litte secret... Or not?';
$txt['hide_unhiddentext'] = 'My little secret is shown now... Or not?';
]]></add>
</operation>
</file>
</modification>
Yo lo voy a traducir para mi foro, cuando lo tenga os lo dejo aqui
hola uso smf 1.1.2 y solo sale [hide] [/hide] y no se oculta nada
como supongo que lo tienes en español tienes que instalarle esto
http://custom.simplemachines.org/mods/index.php?mod=615
(http://aycu13.webshots.com/image/27692/2002674072071549359_rs.jpg) (http://allyoucanupload.webshots.com/v/2002674072071549359)
Mi pregunta es cuales de los checkboxes activo pàra que pueda ocultar los enlaces?
Les aclaro que esto es como me sale al momento de probar el mod
(http://aycu35.webshots.com/image/25434/2000227539221537387_rs.jpg) (http://allyoucanupload.webshots.com/v/2000227539221537387)
y por ello mi inquietud de la 1º foto.
DESDE YA GRACIASSSSS.!
epale para que se utiliza ese boton???
hola, he instalado este modl la ocultacion de links funciona perfectamente, pero desde que lo instale al entrar en la pagina de administracion me sale el siguente error en el navegador:
Fatal error: Cannot redeclare template_edit_hidetagspecial_settings() (previously declared in /home/djketu/public_html/4.0/foro/foro/Sources/Load.php(1817) : eval()'d code:1487) in /home/djketu/public_html/4.0/foro/foro/Sources/Load.php(1817) : eval()'d code on line 1804
como puedo solucionarlo?, he estado mirando y es el unico problema que me da el resto funciona bien, os dejo aqui el LINK DEL FORO (http://djketu.com/4.0/foro/foro/index.php) del foro.
un salu2 y gracias
no hay nadie?
EN mi theme no esta el archivo post.teplate.php q hago??????
Quote from: etuato on September 30, 2007, 10:30:20 AM
EN mi theme no esta el archivo post.teplate.php q hago??????
instala normalamente y luego copia el archivo "hide.gif" a :
/themes/TU-THEME/images/bbc
Gracias, instalado correctamente
Holaaaas...
uff..
lo encontre muy bueno..
instale el boton ...
[hide] [/hide]
pero no me oculta nada...
supongo ke es por ke falta el
mod.. hide tag?
ciertu???
pero no esta para la version de smf ke ocupo ke es la smf 1.1rc3
alguien tiene este mod para no botar el boton :(
Quote from: exiles_miau on November 08, 2007, 12:38:01 PM
Holaaaas...
uff..
lo encontre muy bueno..
instale el boton ...
[hide] [/hide]
pero no me oculta nada...
supongo ke es por ke falta el
mod.. hide tag?
ciertu???
pero no esta para la version de smf ke ocupo ke es la smf 1.1rc3
alguien tiene este mod para no botar el boton :(
lo tienes en el manual men
justo lo que necesito para mi smf
¡AYUDA! - Problemas con MOD HideTagSpecial170
hola, necesito ayuda urgente!!!!
acabo de iniciarme en este sistema de foros y he instalado mi propio foro, ya lo traduje al español y todo bien ahi; el problema empezo desde ke instale estos paketes:
* HideTagSpecial170
* bhide
* gobalopper.hidetag
el error consiste en ke me aparece este mensaje:
"Warning: realpath() has been disabled for security reasons in /home/webcindario/h/a/hackerstock/forum/Sources/Errors.php on line 368"
en la barra de iconos de edicion de mensajes y respuestas.
adjunto la imagen para ke me ayuden:
(http://img169.imageshack.us/img169/8228/11799358cn6.jpg)
http://img169.imageshack.us/img169/8228/11799358cn6.jpg (http://img169.imageshack.us/img169/8228/11799358cn6.jpg)
es la primera modificacion ke he realizado en mi foro, pero alparecer hize algo mal, jejejejeje!!!!!!
ojala alguien pueda ayudarme con esto......
desde ya muchas graxias!!!!!
saludos!!!!
en mi theme no esta la opcion de post templante, ya instale el hide donde edito eso
apues entonces buscalo Default y modifica ese
Quote from: dmilm on February 24, 2008, 08:37:41 AM
en mi theme no esta la opcion de post templante, ya instale el hide donde edito eso
¿porqué nunca leen todos los post?
eso está contestado mas arriba...
Quote from: EgAr on September 30, 2007, 04:04:48 PMQuote from: etuato on September 30, 2007, 10:30:20 AM<br />EN mi theme no esta el archivo post.teplate.php q hago?
instala normalamente y luego copia el archivo "hide.gif" a :
/themes/TU-THEME/images/bbc
Quote from: EgAr on August 01, 2007, 10:09:13 PM
Si no utilizas el theme "default", en la carpeta de tu theme, edita el archivo
Post.template.php
buscar:
'ftp' => array('code' => 'ftp', 'before' => '[ftp]', 'after' => '[/ftp]', 'description' => $txt[434]),
y agregar en la linea siguiente:
'hide' => array('code' => 'hide', 'before' => '[hide]', 'after' => '[/hide]', 'description' => $txt['hide']),
y ademas copia el archivo "hide.gif" a :
/themes/TU-THEME/images/bbc
Saludos.
Mmm... estimado me queda una gran duda que habria que editar si es que en la carpeta del theme en uso no esta ese file???
"Post.template.php" espero me puedan alguna referencia, Mis Saludos y Deseos de EXITOS!!! ;)
como ya he dicho, INSTALAS NORMALMENTE y copia el archivo "hide.gif" a :
/themes/TU-THEME/images/bbc
Mmm... a ver suena simple, instale el file en el theme... pero resulta que no aparace, y sinceramente por lo que llegue a comprender del post en Gral es que hay que EDITAR un par de files... claro si no tengo esos o ese file para editar que hago???, TENGO QUE CREARLO???... Guys Uds. tienen un poco mas de Experiencia... creo que hay algunos mas que andan como yo sin poder meter el bendito boton jajaja... bueno la verdad es que el hide segun el post o bah la imagen de ref de aristides_03 en la respuesta #11, con esta imagen http://img90.imageshack.us/img90/5978/asdrs3.th.png esta excelente y sinceramente viendo la imagen pude hacerlo funcionar... pero no logro meter el boton en el menu, espero nos puedan o me puedan alguna ref mas solida, por que hasta ahora tengo el boton metido en todos los themes en las rutas especificadas y en ningun idioma ni theme aparece... evidentemente algun file debe llamarlo o sea, bueno gracias de todas maneras por tomarte el tiempo de responder de hecho y por XP (experiencia) se lo que es tratar de transmitir algo que sea comprensible y mas siendo aparentemente taaan simple... bueh Graxias y bueh a seguir intentando, Mis Saludos y Deseos de EXITOS!!! ;).-
Mmm... estimado la verdad es que esta mas que bueno el boton, hay algo en lo que tienes RAZÓN muchas veces no vemos algunos detalles... a ver si les sirve de XP en realidad gracias a no se mi proveedor tal vez? juas el tema es que solo hice correr la instalacion del "bhide" y no hizo falta mas, quedo perfecto sin editar nada... Graxias people... Mis Saludos y Deseos de EXITOS!!! ;).-
exelente... gracias por el botoncito :P esta super
un gusto srs. he leido todos los post y he logrado instalarlo tanto el boton como el mod , pero si no es mucho molestar.....
como hago para que los mensajes de *que esta informacion es para registrados* aparezca en un recuadro parecido al de citar o codigo....
leyendo informacion del mod encontre esto :
Content between [hide][/hide] can be special formate with css when you use in the Style.css something like:
Add at the end of the $themdir/style.css
Code: [Select]
/* A unhidden content. */
.hiddencontent
{
color: black;
background-color: yellow;
border: 2px solid red;
margin: 1px;
padding: 1px;
line-height: 1.4em;
}
It's only a example, use you own Style for it
lo probe pero no me funciono, creo que es para el recuadro que quiero..... alguien podria ayudarme...
nota : lo tengo en español y es la version 1.1.5
Excelente, se instalo a la perfeccion. Muchas gracias!
bueno he instlado este mod y el de Load Standard Language como veo por ahi para que coja el español como idioma ingles.
No veo en la administracion la pestaña Hide special tag. al igual que no tengo el gif en el theme deafaul. al instlar no me da error.
Load Standard Language muy buen mod.
Gracias por el Boton BBC.
correcto solucionado
Hola a todos. Soy novato y no sé mucho de PCs. Quisiera que me enseñarais a poner eso de Hide en mi foro porque me gusta mucho pero no tengo ni idea de HTML ni nada de esto. :(
Quote from: by0s on August 10, 2008, 02:35:02 AM
Hola a todos. Soy novato y no sé mucho de PCs. Quisiera que me enseñarais a poner eso de Hide en mi foro porque me gusta mucho pero no tengo ni idea de HTML ni nada de esto. :(
lee mas arriba
i cant download the gift file :(
de donde me descargo o consigo el archivo hide.gif?
ok para no ekivocarme debo poner eso en su debida carpeta y listo estoy usando el theme de darkbreak y no veo el Post.template.php por ningun lado o debo buscarlo en otra carpeta fuera de darkbreak? me podrian explicar un poco paso apaso hehe
Muy bueno che, gracias!
Quote from: sombra on November 06, 2008, 07:44:22 AM
de donde me descargo o consigo el archivo hide.gif?
del archivo adjunto en el primer post...
Quote from: sombra on November 06, 2008, 07:44:22 AM
... estoy usando el theme de darkbreak y no veo el Post.template.php por ningun lado o debo buscarlo en otra carpeta fuera de darkbreak? me podrian explicar un poco paso apaso hehe
http://www.simplemachines.org/community/index.php?topic=186342.msg1439480#msg1439480
Compa podrias poner el codigo para instalarlo manualmente? si no es molestia por que no puedo instalarlo asi no mas subiendo el paquete u.u
Quote from: allanalvarez on November 13, 2008, 03:02:55 PM
Compa podrias poner el codigo para instalarlo manualmente? si no es molestia por que no puedo instalarlo asi no mas subiendo el paquete u.u
eso esta al principio del post lee bien amigo
en el post principal soklo esta para modifiar el post template -.-
ya lo instale y se necesita modifica el archivos:
$themedir/languages/Modifications.spanish.php
;)
Solo checa el dato compa si se leer al parecer tu no, o no entendiste lo que quise decir.
se puede colocar algun mensaje ne la parte oculta com por ejemplo; debes registrarte àra acceder al contenido ?
Y segundo : se podra configurar para q se desbloquee para usuarios registrados? osea q funcione solo con los visitantes sin logear ! y sea visible a los usuarios registrados, me explico?
Gracais por todos los q ayudan a hacer este muy buen foro !
Gracias!!! Si me sirvio! :P
Gracias Necesito esto, lo probare...
he revisado con seis theme y no tienen este archivo Post.template.php
k hago...
Quote from: MaxShadow on January 11, 2009, 02:10:05 PM
he revisado con seis theme y no tienen este archivo Post.template.php
k hago...
edita el Post.template.php del theme default
Gracias, todo super...
mi problema era k no veía las opciones de configuración pero leyendo algunos post anteriores, descubrí k mi problema era el idioma... gracias...
oye man una duda!!
mira hice todo lo que dice el hide mod para 1.1.7 y no me deja hacer temas!! me sale esto:_
The message body was left empty.
lo hice dos veces por si me habia equivocado!! pero solo sale eso!!
me puedes ayduar!!!!
saludos!!
bueno yo instale todo pero no me sale el boton en el theme defaulf el hide.gif ???? q hago
gracias amigo!!!!
muchisimas gracias, me faltaba poner el boton y lo he conseguido a la primera ;D
una duda, ya que estoy. Me sale todo perfecto, pero el boton del hide me aparece en un lugar un poco conflictivo, y me gustaria saber si se puede cambiar de sitio. He hecho una captura para explicarme mejor ;)
(http://i229.photobucket.com/albums/ee163/kkunmillon/paraiso/hidecopia.jpg)
es posible hacerlo? :-\ gracias :P
Quote from: kkunmi on March 08, 2009, 07:57:24 PM
una duda, ya que estoy. Me sale todo perfecto, pero el boton del hide me aparece en un lugar un poco conflictivo, y me gustaria saber si se puede cambiar de sitio. He hecho una captura para explicarme mejor ;)
es posible hacerlo? :-\ gracias :P
En el
post.template.php busca:
$context['bbc_tags'][] = array(y trasladas el código de tu botón al final de la lista de
array (), que te sale y antes de
);Saludos.
Quote from: puchitus on March 08, 2009, 09:41:17 PM
Quote from: kkunmi on March 08, 2009, 07:57:24 PM
una duda, ya que estoy. Me sale todo perfecto, pero el boton del hide me aparece en un lugar un poco conflictivo, y me gustaria saber si se puede cambiar de sitio. He hecho una captura para explicarme mejor ;)
es posible hacerlo? :-\ gracias :P
En el post.template.php busca:
$context['bbc_tags'][] = array(
y trasladas el código de tu botón al final de la lista de array (), que te sale y antes de );
Saludos.
muchisimas gracias, lo probare y ya os cuento :D
Quote'ftp' => array('code' => 'ftp', 'before' => '', 'after' => ' (ftp://',%20'after'%20=>%20')', 'description' => $txt[434]),
ya busque este codigo en el archivo Post.template tengo el SMF 2.0 RC1
busque el archivo en mi tema y no lo encontre entonces lei
que buscara el de detaut tema lo busque y lo encontre pero no encotre lo que mecione antes
alguna ayuda para instalarlo
estar esta
busca solamente asta aca
Quote'ftp' => array('code' => 'ftp', 'before
aver qe pasa
PD: yo lo instale y tmb lo encontraba y lo hice asi como te dije y aparecio
Saludos ^^
Quote from: EgAr on August 05, 2007, 04:58:38 PM
eso se hace en la configuracion del mod...
sino la ves, seguramente te falta la traduccion al español... pon el foro en ingles, configura el HIDE y luego lo vuelves a español.
por si alguien se anima a traducirlo, dejo el archivo atraducir:
<?xml version="1.0"?>
<!DOCTYPE modification SYSTEM "http://www.simplemachines.org/xml/modification">
<modification xmlns="http://www.simplemachines.org/xml/modification" xmlns:smf="http://www.simplemachines.org/">
<id>din1031:HideTag</id>
<version>1.6.0</version>
<info>Install the english Language for the Hide Tag Special</info>
<homepage>http://www.ayu-kult.de</homepage>
<file name="$languagedir/Admin.english.php">
<operation>
<search position="after"><![CDATA[?>]]></search>
<add><![CDATA[
//Hide Tag Special Options
$txt['hidetagspecial_titel'] = 'Hide Tag Special';
$txt['hidetagspecial_description'] = 'You can set all the Setting that needed for the Hide Tag Special mod "[hide][/hide]"';
$txt['hide_MUIswitch'] = 'MUI SWITCH';
$txt['hide_enableHTML'] = 'Enable HTML';
$txt['hide_enableHTML_help'] = 'Allow you use html on Hidden or Unhidden Text';
$txt['hide_enableUnhiddenText'] = 'Enable Unhidden Information';
$txt['hide_hiddentext'] = 'Hidden Text Information';
$txt['hide_unhiddentext'] = 'Unhidden Text Information';
$txt['hide_hiddentext_help'] = 'BBC allowed, You can use <strong>$txtvariable</strong> and <strong>$language</strong>,<br />look into the help for more info.';
$txt['hide_onlyonetimeinfo'] = 'Show the un-/hidden Text Information one time';
$txt['hide_onlyonetimeinfo_help'] = 'This will be only shown at the end of the Post.';
$txt['hide_noinfoforguests'] = 'Hide Text Information for guests';
$txt['hide_autounhidegroups'] = 'Allowed Groups to see a hidden content without posting';
$txt['hide_minpostunhide'] = 'Minmum post count to allow unhide content';
$txt['hide_minpostautounhide'] = 'Minmum post count to unhide content without posting';
$txt['hide_minpostautounhide_help'] = '"0" or empty to disable this option';
$txt['hide_useSpanTag'] = 'Use SPAN html tag instead of DIV.';
$txt['hide_posUnhiddenText'] = 'Position for Unhidden Text Information';
$txt['hide_posUnhiddenOption1'] = 'Before Hidden Content';
$txt['hide_posUnhiddenOption2'] = 'Before in Hidden Content';
$txt['hide_posUnhiddenOption3'] = 'After in Hidden Content';
$txt['hide_posUnhiddenOption4'] = 'After Hidden Content';
]]></add>
</operation>
</file>
<file name="$languagedir/Help.english.php">
<operation>
<search position="after"><![CDATA[?>]]></search>
<add><![CDATA[
$txt['hide_MUIswitch_help'] = '
<strong>MUI SWITCH - Hide Tag Special</strong><br /><br />
This Option is for Multi Language Forums, it enable the replacment for
<strong>$txtvariable</strong> with $txt[\'hide_hiddentext\']
or $txt[\'hide_unhiddentext\']. So that it use the correct Language
for the user. Please don\'t forget to insert the $txtvariable in the
Textarea of the Infomation so that you can use it.<br />
<span class="smalltext">You find this variable in <strong>index.english.php</strong> for example</span>';
$txt['hide_unhiddentext_help'] = '
<strong>Unhidden Informations - Hide Tag Special</strong><br /><br />
This information appear after you post to a thread, and will be shown after a Hide Tag.
So that the user know the content is unhidden.';
$txt['hide_text_help'] = '
<strong>Text Informations - Hide Tag Special</strong><br /><br />
Normal the Textarea will be BBC Parsed.<br />
You can use the Area to give a user the Infomation that there is a hidden or unhidden content.<br />
In the area you can use 2 Variables for MUI use.<br /><br />
<strong>$language</strong>:<br />
This will replace with the language that the user use.<br />
<em>Example:</em> <strong>hidden_$language</strong> will be in the output <strong>hidden_english</strong>
when the user use english as language.<br /><br />
<strong>$txtvariable</strong>:<br />
Work only if you enable the MUI Switch!<br />
This will replace the $txtvariable with the $txt[\'hide_hiddentext\'] or $txt[\'hide_unhiddentext\']
to make it Multilingual useable.<br />
<em>Example:</em> [b]$txtvarible[/b] will be in english something like
<div class="quote"><strong>The text from the index.english.php</strong></div>
because the $txtvariable is replaced with this.<br /><br />
<em>Some Examples for Hidden/Unhidden Informations:</em><br />
If you like to use a Image for the Text use:
<div class="code">[img]http://www.example.com/image.jpg[/img]</div>
Do you like to use a Image that be diffrent for each language use:
<div class="code">[img]http://www.example.com/$lanuguage.jpg[/img]</div>
You can also combine text and picture:
<div class="code">Here is a secret, please post to see it.[br][img]http://www.example.com/hidden.jpg[/img]</div>
[br] stands for a new line.
You can also combine MUI Switch and $language Picture:
<div class="code">$txtvariable[br][img]http://www.example.com/$lanuguage.jpg[/img]</div>
<span class="smalltext">$txtvariable will replace only if you enable MUI Switch</span>';
$txt['hide_useSpanTag_help'] = '
<strong>SPAN instead of DIV - Hide Tag Special</strong><br /><br />
Use <span class="hiddencontent">Hidden Value</span> instead
of <div class="hiddencontent">Hidden Value</div> after unhidding Text.';
$txt['hide_posUnhiddenText_help'] = '
<strong>Unhidden Text Position - Hide Tag Special</strong><br /><br />
With this you can select where the unhidden text should be stand,
after unhidding the content.<br /><br />
<u>Before Hidden Content</u>:<br />
<strong>Unhidden Text</strong><div class="hiddencontent">Hidden Value</div><br />
<u>Before In Hidden Content</u>:<br />
<div class="hiddencontent"><strong>Unhidden Text</strong> Hidden Value</div><br />
<u>After In Hidden Content</u>:<br />
<div class="hiddencontent">Hidden Value <strong>Unhidden Text</strong></div><br />
<u>After Hidden Content</u>:<br />
<div class="hiddencontent">Hidden Value</div><strong>Unhidden Text</strong><br />
<br />
This Option will only work when you enable Unhidden Text Information and not enabled the
Option for "Show the un-/hidden Text Information one time".';
]]></add>
</operation>
</file>
<file name="$languagedir/index.english.php" error="skip">
<operation>
<search position="after"><![CDATA[?>]]></search>
<add><![CDATA[
$txt['hide_hiddentext'] = 'Here is a litte secret... Or not?';
$txt['hide_unhiddentext'] = 'My little secret is shown now... Or not?';
]]></add>
</operation>
</file>
</modification>
Que pena con usted, como se llama este archivo?? quiero hacer la traduccion respectiva y volver a compartirlo con todos ustedes.
Gracias
Chamitux
Sumercedes
Agregue tal como se dijo y especificó y no me sale el boton, será que necesito hacer algo adicional?? Especifico que no soy novato asi que no pregunten si ya hizo esto o aquello, segui los pasos descritos e hice los cambios referentes pero el boton aun esta oculto.
Me ayudan por favor.
Gracias
Chamitux
_________________________________________________
Chamo
A la conquista del mundo Freeware
Mi pagina de Recursos Cristianos .::. ZonaKristiana - La Zona de Recursos Cristianos .::. (http://zonakristiana.co.cc/)
(http://i572.photobucket.com/albums/ss163/chamitux/barra.png)
Mmm... saca las "propiedades" en el lugar donde deberia aparecer el boton y colocalo en esa ruta, ojala te funcione... :)
Mis Saludos y Deseos de EXITOS!!! 8).-
donde esta el boton para bajarselo?
pd ya lo encontre :)
hola e conseguido instalarlo pero cuando pongo enlaces dendro del hide no me sale ninguna imagen ni texto como puedo acerloo??
Fijate que esten echas todas las traducciones
PD: Usa el buscador que esto se respondio u.u
Hola
Gracias por el boton y me toco hacerlo manual debido a que me salia un errror de permisos de escritura en la carpeta packages, que ni idea porque salio. Esta funcionando al peluchin...
Quieren ver como quedo??? aqui ta http://zonakristiana.co.cc
Dios los bendiga
__________________________
Chamo
A la conquista del mundo Freeware
Mi pagina de Recursos Cristianos .::. ZonaKristiana - La Zona de Recursos Cristianos .::. (http://zonakristiana.co.cc/)
(http://[url=http://zonakristiana.co.cc%5Dhttp://i572.photobucket.com/albums/ss163/chamitux/barra.png%5Burl%5D)
Quote from: lucas-ruroken on April 23, 2009, 11:51:11 AM
Fijate que esten echas todas las traducciones
PD: Usa el buscador que esto se respondio u.u
yo e echo la modificacion que pone en el primer post despues en boton me sale y me funciona bien y en el panel de administracion no me sale para poner le mensaje que quiero poner
Eso es para la traduccion
hazla en los archivos de tu idioma
y ahi te tendria que aparecer ;)
Quote from: lucas-ruroken on April 23, 2009, 06:41:07 PM
Eso es para la traduccion
hazla en los archivos de tu idioma
y ahi te tendria que aparecer ;)
solo tengo este archivo "index.spanish_latin.php" deberia de tener otro?
esque creo que no tengo instalad el mod "Hide Tag" solo el boton pero cuando e encontrado el mod lo e ido a bajar para mi version y me da error y no encuentro otro que sirba mi version 1.1.8 tema default sabes de uno que fuincione para mi verson de foro y mi tema??
yo tengo un problema!!!
le pUSE Eso a mi foro
y e puesto que salga en HTML
a los usuarios no registrados, y miren lo que me sale
(http://www.xtupload.com/new/image-311A_49F2392C.jpg) (http://www.xtupload.com/new/share-311A_49F2392C.html)
ese es el code HTML
y esto, es lo que me sale
(http://www.xtupload.com/new/image-CD0F_49F23989.jpg) (http://www.xtupload.com/new/share-CD0F_49F23989.html)
y deberia salir una imagen que lleve a lo de registrarse
xd
ayuda
eso de la imagen a registrarse lo tenes qe acer vos
no lleva a registrarse el hide
solo esconde el lo que pongas entre [hide][/hide]
Podes usar un poco de css y html
;)
;D
Quote from: lucas-ruroken on April 24, 2009, 06:57:33 PM
eso de la imagen a registrarse lo tenes qe acer vos
no lleva a registrarse el hide
solo esconde el lo que pongas entre [hide][/hide]
Podes usar un poco de css y html
;)
;D
xddd si yo se
pero lo que me pasa, es que no me aparece el codigo :S y si lo puse entre [hide][/hide]
eso es porq no modificastes los archivos qe corresponden a tu theme ;)
o por qe por ahi te dio prueba fallida al instalarlo en el subs.php (lo digo por qe a mi me paso xD)
yo estoy buscando el mod hide tag especial para mi version 1.1.8 existe??? no la encuentro los ke e encontrado me an dado error
Quote from: lucas-ruroken on April 25, 2009, 01:07:04 PM
eso es porq no modificastes los archivos qe corresponden a tu theme ;)
o por qe por ahi te dio prueba fallida al instalarlo en el subs.php (lo digo por qe a mi me paso xD)
si debe estar instalado bien
por que puse un texto, y si lo muestra
y cuando tenia el HTML, no lo mostraba, pero el post que tenia el hide le di a quote
y cuando das reponder tema salen los temas, alli salia la imagen que puse en el html pero en el post no xd
entonces es ke faltan las traducciones a tus archivos ;)
mm yo he puesto este mod y también el del spoiler... pero solo puedo usar el codigo siempre y cuando yo escriba el bbcodec... la imagen no sale.. que tengo que hacer para que salga la imagen?? ::) :-\
saludos!!
Quote from: tetsu-kun on April 27, 2009, 07:24:15 PM
mm yo he puesto este mod y también el del spoiler... pero solo puedo usar el codigo siempre y cuando yo escriba el bbcodec... la imagen no sale.. que tengo que hacer para que salga la imagen?? ::) :-\
saludos!!
HAHAHA, eso me pasa :S
y pues para el hide tag el autor de este post te dice como acer, y para el de spoile podes usar los mismo pasos ;)
pues ya lo hice tal cual dice.. pero nada!!!
que mala suerte tengo!!!
si mucha :P
como hago para instalar cualquier mod en mi foro?
porque lo instalo, "se instala" pero voy a algun tema y no aparece nada!!
eso a que se debe??
y si puedes explicarme eso de theme/tutheme/.... porque no entiendo a que te quieras referir con eso porfas!!
de antemano gracias!!!
entras por ftp a tu pagina
y no se como tendras pero seguro entras a la carpeta donde tengas instalado tu foro SMF por ejemplo foro
y ahi tenes una caperta qe se llama Themes
despues entras a la carpeta del theme qe tengas instalado por ejemplo Defgray
por eso te aclaro lo de la ruta
/Themes/TUTHEME(puede ser cualquiera el ke tengas instalado)/images
Es facil u.u
Para instalar mods tenes qe ir a la administracion, packages, descargar paquetes y ahi subes ;D ;D
Mira lo he instela todo,va pertfectoo,pero no me sale el boton en el menu,tengo el tema x defecto,he metido el hide.gif en bbc,he modificado del post,themplate,php lo del post principal,y sigue sin salir,necesito ayuda..
Salu2!!!
Pues si modificastes el post.template de tu theme
y subistes la imagen a /images/bbc de tu theme
tendria qe salir
Quote from: lucas-ruroken on May 01, 2009, 02:41:31 PM
Pues si modificastes el post.template de tu theme
y subistes la imagen a /images/bbc de tu theme
tendria qe salir
Gracias ya lo hice compañero.
yo quiero saber si para la version SMF 2.0 RC1 se puede poner el boton..
instale el mod y funciona perfecto, pero no tengo el boton disponible ya pase la imagen del boton hide a la carpeta bbc, solo me falta el codigo para que aparesca..
la parrte del post.template qe seria en 1.1.8
creo qe en la version 2.0 esta un subs.php sino me ekivoco
bueno intente poner el mod y lo puedo modificar
pero me tira este error
(http://www.lokoyo.com.ar/foro/Themes/upload/images/dibujo.jpg)
si alguien me puede ayudar lo agradesco mucho
es q soy demasiado novato en SMF y se poco de php
les dejo tmb el archivo el cual tira el error
puede ser que al {$db_prefix} le falte un FROM antes?
proba asi... n.n
Uso la vercion SMF 1.1.10 y hay un probelmas con el anadir el boton el probelma esta en que si no usas el idioma espanol_es arrogara un error ya que
'ftp' => array('code' => 'ftp', 'before' => '[ftp]', 'after' => '[/ftp]', 'description' => $txt[434]),
'hide' => array('code' => 'hide', 'before' => '[hide]', 'after' => '[/hide]', 'description' => $txt['hide']),
Si agregamos eso tal y como aprese la intrucion no es suficnte o marcara un error ya que le falto mencionar otra operacion la de busqueda de la descripcion
- <file name="$themedir/languages/Modifications.spanish_es.php" error="skip">
- <operation error="ignore">
<search position="end" regexp="false" whitespace="exact" />
- <add>
- <![CDATA[ $txt['hide'] = 'Hide';
para que no tengan problemas con cualquier idioma intalado usen esta instrucion
'hide' => array('code' => 'hide', 'before' => '[hide]', 'after' => '[/hide]', 'description' => 'Hide'
),
de hay en mas gracias por el boton ;)
UN Problema tengo yo no uso el default es por eso que la carpeta template lo copie y pegue en el estilo "babylon" y despue puse la imagen gif , despues instale el paquete ese del mod hide , pero el problema es que en vez de ocultarme el link me lo pone asi
ASI EN NEGRITA
que sera? yo uso sfm 1.1.10 en spanish_latin salu2
Mil gracias por el boton. Instalado y funcionando a la perfeccion ;D
no puedo solo me sale el boton y nada mas!! no sirve ni nada :'(
mi foro es: www*.servidor-americano.tk/ Sin el *
HELP
AYUDA
para cada tema se debe hacer este paso ?
A mi ni me funciona el hide ni me sale el boton l3l
Quote from: zenok on September 20, 2010, 07:18:29 AM
A mi ni me funciona el hide ni me sale el boton l3l
lo mas probable es que te falte hacer las modificaciones manuales a tu theme y la traducción, el boton es independiente del mod, desde este post lo pueds bajar:
http://www.simplemachines.org/community/index.php?topic=32954.msg245755#msg245755
están como adjunto en ese post, esta para las dos versiones, 1.1.x y 2.0 y se instala como un mod normal.
aunque simplemente decir "no me funciona" en realidad no ayuda en nada, debes de especificar
por qué no te funciona.
hace años que no entraba a este tema... al parecer en versiones posteriores a la publicacion de esto, el autor del mod HIDE adjuntó un boton como describe 130860.
Saludos...
Amigo el texto que manda a buscar la mod osea este
Quote'ftp' => array('code' => 'ftp', 'before' => '', 'after' => ' (ftp://',%20'after'%20=>%20')', 'description' => $txt[434]),
y borro algunas cosa pero tampoco lo encuentra que teno que hacer para que encuentre ese texto para poder remplazarlo
Amigo el boton de este tema es solo para SMF 1.1.x
Y como hago para poner el boton a la 2.0 rc3?
me puedes decir ?
Pero instalaste ya el mod Hide Tag Special ?
Claro amigo ya lo instale y todo pero me falta que salga el boton
otra cosa ya puse el boton llamado hide.gif en la carpeta overviewlight->images->bbc
pero aun no sale noc porq
en ./Sources/Subs-Editor.php
busca:
array(
'image' => 'ftp',
'code' => 'ftp',
'before' => '[ftp]',
'after' => '[/ftp]',
'description' => $txt['ftp']
),
array(),
agrega despues
array(
'image' => 'hide',
'code' => 'hide',
'before' => '[hide]',
'after' => '[/hide]',
'description' => 'Hide'
),
array(),
saludos
No amigo no funciono no aparece el boton hide noc que hacer
dime si ay otra solucion
agregas
jajajjajajaj
man sos un capo
listo ya sale el boton xD
muchas gracias sos un capo en esto jajaj
Exelente... ;)
No hay un boton para SMF 2.0RC3?
Amigo ay esta la guia lee un poco y veras
Quote from: adthz on September 22, 2010, 10:20:57 PM
Amigo ay esta la guia lee un poco y veras
ha perdon no sabia.. entonces lo buscare
@CCX42
primero debes resolver tu problema de instalacion del hide tag y despues con mucho gusto te ayudo a poner el boton hide en tu editor de temas.
:)
@todos
actualicé el primer mensaje con las instrucciones para SMF 2RC3
corregido error con el idioma
Saludos
me hace falta muchas gracias recien empieso con esto de los foros asiq ue me veras mas de seguido muchas gracias
buenas!
algo asi para Rc4 habra?
Quote from: EgAr™ on September 22, 2010, 07:13:48 PM
en ./Sources/Subs-Editor.php
busca:
array(
'image' => 'ftp',
'code' => 'ftp',
'before' => '[ftp]',
'after' => '[/ftp]',
'description' => $txt['ftp']
),
array(),
agrega despues
array(
'image' => 'hide',
'code' => 'hide',
'before' => '[hide]',
'after' => '[/hide]',
'description' => 'Hide'
),
array(),
saludos
Quote from: Truja on November 08, 2010, 09:23:09 PM
algo asi para Rc4 habra?
La dama ya te contestó...
actualizé el titulo del topic...
Me exprese mal.. aunque eso tb me sirve..
Porque no puedo instalar el mod Hide Tag Rc4. Ayer creo q subieron una nueva actualizacion.. pero tampoco me funciono :(
estube mirando y el autor no ha actualizado el MOD aun...
alguien tiene la traduccion al español del "Hide Tag" se lo agradeceria mucho...
Quote from: EgAr™ on November 09, 2010, 12:48:15 PM
estube mirando y el autor no ha actualizado el MOD aun...
Hay una version no oficial que por cierto esta muy bien!
ese mod hide no esta para el rc4 :(
Quote from: alantalma on January 05, 2011, 04:53:51 PM
ese mod hide no esta para el rc4 :(
OMG! pero si tu respuesta está delante de ti!!!!
Quote from: Oskarlover on December 16, 2010, 11:52:31 PM
Quote from: EgAr™ on November 09, 2010, 12:48:15 PM
estube mirando y el autor no ha actualizado el MOD aun...
Hay una version no oficial que por cierto esta muy bien!
en serio amigo, deberías de poner un poco más de atención...
Quote from: Miss All Sunday on January 05, 2011, 05:55:37 PM
Quote from: alantalma on January 05, 2011, 04:53:51 PM
ese mod hide no esta para el rc4 :(
OMG! pero si tu respuesta está delante de ti!!!!
Quote from: Oskarlover on December 16, 2010, 11:52:31 PM
Quote from: EgAr™ on November 09, 2010, 12:48:15 PM
estube mirando y el autor no ha actualizado el MOD aun...
Hay una version no oficial que por cierto esta muy bien!
en serio amigo, deberías de poner un poco más de atención...
ok xDDDD
lo insale y no entiendo nada,no se demasiado de ingles
ya instale el hide tag special y el boton bbc... el boton me aparece y todo pero el hide no funciona, pongo [hide][/hide] pero no oculta nada..
Lo configuraste? Lo tradujiste?
Quote from: DoctorMalboro on January 10, 2011, 02:57:55 PM
Lo configuraste? Lo tradujiste?
en el menu de configuracion las letras no se ven.. solo los iconos.. donde descargo la traduccion?
y como seria la configuracion buena para que funcione?
ya lo traduci siguiendo los pasos de este post http://www.simplemachines.org/community/index.php?topic=342686.0 y sigo sin ver las letras del menu..
alguna otra sugerencia?
saludos
Vaciá el cache de tu foro. Fijate si esa traducción es de la versión más actual. Usá el mod Standar Language si queres que al menos aparezca en ingles el contenido...
Buen tuto
Me pregunto si existe para el 2.0.9
Gracias
Saludos