Hi @marceljm, thanks for response.
1) I need the shortcode for easy implementation on my theme, i put them in exact location, replacing the local image field in my theme.
2) I do not need a slider, i need only put two different URL in two different location, i’m going crazy, your plugin is the best solution but not have this features that I wrote
the theme i’m using is this, if you need: Amy Movie
I have this structure for big Banner:
<section id="amy-page-header" class="<?php echo esc_attr( $class ); ?> <?php echo esc_attr( $movieclass ); ?>">
<?php
if ( is_singular( 'amy_movie' ) ) {
echo amy_movie_get_banner( $post_id, 'full' );
} else if ( is_singular( 'amy_cinema' ) ) {
$arr = get_post_meta( $post_id, '_cinema_block_options', true );
echo '<div class="amy-page-cinema-title">';
if ( isset( $arr['cinema_banner'] ) ) {
$image = wp_get_attachment_image( $arr['cinema_banner'], 'full' );
echo $image;
}
echo '</div>';
and this for poster:
<div class="entry-thumb">
<?php echo amy_movie_get_poster( $post->ID, array( '360', '618' ) ); ?>
</div>
-
This reply was modified 7 years, 6 months ago by
danilos9.
-
This reply was modified 7 years, 6 months ago by
danilos9.