Cealin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fonts messed upFixed it. The theme was referring to OpenSans/OpenSansRegular etc fonts. Changing those to Open Sans in multiple CSS files fixed it.
Forum: Plugins
In reply to: [Firelight Lightbox] Addding Easy FancyBox to OTW Portfolio as text not imageI fixed it by placing
Changing:
” title=”<?php the_title(); ?>” class=”otw-portfolio-item-link”>
To:
” title=”<?php the_title(); ?>” class=”otw-portfolio-item-link”>
So you have to 1) enable iframe and inline at the Easy FancyBox plugin settings in your dashboard. See which OTW team you use, go to the template php of that team, back it up, and then change the line as can be seen above in this post.
Forum: Plugins
In reply to: [Firelight Lightbox] Addding Easy FancyBox to OTW Portfolio as text not imageThis is the php page of the OTW template I use:
<?php /* Template Name: Portfolio Filterable */ get_header(); otw_pfl_scripts_styles(); /* include the necessary srctips and styles */ otw_pfl_filter_scripts_styles(); ?> <?php $style_width = ''; if( get_option( 'otw_pfl_content_width' ) ) { $style_width = 'style="width:'.get_option('otw_pfl_content_width').'px;"'; } ?> <div class="otw-row otw-sc-portfolio" <?php echo $style_width; ?>> <div class="otw-twentyfour otw-columns"> <?php $taxo = get_object_taxonomies( 'otw-portfolio' ); foreach ( $taxo as $tax_name ) { $categories = get_categories('taxonomy='.$tax_name); $i = 0; $len = count( $categories ); foreach ($categories as $category) { if ($i == 0) { ?><ul class="otw-portfolio-filter"> <li class="all"><a href="#"><?php _e( 'All', 'otw_pfl' ); ?></a></li> <?php } echo '<li class="'.$category->category_nicename.'"><span class="separator">/</span><a href="#">'.$category->cat_name.'</a></li>'; if ($i == $len - 1) { echo '</ul>'; } $i++; } } ?> <ul class="otw-portfolio block-grid four-up mobile"> <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; ?> <?php query_posts('post_type=otw-portfolio&posts_per_page=-1&paged='.$paged); ?> <?php if (have_posts()): while (have_posts()) : the_post(); ?> <li data-type="<?php foreach(get_the_terms($post->ID, 'otw-portfolio-category') as $term) echo $term->slug.' ' ?>" data-id="id-<?php echo($post->post_name) ?>"> <article id="post-<?php the_ID(); ?>" <?php post_class('otw-portfolio-item'); ?>> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" class="otw-portfolio-item-link"> <div class="image"> <?php if ( has_post_thumbnail()) { ?> <?php the_post_thumbnail('otw-portfolio-medium'); ?> <?php } else { ?> <div style="background:url(<?php echo plugins_url( '/otw-portfolio-light/images/pattern-1.png' ) ?>);width:<?php echo get_option('otw_pfl_thumb_size_w', '303'); ?>px;height:<?php echo get_option('otw_pfl_thumb_size_h', '210'); ?>px" title="<?php _e( 'No Image', 'otw_pfl' ); ?>"></div> <?php } ?> </div> <div class="title"> <h3><?php the_title(); ?></h3> </div> <div class="text entry-content"> <?php the_excerpt(); ?> </div> <span class="shadow-overlay hide-for-small"></span></a> </article> </li> <?php endwhile; ?> </ul> </div> </div> <?php else: ?> <article id="post-0" class="post no-results not-found"> <header class="entry-header"> <h1 class="entry-title"><?php _e( 'Nothing Found', 'otw_pfl' ); ?></h1> </header> <div class="entry-content"> <p><?php _e( 'Apologies, but no results were found. Perhaps searching will help find a related post.', 'otw_pfl' ); ?></p> <?php get_search_form(); ?> </div><!-- .entry-content --> </article><!-- #post-0 --> <?php endif; ?> <?php otw_pagination_pfl(); ?> <?php get_footer(); ?>Forum: Fixing WordPress
In reply to: How to remove Read Full Story button and expand button insteadI used the Expand + Collapse Funk plugin, which solved my issues.
Forum: Fixing WordPress
In reply to: How to remove Read Full Story button and expand button insteadBy theme support I managed to remove the button – by adding the following code to Additional CSS: .btn-presence-color {display: none;}.
By using excerpt I managed to get the full post on the home.
But now I want a “read more” kind of button/text which links to expand further content, rather than go to the single post page. Any tips?