Mensagens - bfms

Páginas: 1 2 3 4 ... 130
16
Conversa Geral / Re: O VERDADEIRO Offtopic 5
« em: 21/Out/2016 16:36 »
 :disco:

17
UI & UX Design / [Freebie] Huge Mockup Psd Pack
« em: 21/Out/2016 16:33 »
Mais um pack de 600 mockups em formato PSD ;)

"This huge mockup Psd pack is a great compilation and expansion on our previous sets, comprising printing mockups of stationery, branding, posters, and desktop and mobile mockups. All the elements are 100% editable, and most are combinable so your composing possibilities seem infinite, along with the predefined ones in any of the multiple styles and perspectives available."





Download: http://www.designshock.com/huge-mockup-psd-pack

18
Aqui está um freebie que pode ser útil a muitos de vós :)

Create your brand's identity
From business cards to letterheads and envelopes
This is quite likely the largest bundle in the market!




Download: http://www.designshock.com/corporate-identity-templates-pack

19
Projectos / Re: A Faina!
« em: 10/Out/2016 14:58 »
Bem vinda ao +t e parabéns pelo projecto :)

20
Experimenta substituir o conteúdo do teu ficheiro por este código abaixo:

Código: [Seleccione]
<?php
/**
 * The template for displaying comments.
 *
 * The area of the page that contains both current comments
 * and the comment form.
 *
 * @package sparkling
 */

/*
 * If the current post is protected by a password and
 * the visitor has not yet entered the password we will
 * return early without loading the comments.
 */
if ( post_password_required() ) {
return;
}
?>


<div id="comments" class="comments-area">

<?php // You can start editing here -- including this comment! ?>

        <?php comment_form(); ?>

<?php if ( have_comments() ) : ?>
<h2 class="comments-title">
<?php
printf_nx'One thought on &ldquo;%2$s&rdquo;''%1$s thoughts on &ldquo;%2$s&rdquo;'get_comments_number(), 'comments title''sparkling' ),
number_format_i18nget_comments_number() ), '<span>' get_the_title() . '</span>' );
?>

</h2>

<?php if ( get_comment_pages_count() > && get_option'page_comments' ) ) : // are there comments to navigate through ?>
<nav id="comment-nav-above" class="comment-navigation" role="navigation">
<h1 class="screen-reader-text"><?php esc_html_e'Comment navigation''sparkling' ); ?></h1>
<div class="nav-previous"><?php previous_comments_linkesc_html__'&larr; Older Comments''sparkling' ) ); ?></div>
<div class="nav-next"><?php next_comments_linkesc_html__'Newer Comments &rarr;''sparkling' ) ); ?></div>
</nav><!-- #comment-nav-above -->
<?php endif; // check for comment navigation ?>

<ol class="comment-list">
<?php
wp_list_comments( array(
'style'      => 'ol',
'short_ping' => true,
'avatar_size' => 60
) );
?>

</ol><!-- .comment-list -->

<?php if ( get_comment_pages_count() > && get_option'page_comments' ) ) : // are there comments to navigate through ?>
<nav id="comment-nav-below" class="comment-navigation" role="navigation">
<h1 class="screen-reader-text"><?php esc_html_e'Comment navigation''sparkling' ); ?></h1>
<div class="nav-previous"><?php previous_comments_linkesc_html__'&larr; Older Comments''sparkling' ) ); ?></div>
<div class="nav-next"><?php next_comments_linkesc_html__'Newer Comments &rarr;''sparkling' ) ); ?></div>
</nav><!-- #comment-nav-below -->
<?php endif; // check for comment navigation ?>

<?php endif; // have_comments() ?>

<?php
// If comments are closed and there are comments, let's leave a little note, shall we?
if ( ! comments_open() && '0' != get_comments_number() && post_type_supportsget_post_type(), 'comments' ) ) :
?>

<p class="no-comments"><?php esc_html_e'Comments are closed.''sparkling' ); ?></p>
<?php endif; ?>

</div><!-- #comments -->

Se não estiver como pretendes, é uma questão de moveres esta linha mais para baixo:

Código: [Seleccione]
<?php comment_form(); ?>
Esta linha é referente ao formulário de inserção de comentários.


21
Publica aqui o código do teu ficheiro comments.php que será mais fácil para te podermos ajudar ;)

22
Obrigado, já recebi os conteúdos ;)

