• Using the Oxygen theme.

    Was advised to delete some inactive plugsin but go over zealous and have deleted something related to images;

    My front page “featured content” slider has been deactived and now the pictures just appear in a row.

    I’ve lost the image gallery lightbox option – pictures now open to a giatn size in a new browser where before they would just hover over the page when clicked on and you could flick through them

    any ideas what I’ve deleted plugin wise?

    thanks

Viewing 10 replies - 1 through 10 (of 10 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Do you remember which plugin controlled the slider?

    Thread Starter queen_sheba

    (@queen_sheba)

    hiya – as far as I was aware it was part of the theme

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Is your website online? If so, can I have a link to it?

    Thread Starter queen_sheba

    (@queen_sheba)

    Thread Starter queen_sheba

    (@queen_sheba)

    my posts still are selected as featured images – it’s just the front page slider not working

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Which version of oxygen do you have?

    Thread Starter queen_sheba

    (@queen_sheba)

    still need to download the newer one – is it as simple as that?

    Thread Starter queen_sheba

    (@queen_sheba)

    just done it now – it has made no difference

    Thread Starter queen_sheba

    (@queen_sheba)

    Here’s the code if it alludes to what should be activated to support the featured slider?

    <?php
    /**
    * Featured Content (slider)
    *
    */

    $args = array( ‘posts_per_page’ => 6, ‘meta_key’ => ‘_oxygen_post_location’, ‘meta_value’ => ‘featured’, ‘post__not_in’ => get_option( ‘sticky_posts’ ) );
    $loop = new WP_Query( $args );

    if ( $loop->have_posts() ) : ?>

    <div class=”featured-wrapper”>

    <div id=”featured-content”>

    <img class=”dummy <?php echo ( $loop->post_count == 1 ) ? ‘hidden’ : ”; ?>” src=”<?php echo get_template_directory_uri() . ‘/images/empty.gif’ ?>” alt=”” width=”750″ height=”380″ />

    <?php while ( $loop->have_posts() ) : $loop->the_post(); ?>

    <div class=”featured-post”>

    <?php if ( current_theme_supports( ‘get-the-image’ ) ) get_the_image( array( ‘meta_key’ => ‘Thumbnail’, ‘size’ => ‘featured-thumbnail’ ) ); ?>

    <?php echo apply_atomic_shortcode( ‘entry_title’, ‘[entry-title]’ ); ?>

    <?php echo apply_atomic_shortcode( ‘byline’, ‘<div class=”byline”>’ . __( ‘[entry-published]’, ‘oxygen’ ) . ‘</div>’ ); ?>

    </div> <!– .featured-post –>

    <?php endwhile; ?>

    <span id=”slider-prev” class=”slider-nav”>←</span>
    <span id=”slider-next” class=”slider-nav”>→</span>

    </div><!– #featured-content –>

    <div id=”slider-nav”>

    <ul id=”slide-thumbs”>

    <?php $slidecount = 1;
    $args = array( ‘meta_key’ => ‘_oxygen_post_location’, ‘meta_value’ => ‘featured’, ‘post__not_in’ => get_option( ‘sticky_posts’ ) );

    while ( $loop->have_posts() ) : $loop->the_post(); ?>

    <li class=”<?php echo ( $slidecount == 6 ) ? ‘last’ : ”; ?>”>

    <?php if ( current_theme_supports( ‘get-the-image’ ) ) get_the_image( array( ‘meta_key’ => ‘Thumbnail’, ‘size’ => ‘slider-nav-thumbnail’ ) ); ?>

    <?php $slidecount++; ?>

    <?php endwhile; ?>

    </div><!– #slider-nav–>

    </div><!– .featured-wrapper–>

    <?php endif; ?>

    Thread Starter queen_sheba

    (@queen_sheba)

    Hi Andrew

    Did you figure out what was going wrong here?

    take care
    Sarah

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Deleted some plugin – can't work out which one’ is closed to new replies.