Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Daniel

#121
Free Themes / Re: Reseller
August 27, 2014, 03:32:54 AM
Quote from: SamerNajada on August 27, 2014, 03:26:44 AM
OHH Thx
IM Sorry For Advertise My Website
That does not matter, it is better to know the website of each, it is better for support.
#122
Free Themes / Re: Reseller
August 27, 2014, 03:24:31 AM


CTRL + F5 :)
#123
Free Themes / Re: Reseller
August 27, 2014, 03:12:46 AM
Search in reseller.css (Themes/Reseller/css):
/* Navbar */
.navbar-default
{
background-color: #26282b;
border-color: #222427;
border-bottom-width: 0;
box-shadow: 0 -3px #222427 inset;
}

And change background-color: #26282b; for the color that you want.
#124
Free Themes / Re: Reseller
August 26, 2014, 10:49:07 PM
El codigo que estas utilizando esta incompleto, no estas cerrando la etiqueta <form> y tambien te falta un input importante para el buen funcionamiento del buscador, aquí te dejo el codigo:
<form id="search_form" action="', $scripturl, '?action=search2" method="post" accept-charset="', $context['character_set'], '">
<input type="text" name="search" value="" class="input_text" />&nbsp;
<input type="submit" name="submit" value="', $txt['search'], '" class="button_submit" />
<input type="hidden" name="advanced" value="0" />';

// Search within current topic?
if (!empty($context['current_topic']))
echo '
<input type="hidden" name="topic" value="', $context['current_topic'], '" />';
// If we're on a certain board, limit it to this board ;).
elseif (!empty($context['current_board']))
echo '
<input type="hidden" name="brd[', $context['current_board'], ']" value="', $context['current_board'], '" />';

echo '</form>
#125
Chit Chat / Re: ¡Buenas!Me presento
August 26, 2014, 06:57:44 PM
Bienvenido! :D
#126
Free Themes / Re: Reseller
August 26, 2014, 05:55:44 PM
Quote from: ColicDusty on August 26, 2014, 05:52:40 PM
Looollzzzz es verdad -.-' Perdon Fail mio cierro el tema que cree.... Perdón Daniel mil perdones
Jajajajaja tranquilo, creo que no eres el único que le ha pasado.
Tranquilo, yo borro el otro tema.
#127
Free Themes / Re: Reseller
August 26, 2014, 05:46:51 PM
Quote from: ColicDusty on August 26, 2014, 05:37:47 PM
No se me muestran los anuncios, obto por desinstalar el mod y probar con otro haber que tal.

De todas formas gracias por tu tiempo Daniel.

Saludos ColicDusty.
Si no mal recuerdo en ese mod, los anuncios no se muestran a los administradores porque hay una opción activada por defecto que no permite que se muestre. Tal vez sea por eso que no se te muestre los anuncios.
#128
Free Themes / Re: Reseller
August 26, 2014, 05:16:07 PM
Quote from: ColicDusty on August 26, 2014, 05:08:10 PM
III Fallo
En este fallo es que no se encuentra lo que pone busca por <form> y veras que es muy largo nose está como diferente -.-'
Entonces creo que puedes obviar este error y instalar el mod, creo que no generara problemas a futuro.
#129
Free Themes / Re: Reseller
August 26, 2014, 05:02:27 PM
I Fallo
Buscar:
echo '
</tbody>
</table>';
}
echo '
</div>
<br />';
}
echo '
</div>';

if ($context['user']['is_logged'])


Reemplazar por:
echo '
</tbody>
</table>';
}
echo '
</div>
        <br />
<table class="table_list">
<tbody>
<tr>
<td colspan="4">';
//Display ads Between cats
if (function_exists("show_category"))
{
$ads = show_category($category['id']);
if(!empty($ads))
if($ads['type']==0)
echo $ads['content'];
else
eval($ads['content']);
unset($ads);
}
echo '
</td>
</tr>
</tbody>
</table>';
}
echo '
</div>';

if ($context['user']['is_logged'])


II Fallo
Buscar:
}
echo '
</form>
</div>
<a id="lastPost"></a>';