23
Projectos / Re: Extreme Climbing - Jogo Android
« em: 10/Jun/2015 19:46 »
Ainda não tive oportunidade de experimentar mas desde já os parabéns pelo jogo!
Gostei de ler a apresentação do mesmo e do pouco que vi parece-me ser bastante interessante. Sou fã deste tipo de jogos, quando experimentar deixo aqui o meu feedback.

Até lá continuação de bom trabalho / lançamento nas outras plataformas :)

24
Nossa o falta de atenção da minha parte realmente tem essa linha.

Perfeito agora super, mega, obrigado.

Boa! Ainda bem que funcionou :)
Alterei o título do tópico, assim torna-se mais fácil ou útil para quem tiver a mesma questão.

25
Em post-single.php também não achei <?php the_content(); ?>

Meu post-single.php

<?php global $theme; ?>
    <div <?php post_class('post post-single clearfix'); ?> id="post-<?php the_ID(); ?>">
        <h2 class="title"><?php the_title(); ?></h2>
        <div class="postmeta-primary">
            <span class="meta_date"><?php echo get_the_date(); ?></span>
           &nbsp; <span class="meta_categories"><?php the_category(', '); ?></span>
   
                <?php if(comments_open( get_the_ID() ))  {
                    ?> &nbsp; <span class="meta_comments"><?php comments_popup_link( __( 'No comments', 'themater' ), __( '1 Comment', 'themater' ), __( '% Comments', 'themater' ) ); ?></span><?php
                }
               
                if(is_user_logged_in())  {
                    ?> &nbsp; <span class="meta_edit"><?php edit_post_link(); ?></span><?php
                } ?>
        </div>

       
        <div class="entry clearfix">
           
            <?php
                if(has_post_thumbnail())  {
                    the_post_thumbnail(
                        array($theme->get_option('featured_image_width_single'), $theme->get_option('featured_image_height_single')),
                        array("class" => $theme->get_option('featured_image_position_single') . " featured_image")
                    );
                }
            ?>
           
            <?php
                the_content('');
                wp_link_pages( array( 'before' => '<p><strong>' . __( 'Pages:', 'themater' ) . '</strong>', 'after' => '</p>' ) );
            ?>
   
        </div>

 <?php if(get_the_tags()) {
                ?><div class="postmeta-secondary"><span class="meta_tags"><?php the_tags('', ', ', ''); ?></span></div><?php
            }
        ?>
       
   
    </div><!-- Post ID <?php the_ID(); ?> -->
   
    <?php
        if(comments_open( get_the_ID() ))  {
            comments_template('', true);
        }
    ?>

Coloquei no código acima (a vermelho) onde está o the_content();

Abaixo dessa linha acrescentas então o código

Código: [Seleccione]
wp_related_posts();

26
Neste caso o ficheiro a procurar será o post-single.php

27
Desculpa pela demora na resposta.

Entrei nas configurações (editar) do plugin Related Posts e pediu para desabilitar a opção "Auto Insert Related Posts (or add <? php wp_related_posts() ? > to your single post template)", porém somente achei

wordpress-23-related-posts-plugin/versions.php - wp_rp_auto auto insert related posts to single post pages

wordpress-23-related-posts-plugin/views/settings.php - <?php _e("Auto Insert Related Posts",'wp_related_posts');?>

Quando referi ir às definições do plugin não me referia a editá-lo :)

No menu Ferramentas ou Opções do WordPress deves ter lá as opções do plugin Related Posts (onde configuras o número de posts a mostrar, estilo, etc). É nessa página que tens o Advanced Options e a opção que referi. Verifica ;)

29
Para os ícones ficarem no final do conteúdo do artigo e acima do "Confira esses artigos", experimenta fazer o seguinte:

- No plugin Related Posts que utilizas, vá às definições e terás que desativar esta opção:
Auto Insert Related Posts (or add <? php wp_related_posts() ? > to your single post template)

- Depois vais ao menu de Apresentação > Editor e selecionas o ficheiro do single.php ou content-single.php. Encontrarás algo como
Código: [Seleccione]
<?php the_content(); ?>
Abaixo dessa linha, colas o código do plugin Related Posts:
Código: [Seleccione]
<?php wp_related_posts()?>

Guarda as alterações e voilá ;) Experimenta e depois dá feedback


30
Utilizas o plugin em que plataforma?

Pretendes colocar os ícones de partilha antes dos "Confira esses artigos", é isso? Envia o link do teu site e assim fica mais fácil o pessoal ajudar-te ;)


Páginas: 1 2 3 4 ... 130