Forum Replies Created

Viewing 15 replies - 1 through 15 (of 28 total)
  • Forum: Themes and Templates
    In reply to: Css
    Thread Starter sumierm

    (@sumierm)

    @thepixelme sorry to revisit an old topic but I have another problem, in the activity feed the badge appears below their name. I tried to deal with it but it is starting to bother me. Can u help me out?
    https://connectioninterface.com/
    Username: test
    Password: test

    Forum: Fixing WordPress
    In reply to: New user tutorial
    Thread Starter sumierm

    (@sumierm)

    Ok, thanks a lot!

    Forum: Fixing WordPress
    In reply to: New user tutorial
    Thread Starter sumierm

    (@sumierm)

    Thanks, do you know where to add the code?

    Forum: Fixing WordPress
    In reply to: Shortcode problem
    Thread Starter sumierm

    (@sumierm)

    Will do.

    Forum: Fixing WordPress
    In reply to: Shortcode problem
    Thread Starter sumierm

    (@sumierm)

    Ok, thank you.

    Forum: Fixing WordPress
    In reply to: Shortcode problem
    Thread Starter sumierm

    (@sumierm)

    Select the drop down menu button in the top left corner of the page.

    Forum: Fixing WordPress
    In reply to: Shortcode problem
    Thread Starter sumierm

    (@sumierm)

    Ok, do you know how to display the number of messages and notifications next to the menu tab. See what i mean:
    https://connectioninterface.com/
    Username: test
    Password: test

    Forum: Fixing WordPress
    In reply to: Shortcode problem
    Thread Starter sumierm

    (@sumierm)

    Do you have a fix for my problem?

    Forum: Fixing WordPress
    In reply to: Shortcode problem
    Thread Starter sumierm

    (@sumierm)

    @catacaustic is possible it is in the content.php?

    <?php
    /**
     * The default template for displaying content
     *
     * @package Ribosome
     */
    ?>
    
    	<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    
    		<?php if ( is_sticky() && is_home() ){
    			get_template_part( RIBOSOME_TEMPLATE_PARTS . 'sticky');
    		}else{ ?>
    
    		<?php if ( is_single() || ( is_home() && get_theme_mod('ribosome_contenido_completo_entradas_pp', '') == 1 )  ) : ?>
    		<header class="entry-header">
    			<div class="entry-title-subtitle">
    				<?php if ( is_single() ) { ?>
    					<h1 class="entry-title"><?php the_title(); ?></h1>
    				<?php }else{ ?>
    					<h2 class="entry-title"><?php the_title(); ?></h2>
    				<?php } ?>
    
    				<!-- Author, date and comments -->
    				<div class='sub-title'>
    					<div class="autor-fecha">
    						<span class="autor-in-full-posts"><i class="fa fa-user"></i> <a href='<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>'><?php the_author() ?></a>&nbsp;&nbsp;</span>
    						<span class="fecha-in-full-posts">
    							<i class="fa fa-calendar-o"></i> <?php echo get_the_date(); ?>&nbsp;&nbsp;
    						</span>
    						<span class="comments-in-full-posts">
    							<i class="fa fa-comment-o"></i> <?php comments_popup_link(); ?>
    						</span>
    					</div><!-- autor-fecha -->
    				</div><!-- .sub-title -->
    			</div><!-- .entry-title-subtitle -->
    		</header><!-- .entry-header -->
    		<?php endif; // is_single() ?>
    
    		<!-- Subtitle widget area -->
    		<?php if (is_single()) { ?>
    			<div class="sub-title-widget-area">
    				<?php if (!dynamic_sidebar ('wt-sub-title')) {} ?>
    			</div><!-- .sub-title-widget-area -->
    		<?php }?>
    
    		<?php //if (  is_home() || is_search() || is_category() || is_tag() || is_author() || is_archive() ) : // Only display Excerpts ?>
    		<?php if (  ( is_search() || is_category() || is_tag() || is_author() || is_archive() )
    		||  (is_home() && get_theme_mod('ribosome_contenido_completo_entradas_pp', '') == '' ) ) : // Only display Excerpts ?>
    
    			<div class="excerpt-wrapper"><!-- Excerpt -->
    
    				<?php if (  (function_exists('has_post_thumbnail')) && (has_post_thumbnail())) : ?>
    						<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" rel="bookmark" >
    							<div class="wrapper-excerpt-thumbnail">
    								<?php
    								if (get_theme_mod('ribosome_thumbnail_rounded', '') == '') {
    									the_post_thumbnail('ribosome-excerpt-thumbnail');
    								}else{
    									the_post_thumbnail('ribosome-excerpt-thumbnail-rounded');
    								}
    								?>
    							</div>
    						</a>
    				<?php endif;?>
    
    				<header class="entry-header">
    					<h2 class="entry-title">
    					<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
    					</h2>
    					<?php
    					if (get_theme_mod( 'ribosome_show_meta_in_excerpts', '' ) == 1) { ?>
    						<div class='sub-title'>
    							<div class="autor-fecha">
    								<span class="autor-in-excerpts"><i class="fa fa-user"></i> <a href='<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>'><?php the_author() ?></a>&nbsp;&nbsp;</span>
    								<span class="fecha-in-excerpts">
    									<i class="fa fa-calendar-o"></i> <?php echo get_the_date(); ?>&nbsp;&nbsp;
    								</span>
    								<span class="comments-in-excerpts">
    									<i class="fa fa-comment-o"></i> <?php comments_popup_link(); ?>
    								</span>
    							</div><!-- autor-fecha -->
    						</div><!-- .sub-title -->
    					<?php } ?>
    				</header>
    
    				<?php the_excerpt(); ?>
    
    			</div><!-- .excerpt-wrapper -->
    
    		<?php else : ?>
    
    			<div class="entry-content">
    				<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'ribosome' ) ); ?>
    				<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'ribosome' ), 'after' => '</div>' ) ); ?>
    			</div><!-- .entry-content -->
    
    		<?php endif; ?>
    
    		<footer class="entry-meta">
    			<!-- Post end widget area -->
    			<?php if (is_single()) : ?>
    				<div class="post-end-widget-area">
    					<?php if (!dynamic_sidebar ('wt-post-end')) {}?>
    				</div>
    			<?php endif; ?>
    
    			<?php if ( is_single() || ( is_home() && get_theme_mod('ribosome_contenido_completo_entradas_pp', '') == 1 )  ) { ?>
    				<div class="entry-meta-term-single">
    			<?php
    			}else{
    			?>
    				<div class="entry-meta-term-excerpt">
    			<?php
    			} ?>
    
    				<span class="term-icon"><i class="fa fa-folder-open"></i></span> <?php echo get_the_term_list ($post->ID,'category', '', ', ',''); ?>
    
    				<?php $post_tags = get_the_term_list($post->ID,'post_tag');
    				if ($post_tags) { ?>
    				&nbsp;&nbsp;&nbsp;<span class="term-icon"><i class="fa fa-tags"></i></span> <?php echo get_the_term_list ($post->ID,'post_tag', '', ', ','');
    				}?>
    
    				<div style="float:right;"><?php edit_post_link( __( 'Edit', 'ribosome' ), '<span class="edit-link">', '</span>' ); ?></div>
    			</div><!-- .entry-meta-term -->
    
    			<?php
    			// Related posts
    			if ( is_single() && get_theme_mod('ribosome_related_posts', '') == 1) get_template_part( RIBOSOME_TEMPLATE_PARTS . 'related-posts'); ?>
    
    			<?php if ( is_singular() && get_the_author_meta( 'description' ) ) : ?>
    				<div class="author-info">
    					<div class="author-avatar">
    						<?php
    						/** This filter is documented in author.php */
    						$author_bio_avatar_size = apply_filters( 'ribosome_author_bio_avatar_size', 90 );
    						echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size );
    						?>
    					</div><!-- .author-avatar -->
    					<div class="author-description">
    						<h2><?php printf( __( 'About %s', 'ribosome' ), get_the_author() ); ?></h2>
    						<p><?php the_author_meta( 'description' ); ?></p>
    						<div class="author-link">
    							<a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
    								<?php printf( __( 'View all posts by %s <span class="meta-nav">&rarr;</span>', 'ribosome' ), get_the_author() ); ?>
    							</a>
    						</div><!-- .author-link	-->
    					</div><!-- .author-description -->
    				</div><!-- .author-info -->
    			<?php endif;
    			} // if ( is_sticky() && is_home() )?>
    		</footer><!-- .entry-meta -->
    	</article><!-- #post -->

    Forum: Fixing WordPress
    In reply to: Shortcode problem
    Thread Starter sumierm

    (@sumierm)

    Ribosome

    Forum: Fixing WordPress
    In reply to: Shortcode problem
    Thread Starter sumierm

    (@sumierm)

    Ok, do you know what file that might be in?

    Forum: Fixing WordPress
    In reply to: Shortcode problem
    Thread Starter sumierm

    (@sumierm)

    Hello, i just ran into another problem. The badge is not displayed in the site-wide activity. It shows the shortcode. Is there a fix for this.

    Forum: Fixing WordPress
    In reply to: Shortcode problem
    Thread Starter sumierm

    (@sumierm)

    Great! That worked, thank you.

    Forum: Fixing WordPress
    In reply to: Shortcode problem
    Thread Starter sumierm

    (@sumierm)

    Ok, sorry im kinda new to this, do i put the code you gave me after that line or do i replace that line?

    Forum: Fixing WordPress
    In reply to: Shortcode problem
    Thread Starter sumierm

    (@sumierm)

    Hello, thanks for responding, i dont see the h1 tags. This is what the page template (page.php) looks like:

    <?php
    /**
    * The template for displaying all pages
    *
    * This is the template that displays all pages by default.
    * Please note that this is the WordPress construct of pages
    * and that other ‘pages’ on your WordPress site will use a
    * different template.
    *
    * @package Ribosome
    */

    get_header(); ?>

    <div id=”primary” class=”site-content”>
    <div id=”content” role=”main”>

    <?php while ( have_posts() ) : the_post(); ?>
    <?php get_template_part( ‘content’, ‘page’ ); ?>
    <?php comments_template( ”, true ); ?>
    <?php endwhile; // end of the loop. ?>

    </div><!– #content –>
    </div><!– #primary –>

    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

Viewing 15 replies - 1 through 15 (of 28 total)