Reemplazar por:
if (function_exists("show_posts"))
{
$messageStorage = $message;
if ($adpost = show_posts($adcounter))
{
if($modSettings['ads_lookLikePosts'])
{
echo '
<div class="windowbg">
<span class="topslice"><span></span></span>
<div class="poster">
<h4>', $context['forum_name'], '</h4>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="', $message['icon_url'] . '" alt="" border="0" />
</div>
<h5 id="subject_', $message['id'], '">
<a href="', $message['href'], '" rel="nofollow">', $message['subject'], '</a>
</h5>
<div class="smalltext">&#171; <strong>', !empty($message['counter']) ? $txt['reply_noun'] . ' #' . $message['counter'] : '', ' ', $txt['on'], ':</strong> ', $message['time'], ' &#187;</div>
<div id="msg_', $message['id'], '_quick_mod"></div>
</div>';

// If this is the first post, (#0) just say when it was posted - otherwise give the reply #.
if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
echo '
<ul class="reset smalltext quickbuttons">';

// Can they reply? Have they turned on quick reply?
if ($context['can_reply'] && !empty($options['display_quick_reply']))
echo '
<li class="quote_button"><a>', $txt['quote'], '</a></li>';

// So... quick reply is off, but they *can* reply?
elseif ($context['can_reply'])
echo '
<li class="quote_button"><a>', $txt['quote'], '</a></li>';

// Can the user modify the contents of this post?
if ($message['can_modify'])
echo '
<li class="modify_button"><a>', $txt['modify'], '</a></li>';

// How about... even... remove it entirely?!
if ($message['can_remove'])
echo '
<li class="remove_button"><a>', $txt['remove'], '</a></li>';

// What about splitting it off the rest of the topic?
if ($context['can_split'] && !empty($context['num_replies']))
echo '
<li class="split_button"><a>', $txt['split'], '</a></li>';

// Can we restore topics?
if ($context['can_restore_msg'])
echo '
<li class="restore_button"><a>', $txt['restore_message'], '</a></li>';

if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
echo '
</ul>';

echo '
</div>';


// Show the post itself, finally!
echo '
<div class="post">';

echo '
<div class="inner" id="msg_', $message['id'], '"', '>', $adpost['type'] == 0 ? $adpost['content'] : eval($adpost['content']) ,'</div>
</div>';


echo '
</div>


<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
';
}
else
echo '
<div class="windowbg">
<span class="topslice"><span></span></span>

<div align="center">', $adpost['type'] == 0 ? $adpost['content'] : eval($adpost['content']) ,'</div>

<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
';
}
}
}

if(function_exists("show_lastpostAds") && function_exists("show_posts"))
{
$message = $messageStorage;
if(($adpost = show_lastpostAds()) && !show_posts($adcounter))
{
if($modSettings['ads_lookLikePosts'])
{
echo '
<div class="windowbg">
<span class="topslice"><span></span></span>
<div class="poster">
<h4>', $context['forum_name'], '</h4>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="', $message['icon_url'] . '" alt="" border="0" />
</div>
<h5 id="subject_', $message['id'], '">
<a href="', $message['href'], '" rel="nofollow">', $message['subject'], '</a>
</h5>
<div class="smalltext">&#171; <strong>', !empty($message['counter']) ? $txt['reply_noun'] . ' #' . $message['counter'] : '', ' ', $txt['on'], ':</strong> ', $message['time'], ' &#187;</div>
<div id="msg_', $message['id'], '_quick_mod"></div>
</div>';

// If this is the first post, (#0) just say when it was posted - otherwise give the reply #.
if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
echo '
<ul class="reset smalltext quickbuttons">';

// Can they reply? Have they turned on quick reply?
if ($context['can_reply'] && !empty($options['display_quick_reply']))
echo '
<li class="quote_button"><a>', $txt['quote'], '</a></li>';

// So... quick reply is off, but they *can* reply?
elseif ($context['can_reply'])
echo '
<li class="quote_button"><a>', $txt['quote'], '</a></li>';

// Can the user modify the contents of this post?
if ($message['can_modify'])
echo '
<li class="modify_button"><a>', $txt['modify'], '</a></li>';

// How about... even... remove it entirely?!
if ($message['can_remove'])
echo '
<li class="remove_button"><a>', $txt['remove'], '</a></li>';

// What about splitting it off the rest of the topic?
if ($context['can_split'] && !empty($context['num_replies']))
echo '
<li class="split_button"><a>', $txt['split'], '</a></li>';

// Can we restore topics?
if ($context['can_restore_msg'])
echo '
<li class="restore_button"><a>', $txt['restore_message'], '</a></li>';

if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
echo '
</ul>';

echo '
</div>';


// Show the post itself, finally!
echo '
<div class="post">';

echo '
<div class="inner" id="msg_', $message['id'], '"', '>', $adpost['type'] == 0 ? $adpost['content'] : eval($adpost['content']) ,'</div>
</div>';


echo '
</div>


<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
';
}
else
echo '
<div class="windowbg">
<span class="topslice"><span></span></span>

<div align="center">', $adpost['type'] == 0 ? $adpost['content'] : eval($adpost['content']) ,'</div>

<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
';
}
}

