Forum Replies Created

Viewing 15 replies - 1 through 15 (of 28 total)
  • I am having same exact issue… https://www.jeremydeprisco.com/lyrics/

    Thread Starter Jeremy dePrisco

    (@shivasongster)

    Note that Save/Publish is not grayed out, even though it has been selected.

    Thread Starter Jeremy dePrisco

    (@shivasongster)

    Hmm… tried this and there was no effect. Tried different percentages, and I don’t think the code is being recognized at all.

    Also tried this:

    body div.slideshow-window * img
    {
    width: 100% !important;
    }

    Still getting a very large border around the image. Most of the images are around 600 × 338 or larger, so I’d expect them to show better than this in the box. Maybe not?

    Thread Starter Jeremy dePrisco

    (@shivasongster)

    Pasting this again. Hopefully you get it…

    <div class="enigma_blog_area ">
    <?php $wl_theme_options = weblizar_get_options();
    if($wl_theme_options['blog_title'] !='') { ?>
       <div class="container">
          <div class="row">
             <div class="col-sm-12">
                <div class="enigma_heading_title">
                   <h3><?php echo esc_attr($wl_theme_options['blog_title']); ?></h3>
                </div>
             </div>
          </div>
       </div>
       <?php } ?>
       <div class="container">
       <div class="row" id="enigma_blog_section">
       <?php    if ( have_posts()) :
             $posts_count =wp_count_posts()->publish;
             $args = array( 'post_type' => 'post','posts_per_page' => $posts_count ,'ignore_sticky_posts' => 1, 'posts_per_page' =>5);
             $post_type_data = new WP_Query( $args );
             while($post_type_data->have_posts()):
             $post_type_data->the_post(); ?>
             <div class="col-md-4 col-sm-12 scrollimation scale-in d2 pull-left">
             <div class="enigma_blog_thumb_wrapper">
                <div class="enigma_blog_thumb_wrapper_showcase">
                   <?php $img = array('class' => 'enigma_img_responsive');
                         if(has_post_thumbnail()):
                         the_post_thumbnail('home_post_thumb',$img);
                   endif; ?>
                   <div class="enigma_blog_thumb_wrapper_showcase_overlay">
                      <div class="enigma_blog_thumb_wrapper_showcase_overlay_inner ">
                         <div class="enigma_blog_thumb_wrapper_showcase_icons">
                            <a title="<?php the_title_attribute(); ?>" href="<?php the_permalink(); ?>"><i class="fa fa-link"></i></a>
                         </div>
                      </div>
                   </div>
                </div>
                <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
                <?php if(get_the_tag_list() != '') { ?>
                <p class="enigma_tags"><?php the_tags('Tags :&nbsp;', '', '<br />'); ?></p>
                <?php } ?>
                <?php the_excerpt( __( 'Read More' , 'weblizar' ) ); ?>
                <a href="<?php the_permalink(); ?>" class="enigma_blog_read_btn"><i class="fa fa-plus-circle"></i><?php _e('Read More','weblizar'); ?></a>
                <div class="enigma_blog_thumb_footer">
                   <ul class="enigma_blog_thumb_date">
                      <li><i class="fa fa-user"></i><a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php echo get_the_author(); ?></a></li>
                      <li><i class="fa fa-clock-o"></i>
                      <?php if ( ('d M  y') == get_option( 'date_format' ) ) : ?>
                      <?php echo get_the_date('F d ,Y'); ?>
                      <?php else : ?>
                      <?php echo get_the_date(); ?>
                      <?php endif; ?>
                      </li>
                      <li><i class="fa fa-comments-o"></i><?php comments_popup_link( '0', '1', '%', '', '-'); ?></li>
                   </ul>
                </div>
             </div>
             </div>
             <?php  endwhile;
             else : ?>
             <div class="col-md-4 col-sm-12 scrollimation scale-in d2 pull-left">
             <div class="enigma_blog_thumb_wrapper">
                <div class="enigma_blog_thumb_wrapper_showcase">
                   <img  alt="Enigma" src="<?php echo WL_TEMPLATE_DIR_URI ?>/images/wall/img(11).jpg">
                   <div class="enigma_blog_thumb_wrapper_showcase_overlay">
                      <div class="enigma_blog_thumb_wrapper_showcase_overlay_inner ">
                         <div class="enigma_blog_thumb_wrapper_showcase_icons">
                            <a title="Enigma" href="#"><i class="fa fa-link"></i></a>
                         </div>
                      </div>
                   </div>
                </div>
                <h2><a href="#"><?php _e('NO Post','weblizar'); ?></a></h2>
    
                <div class="enigma_tags">
                   <?php _e('Tags :&nbsp;','weblizar'); ?>
                   <a href="#"><?php _e('Bootstrap','weblizar'); ?></a>
                   <a href="#"><?php _e('HTML5','weblizar'); ?></a>
    
                </div>
                <p><?php _e('Add You Post To show post here..','weblizar'); ?></p>
                <a href="#" class="enigma_blog_read_btn"><i class="fa fa-plus-circle"></i><?php _e('Read More','weblizar'); ?></a>
                <div class="enigma_blog_thumb_footer">
                   <ul class="enigma_blog_thumb_date">
                      <li><i class="fa fa-user"></i><a href="#"><?php _e('By Admin','weblizar'); ?></a></li>
                      <li><i class="fa fa-clock-o"></i><?php _e(' November 9 2013','weblizar'); ?></li>
                      <li><i class="fa fa-comments-o"></i><a href="#"><?php _e('10','weblizar'); ?></a></li>
                   </ul>
                </div>
             </div>
             </div>
          <?php endif; ?>
    
       </div>
       <div class="enigma_carousel-navi">
                <div id="port-next" class="enigma_carousel-prev" ><i class="fa fa-arrow-left"></i></div>
                <div id="port-prev" class="enigma_carousel-next" ><i class="fa fa-arrow-right"></i></div>
       </div>
       </div>
    </div>

    It’s servicable on desktop, but I’m not real happy with the mobile response.

    https://www.jeremydeprisco.com/

    I have it set up to mouse over icon, show the search box, and user can type in. But on mobile (Android) this isn’t working well. Keyboard disappears, and it’s a bit glitchy.

    Thread Starter Jeremy dePrisco

    (@shivasongster)

    Duh, pretty simple. Thanks.

    Thread Starter Jeremy dePrisco

    (@shivasongster)

    That worked, thanks!

    This basically helped. I did some more tweaking. Not ideal, but it can work for now. Been learning a lot more about Bootstrap lately, and might go a different direction. Lynda.com is a great thing!

    <div class="enigma_blog_area ">
    <?php $wl_theme_options = weblizar_get_options();
    if($wl_theme_options['blog_title'] !='') { ?>
       <div class="container">
          <div class="row">
             <div class="col-sm-12">
                <div class="enigma_heading_title">
                   <h3><?php echo esc_attr($wl_theme_options['blog_title']); ?></h3>
                </div>
             </div>
          </div>
       </div>
       <?php } ?>
       <div class="container">
       <div class="row" id="enigma_blog_section">
       <?php    if ( have_posts()) :
             $posts_count =wp_count_posts()->publish;
             $args = array( 'post_type' => 'post','posts_per_page' => $posts_count ,'ignore_sticky_posts' => 1, 'posts_per_page' =>5);
             $post_type_data = new WP_Query( $args );
             while($post_type_data->have_posts()):
             $post_type_data->the_post(); ?>
             <div class="col-md-4 col-sm-12 scrollimation scale-in d2 pull-left">
             <div class="enigma_blog_thumb_wrapper">
                <div class="enigma_blog_thumb_wrapper_showcase">
                   <?php $img = array('class' => 'enigma_img_responsive');
                         if(has_post_thumbnail()):
                         the_post_thumbnail('home_post_thumb',$img);
                   endif; ?>
                   <div class="enigma_blog_thumb_wrapper_showcase_overlay">
                      <div class="enigma_blog_thumb_wrapper_showcase_overlay_inner ">
                         <div class="enigma_blog_thumb_wrapper_showcase_icons">
                            <a title="<?php the_title_attribute(); ?>" href="<?php the_permalink(); ?>"><i class="fa fa-link"></i></a>
                         </div>
                      </div>
                   </div>
                </div>
                <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
                <?php if(get_the_tag_list() != '') { ?>
                <p class="enigma_tags"><?php the_tags('Tags :&nbsp;', '', '<br />'); ?></p>
                <?php } ?>
                <?php the_excerpt( __( 'Read More' , 'weblizar' ) ); ?>
                <a href="<?php the_permalink(); ?>" class="enigma_blog_read_btn"><i class="fa fa-plus-circle"></i><?php _e('Read More','weblizar'); ?></a>
                <div class="enigma_blog_thumb_footer">
                   <ul class="enigma_blog_thumb_date">
                      <li><i class="fa fa-user"></i><a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php echo get_the_author(); ?></a></li>
                      <li><i class="fa fa-clock-o"></i>
                      <?php if ( ('d M  y') == get_option( 'date_format' ) ) : ?>
                      <?php echo get_the_date('F d ,Y'); ?>
                      <?php else : ?>
                      <?php echo get_the_date(); ?>
                      <?php endif; ?>
                      </li>
                      <li><i class="fa fa-comments-o"></i><?php comments_popup_link( '0', '1', '%', '', '-'); ?></li>
                   </ul>
                </div>
             </div>
             </div>
             <?php  endwhile;
             else : ?>
             <div class="col-md-4 col-sm-12 scrollimation scale-in d2 pull-left">
             <div class="enigma_blog_thumb_wrapper">
                <div class="enigma_blog_thumb_wrapper_showcase">
                   <img  alt="Enigma" src="<?php echo WL_TEMPLATE_DIR_URI ?>/images/wall/img(11).jpg">
                   <div class="enigma_blog_thumb_wrapper_showcase_overlay">
                      <div class="enigma_blog_thumb_wrapper_showcase_overlay_inner ">
                         <div class="enigma_blog_thumb_wrapper_showcase_icons">
                            <a title="Enigma" href="#"><i class="fa fa-link"></i></a>
                         </div>
                      </div>
                   </div>
                </div>
                <h2><a href="#"><?php _e('NO Post','weblizar'); ?></a></h2>
    
                <div class="enigma_tags">
                   <?php _e('Tags :&nbsp;','weblizar'); ?>
                   <a href="#"><?php _e('Bootstrap','weblizar'); ?></a>
                   <a href="#"><?php _e('HTML5','weblizar'); ?></a>
    
                </div>
                <p><?php _e('Add You Post To show post here..','weblizar'); ?></p>
                <a href="#" class="enigma_blog_read_btn"><i class="fa fa-plus-circle"></i><?php _e('Read More','weblizar'); ?></a>
                <div class="enigma_blog_thumb_footer">
                   <ul class="enigma_blog_thumb_date">
                      <li><i class="fa fa-user"></i><a href="#"><?php _e('By Admin','weblizar'); ?></a></li>
                      <li><i class="fa fa-clock-o"></i><?php _e(' November 9 2013','weblizar'); ?></li>
                      <li><i class="fa fa-comments-o"></i><a href="#"><?php _e('10','weblizar'); ?></a></li>
                   </ul>
                </div>
             </div>
             </div>
          <?php endif; ?>
    
       </div>
       <div class="enigma_carousel-navi">
                <div id="port-next" class="enigma_carousel-prev" ><i class="fa fa-arrow-left"></i></div>
                <div id="port-prev" class="enigma_carousel-next" ><i class="fa fa-arrow-right"></i></div>
       </div>
       </div>
    </div>

    Just wonder if Enigma can automatically support the search feature, and maybe even go a step further in allowing different config without the special steps we’ve had to go through. I’d actually prefer a search icon that expands into a full search box.

    What I have now seems bulky – would be nice if the box itself could have rounded edges, and maybe be a bit smaller.

    Managed to get Enigma to recognize my child theme searchform.php – also have better placement now. Interested in why theme doesn’t just support this out of the box.

    I am trying to do something very similar to this.

    My site:
    https://www.jeremydeprisco.com/

    I’m using this in my child theme copy of header.php:
    <?php get_search_form();?>

    I have the search box, but it is not formatted properly. So first issue is getting a stye that will work. Second issue is having Enigma recognize my child theme version of searchform.php – so far Enigma appears to ignore it.

    Thread Starter Jeremy dePrisco

    (@shivasongster)

    I’ve created a child theme and have begun to see if I can implement post formats:

    https://codex.www.ads-software.com/Post_Formats

    So far I can get the post format box to show up in the post editor, but there does’t seem to be any effect. My posts are still formatted with the default Enigma view, which isn’t what I want.

    I *think* the piece I am missing is some CSS, but I haven’t dug into this far enough yet. Just wanted to provide this update.

    Thread Starter Jeremy dePrisco

    (@shivasongster)

    Just looking for the WP standard post formatting option to be included here.

    Here’s an example:

    https://colorlabs.lemuel.netdna-cdn.com/wp-content/uploads/2014/01/WordPress-Post-Format.png

    Thread Starter Jeremy dePrisco

    (@shivasongster)

    I think so. I am going to monitor tis change, and I see the theme just got an update so if I have issues after, I will put it back in. Thanks!

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