sharkbone
Forum Replies Created
-
Thanks for the response. I managed to get it solved by activating another plugin that had the missing module.
https://demo.ohmyproperty.com/pastsale-property-details/?key=CantonmentsAppreciate your help
- This reply was modified 4 years, 9 months ago by sharkbone.
Thanks. Will give that a try.
I will be more interested in redirecting the links from Visual to another page with the cube portfolio Gallery Categories. I am just using visual portfolio to present the various Categories on my home page since it has all that i need to present it but i still need to link it back to this gallery source since that was used from the onset. Here is a documentation for cube https://www.derecho.unam.mx/estudiantes/pagina/documentation/#options . I might need some JS customisation example on how to link to this gallery source, i will then take it from there. Appreciate your response.
Josh found it and replaced with slider code. Its up and running. Thanks a million.
Well to make things easier this is how the whole home page template looks like
`<?php
/**
* The Page template for our theme
*
* Template Name: Startseite
*
* @package Blanko GmbH
* @subpackage AVANDiL
* @since AVANDiL 2014.01
*/
get_header();
?>
<?php
if(have_posts()):
while(have_posts()): the_post(); $meta = get_post_meta(get_the_id()); global $post;
if( has_post_thumbnail() ) {
$hero_url = wp_get_attachment_image_src( get_post_thumbnail_id(), ‘hero’ );
$hero = ‘style=”background-image: url(‘.$hero_url[0].’);”‘;
}
?>
<div class=”bg-on”>
<div class=”content content_start”>
<section class=”hero”>
<div class=”wrapper”>
<div class=”hero_text”>
<h2><?php echo $meta[‘avandil_startseite_title1’][0]; ?></h2>
<h1><?php echo $meta[‘avandil_startseite_title2’][0]; ?></h1>
<h3><?php echo $meta[‘avandil_startseite_title3’][0]; ?><h3>
</div>
<?php the_post_thumbnail(); ?>
</div>
</section>
<section class=”content_alternate content_features”>
<div class=”wrapper”>
-
<h2><?php echo $meta[‘avandil_startseite_box1_title’][0]; ?></h2>
<?php echo wpautop( $meta[‘avandil_startseite_box1_text’][0] ); ?>
-
<h2><?php echo $meta[‘avandil_startseite_box2_title’][0]; ?></h2>
<?php echo wpautop( $meta[‘avandil_startseite_box2_text’][0] ); ?>
-
<h2><?php echo $meta[‘avandil_startseite_box3_title’][0]; ?></h2>
<?php echo wpautop( $meta[‘avandil_startseite_box3_text’][0] ); ?>
</div>
</section>
<section class=”content_alternate content_info”>
<div class=”wrapper”>
<h4><?php echo nl2br( $meta[‘avandil_startseite_abschluss’][0] ); ?></h4>
</div></section>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
<?php get_footer(); ?>
The post thumbnail is right underneath the hero_text is that where the slider code goes? Thought i tried that already. Not too sure though but will first wait for your feedback
Thanks for the response. This the page https://www.avandil.com . Right on the homepage you will find the featured thumbnail image. Thanks