• Resolved Richard Slade

    (@raslade)


    Hello Guido

    I’ve got another question and hopefully this is an easy one.

    I’d like to move

    <p class="vsel-meta-link"><a href="#" target="_self">More info</a></p>

    so that the output link appears below

    <div class="vsel-image-info">

    I’ve tried adjusting some of the plugin files but nothing is happening?

    Thanks
    Richard

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Richard Slade

    (@raslade)

    Hiya

    It’s OK i’ve found it now.

    For anyone else looking to solve, in vsel-upcoming.php move

    if (!empty($event_link)){
    if ( ($event_link_hide == 'yes') && ($widget_link == 'yes') ) {
    $output .= '<p class="vsel-meta-link vsel-page-hide vsel-widget-hide">';
    } elseif ( ($event_link_hide != 'yes') && ($widget_link == 'yes') ) {
    $output .= '<p class="vsel-meta-link vsel-widget-hide">';
    } elseif ( ($event_link_hide == 'yes') && ($widget_link != 'yes') ) {
    $output .= '<p class="vsel-meta-link vsel-page-hide">';
    } else {
    $output .= '<p class="vsel-meta-link">';
    }
    $output .= sprintf( '<a href="%1$s"'. $link_target .'>%2$s</a>', esc_url($event_link), esc_attr($event_link_label) ); 
    $output .= '</p>';
    }

    to below

    $output .= $content = apply_filters( 'the_excerpt', get_the_excerpt() ); 
    }
    • This reply was modified 7 years, 8 months ago by Richard Slade.
    Plugin Author Guido

    (@guido07111975)

    Hi,

    So you’ve moved the More Info from the meta section to the bottom of your textual section? As long as this is relocated inside the loop, so before the endwhile; it should not be a problem.

    Guido

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Move more info to below info’ is closed to new replies.