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 - Diego Andrés

#481
Free Mods / Re: ST Shop
July 24, 2014, 01:14:15 AM
I don't have any full description.
Maybe for the next version which is coming for SMF 2.1
#482
Free Mods / Re: ST Shop
July 23, 2014, 09:48:11 PM
Just find
// Show how many posts they have made.

And BEFORE, add this

// Begin shop Mod
echo '
<li>', $modSettings['shopprefix'], $message['member']['cash'], $modSettings['shopsurfix'], ' </li>';
echo'<li><a href="', $scripturl, '?action=shop;sa=inventory;next2=', $message['member']['username'], '">',$txt['View_Inventory'],'</a></li>
<li><a href="', $scripturl, '?action=shop;sa=gift;u=', $message['member']['username'], '">Send '.$modSettings['shopsurfix'].'/Gift </a></li>';
echo '<li>';
if ($modSettings['ShopIpDis'] == 1 && $modSettings['ShopIpPos'] == 0)
{
if (count($message['member']['shopitems']) != 0)
{
foreach ($message['member']['shopitems'] as $shopitem)
{
echo '<img src="',$settings['images_url'], '/shopimg/item_images/',$shopitem['image'],' " alt ="',$shopitem['desc'],'" />&nbsp;&nbsp;';
}

}
}
echo '</li>';
// End shop Mod
#483
Free Themes / Re: Wrap
July 23, 2014, 07:06:01 PM
Es un problema con el mod Topic Prefix, no del theme, si necesitas soporte con el mismo, por favor solicítalo en la web del autor.

O en todo caso si no lo has comprado, lo único en lo que te puedo 'ayudar' es que revises que se hayan realizado correctamente las modificaciones en el archivo Display.template.php
#484
Free Mods / Re: ST Shop
July 23, 2014, 07:04:10 PM
You're trying to add that line manually?
You're going in a good way, just add it before
// Show how many blah blah
#485
Free Themes / Re: Wrap
July 17, 2014, 09:03:53 PM
Then change in the index.css in the @media parts that are near to the menu styles, change 1024px to something like 1150px.

Quote from: GamePersia on July 17, 2014, 08:50:55 PM
I think bud you should find another fix. As this fix is also not working :(

Sorry but I didn't make the theme and the fix works properly, but doesn't cover the circumstances were you are saturating the menu with a lot of sections.
#486
Theme Requests / Re: Old SMF Hispano Theme
July 17, 2014, 11:44:19 AM
Quote from: szaszekk56 on July 09, 2014, 05:49:44 AM
¡Hola! Yo uso el traductor de google porque ungheria.-lamentaría

Estoy buscando para windows 8 temáticos que se ven allí anteriormente. Usted puede obtener? Porque me súper encanta!

No se encuentra disponible por el momento!
#487
Free Themes / Re: Wrap
July 17, 2014, 11:39:43 AM
index.template.php find
// Show the menu here, according to the menu sub template.
template_menu();


Replace with
// Show the menu here, according to the menu sub template.
template_menu();
template_menu2();


Find
// Show the menu up top. Something like [home] [help] [profile] [logout]...
Add before
// Show the menu up top. Something like [home] [help] [profile] [logout]...
function template_menu2()
{
global $context, $settings, $options, $scripturl, $txt;

echo '
<div class="menu_responsive">
<a href="#" id="pull"></a>
<ul class="reset" ', !empty($settings['forum_width']) ? 'style="width: '. $settings['forum_width']. '; margin: 0 auto;"' : '', '>';

$prevent_actions = array($settings['sh_remove_items']);

foreach ($context['menu_buttons'] as $act => $button)
{
if (in_array($act, $prevent_actions))
continue;

echo '
<li id="responsive_button_', $act, '">
<a class="', $button['active_button'] ? 'active ' : '', '" href="', $button['href'], '"', isset($button['target']) ? ' target="' . $button['target'] . '"' : '', '>
', $button['title'], '
</a>
</li>';
}

echo '
</ul>
</div>';
}


Then open scripts/theme.js and add at the end:
$(function() { 
var pull        = $('#pull'); 
menu        = $('.menu_responsive ul'); 
menuHeight  = menu.height(); 
 
$(pull).on('click', function(e) { 
e.preventDefault(); 
menu.slideToggle(); 
});
$(window).resize(function(){
        var w = $(window).width();
        if(w > 1024 && menu.is(':hidden')) {
        }
    });
});


index.css find:
#menu
{
    display: block;
background: transparent url(../images/theme/menu.png) top left;
margin: 0;
float: right;
    overflow: hidden;
width: auto;
height: 50px;
line-height: 50px;
}

Add after
@media screen and (min-width: 1024px)
{


Find
#menu li li ul{
    margin: 0;
padding: 0;
    visibility: hidden !important;
list-style: none;
position: absolute;
top: 30px;
left: 20px;
background: #FFF;
border: 1px solid #CCC;
}
#menu li li:hover ul {
    visibility: visible !important;
}