echo '
</form>
</div>
<a id="lastPost"></a>';


III Fallo
Estas seguro que es en ese archivo, porque he buscado tanto en el theme reseller como en el default y no esta.
#130
Free Themes / Re: Reseller
August 26, 2014, 02:26:10 PM
Tendrás que hacer los cambios manualmente, solo en los que te den error. Para saber que tienes que hacer, solo tienes que dar click en esta imagen: , en cada linea que te de error. Si necesitas ayuda porque no encuentras algo o te salta error en el archivo, solo déjame el código (de lo que buscar y lo que tienes que reemplazar o agregar) y te ayudare.
Saludos!
#131
Previews / Re: Reseller
August 26, 2014, 02:18:18 PM
Quote from: SamerNajada on August 26, 2014, 04:32:22 AM
IM Upload This At My Website "" Just I Want Change Color Can Help Me ""
This post is not for support, please create a topic in the section for support and will gladly help you. You also have to say that you want to change colors.
#132
Free Themes / Re: Reseller
August 25, 2014, 04:56:25 PM
Quote from: ultrazone on August 25, 2014, 04:48:29 PM
You are right, Daniel. All I need is for the menu options to be visible like that of smftricks on mobile operamini view. If you don't mind, you can compare the header/navbar view using operamini browser: http://smftricks.com and http://wetalknaira.com

Well this requires many changes, so give me some time and tell you what you have to do.
Greetings!
#133
Free Themes / Re: Reseller
August 25, 2014, 03:35:49 PM
Quote from: ultrazone on August 18, 2014, 12:12:35 AM
@Daniel, I appreciate your generous support from the depth of my heart. Issues 2-5 have been resolved and I'm now relieved. Unfortunately, I still have to click 'toggle navigation' before the simple menu icons are displayed. I have installed simple menu icons as you recommended but the links are not showing up like you have here on smftricks (shows on PC view). I'm testing with operamini mobile browser which is what most of my forum members use. Please kindly help me, Sir. I'll prefer that the links to the main menus stand out above the logo like in SMFtricks instead of having to be clicking toggle navigation.
You mean that you want the nav like this: http://prntscr.com/4gf202 ?
#134
Free Themes / Re: Reseller
August 20, 2014, 06:00:02 PM
Quote from: agentpr24 on August 20, 2014, 02:21:43 PM
Hello,

im sorry to disturb you but i have a weird issue. I am unable to click on any of the menu variable or even have it drop down.

I tried from my personnal PC (Windows 7), a virtual PC in my server (Windows 7) and from my server desktop (Windows Server 2008 R2). I have tried with Internet Explorer, Firefox, Chrome, Opera and Safari on every computer but i was not successfull.

Is there something i did not understand or did not see because im out of idea. My SMF version is 2.0.8.

Thank you very much for your time and help (in advance) and this theme is awesome.

Regards,

Ozan
This post is not for support, please create a topic in the section for support and will gladly help you. If you can explain it with images, is better.
#135
Free Themes / Re: Reseller
August 16, 2014, 09:35:05 PM
Quote from: everest9 on August 13, 2014, 03:13:23 AM
i install this theme and everything turn to white as if there is no theme present, please can cause it, is smf version 7.0.8
You had to have a problem uploading the theme, try uploading again.