abba_mika
Forum Replies Created
-
Hi Josh, Thank you so much for your help. I have been able to substitute the original content for the slider. Link here: https://repenso.com/identity/ but I have been unable to figure out how to add the captions (content) ect. to the slider as you suggested. Could you provide a little more incite as to how I would go about this? I have added <p><?php the_title(); ?></p> to the script, but not sure where to add all of this (the captions content):
<?php $options = get_option('responsive_theme_options'); // First let's check if headline was set if ($options['home_headline']) { echo '<h1 class="featured-title">'; echo $options['home_headline']; echo '</h1>'; // If not display dummy headline for preview purposes } else { echo '<h1 class="featured-title">'; echo __('Hello, World!','responsive'); echo '</h1>'; } ?> <?php $options = get_option('responsive_theme_options'); // First let's check if headline was set if ($options['home_subheadline']) { echo '<h2 class="featured-subtitle">'; echo $options['home_subheadline']; echo '</h2>'; // If not display dummy headline for preview purposes } else { echo '<h2 class="featured-subtitle">'; echo __('Your H2 subheadline here','responsive'); echo '</h2>'; } ?> <?php $options = get_option('responsive_theme_options'); // First let's check if content is in place if (!empty($options['home_content_area'])) { echo '<p>'; echo do_shortcode($options['home_content_area']); echo '</p>'; // If not let's show dummy content for demo purposes } else { echo '<p>'; echo __('Your title, subtitle and this very content is editable from Theme Option. Call to Action button and its destination link as well. Image on your right can be an image or even YouTube video if you like.','responsive'); echo '</p>'; } ?> <?php $options = get_option('responsive_theme_options'); ?> <?php if ($options['cta_button'] == 0): ?> <div class="call-to-action"> <?php $options = get_option('responsive_theme_options'); // First let's check if headline was set if (!empty($options['cta_url']) && $options['cta_text']) { echo '<a href="'.$options['cta_url'].'" class="red button">'; echo $options['cta_text']; echo '</a>'; // If not display dummy headline for preview purposes } else { echo '<a href="#nogo" class="red button">'; echo __('Call to Action','responsive'); echo '</a>'; } ?> </div><!-- end of .call-to-action --> <?php endif; ?>
Thank you!
Yes, all correct. No need for the additional image to the right…the slide show would be the image. Thanks again!
I ideally wanted to take it a step further and have the slider load new text, button and image with each fade…But I think that may be too complicated to create. So what you wrote is correct. Thanks for the help! Sorry to make this so complicated.
Hi there,
I am looking to do something VERY similar with responsive and meteor_slideshow…the difference being I want to keep the information like text, and button, and remove just the right image. I want to then replace the #fff background with the slide show. SO, the background is actually a recycling bunch of pictures instead of a solid background. Is this possible? THANKS!