Add after
.menu_responsive a#pull {
display: none;
}
.menu_responsive
{
display: none;
}
}
@media screen and (max-width: 1024px)
{
#menu ul.menu
{
display: none;
}

.menu_responsive {
border-bottom: 0;
display: block;
padding: 0 20px;
}
.menu_responsive ul {
display: none;
height: auto;
position: absolute;
margin: 60px auto 0;
z-index: 1000000;
top: 88px;
left: 0;
right: 0;
}
.menu_responsive li {
display: block;
float: none;
border-bottom: 1px solid #242629;
border-top: 1px solid #3B3E44;
background: #2F3338;
text-align: left;
height: 35px;
line-height: 35px;
width: 100%;
}
.menu_responsive li a {
color: #ddd;
text-decoration: none;
width: 100%;
padding: 10px 360px 10px 20px;
height: 35px;
}
.menu_responsive a#pull {
display: block;
width: 100%;
position: relative;
color: #AAAAAA;
font-family: Helvetica,Arial,sans-serif;
font-size: 13px;
font-weight: bold;
line-height: 60px;
text-decoration: none;
}
.menu_responsive a:hover
{
text-decoration: none;
}
.menu_responsive a#pull:after {
content:"";
background: url(../images/theme/nav-icon.png) no-repeat;
width: 30px;
height: 30px;
display: inline-block;
position: absolute;
right: -10px;
top: 20px;
}
}


Then upload the attached image to Themes/Wrap/images/theme/
#488
Free Themes / Re: Wrap
July 16, 2014, 10:51:16 PM
But that was updated since March, in the Demo Site is the updated version, your theme is not working like that?
#489
Free Themes / Re: Wrap
July 16, 2014, 10:05:31 PM
I don't understand the header part, please post a picture.
The point 3, is a very small issue, but I'll have to post a small tip in the tutorial board, because it requires more edits  :P
#490
Free Mods / Re: Team Page
July 16, 2014, 08:30:30 PM
Mod updated!
Now is using hooks.

Find more information in the mod page.
#491
Free Themes / Re: Wrap
July 16, 2014, 05:51:00 PM
Ok here we go again  :P

1. Index.css
h3.catbg, h3.catbg2, h3.titlebg, h4.titlebg, h4.catbg
You'll see there the font size, try something like 1.2em

And for children, as the theme is not mine, there was a mistake.
Search for this
p.moderators
Try something like 0.9em

2.1 The offline color is found in Display.template.php
<li class="status"><span class="offline" style="text-transform: uppercase; font-size: 8px; text-shadow: 0 1px 0 #fff; color: #AEAEAF;"> ' . $message['member']['online']['text'] . '</span></li>

2.2 You can change that color in index.css
.send_mp_new {
    -moz-transition: background 0.5s ease 0s;
    background-color: #D3D6D9;
    border-radius: 2px 2px 2px 2px;
    color: #eee;
    float: left;
    font-size: 8px;
    font-weight: bold;
    margin-top: 2px;
    padding: 0 5px;
    text-shadow: 0 1px 0 #9A9797;
    text-transform: uppercase;
}


2.3 To remove the posts count, Display.template.php find
// Show how many posts they have made.
if (!isset($context['disabled_fields']['posts']))
echo '
<li class="postcount"><img style="margin: -5px 0 0 1px" src="', $settings['images_url'], '/id/postscount.png" alt="" /><span style="text-align:right; margin: 6px 6px 0 0; float: right;">', $message['member']['posts'], '</span></li>';


And replace with
// Show how many posts they have made.
/*if (!isset($context['disabled_fields']['posts']))
echo '
<li class="postcount"><img style="margin: -5px 0 0 1px" src="', $settings['images_url'], '/id/postscount.png" alt="" /><span style="text-align:right; margin: 6px 6px 0 0; float: right;">', $message['member']['posts'], '</span></li>';*/


3. index.css find
.poster
{
float: left;
width: 15em;
}


Try to replace it with something like this
.poster
{
float: left;
width: 15em;
border-right: 1px dotted #ccc;
}


4. index.css find
#basicinfo
{
width: 20%;
float: left;
}


e.g If you change the width to 15%, then you'll have to edit #detailedinfo:
#detailedinfo
{
width: 79.5%;
float: right;
}

To this
#detailedinfo
{
width: 84.5%;
float: right;
}
#492
Free Themes / Re: Wrap
July 15, 2014, 10:47:15 AM
1. Search for .catbg and .children in the index.css
2. I'm not sure, as the theme is not mine, but I'll give it a check later today :P
3. Try adding that in .poster ---> border-right: 1px dotted #ccc;
4. Search for #basicinfo and reduce the width, but don't forget to adding more width to #detailedinfo

I hope it helps. I mean, because my answers were short/quick :P
#493
Product Feedback / Re: Something About SMF Tricks.
July 15, 2014, 10:42:18 AM
Thank you! We appreciate your words :D
#494
Free Themes / Re: Wrap
July 10, 2014, 04:42:31 PM
En SMF busca en las secciones de español, hay algunos temas que hablan al respecto de lo mismo, estoy seguro de que también funcionara en el theme wrap.

No estoy seguro de sí en los tutoriales de este mismo foro haya algún tema relacionado.
#495
Theme Requests / Re:Old SMF Hispano Theme
July 03, 2014, 12:03:40 PM
I'm sorry but is not available because it is not a theme itself.
Maybe in the future it will be available