• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Adventure Tours - WordPress Tour/Travel Theme

Adventure Tours - WordPress Tour/Travel Theme v5.1.1

No permission to download

Babak

Well-known member
Staff member
Administrator
May 24, 2018
80,863
149,526
120
32
Babak submitted a new resource:

Adventure Tours - WordPress Tour/Travel Theme - Download Free Adventure Tours - WordPress Tour/Travel Theme Nulled ThemeForest 12781942

Adventure Tours - WordPress TourTravel Theme.jpg
Download Free Adventure Tours - WordPress Tour/Travel Theme Nulled ThemeForest 12781942
Adventure Tours is a Wordpress theme developed for travel agencies and tour operators of any size. It offers a lot of flexibility and possibilities in setting up tours. You can indicate as many tour attributes as you like. These attributes can later be used for setting up a search form. Tour rating system allows your customers to rate...

Read more about this resource...
 
Babak updated Adventure Tours - WordPress Tour/Travel Theme with a new update entry:

Adventure Tours v3.5.5

Download Adventure Tours v3.5.5 - WordPress Tour/Travel Theme Nulled Free
Version 3.5.5
- fixed error in less processing library for PHP 7.2.X;
- fixed view files according to WooCommerce 3.5.1;
- updated WPBakery Page Builder to version 5.5.5;
- small fixes and improvements.
Version 3.5.4 - fixed view files according to WooCommerce 3.5.0;
- updated Slider Revolution to version 5.4.8;
- updated Data types for Adventure Tours theme to version 2.3.1;
- fixes and improvements.

Read the rest of this update entry...
 
Hi. Babak: Can you give instructions on how to change the price per person on this topic? More specifically, I have two categories of trips, one per person and one per group. There is a need for the price of one text for this travel category that the price is per group
 
Ok, hey can you share the tour page source code you used? Mine doesn't look good on mobile. You must've used other short codes.
<?php
/**
* Shortcode [tours_list] view list.
* For more detailed list see list of shortcode attributes.
*
* @var string $title
* @var boolean $title_underline
* @var string $sub_title
* @var string $image_size
* @var string $image_size_mobile
* @var string $btn_more_text text for more button
* @var string $btn_more_link url address for more button
* @var string $description_words_limit limit for words that should be outputed for each item
* @var string $tour_category
* @var string $tour_category_ids
* @var boolean $show_categories
* @var string $tour_ids
* @var string $show
* @var int $number
* @var string $css_class
* @var string $orderby
* @var string $order
* @var string $view
* @var array $items collection of tours that should be rendered.
*
* @author Themedelight
* @package Themedelight/AdventureTours
* @version 3.0.4
*/

if ( ! $items ) {
return;
}

if ( $image_size_mobile && wp_is_mobile() ) {
$image_size = $image_size_mobile;
}

$render_ratings = get_option( 'woocommerce_enable_review_rating' ) === 'yes';
?>

<div class="atlist<?php if ( $css_class ) echo ' ' . esc_attr( $css_class ); ?>">
<?php if ( $btn_more_link && ( $title || $sub_title ) ) { ?>
<div class="title-block-link title-block-link--with-button">
<div class="title-block-link__text-wrap">
<?php if ( $title ) { ?>
<h3 class="title-block-link__title"><?php echo esc_html( $title ); ?></h3>
<?php } ?>
<?php if ( $sub_title ) { ?>
<div class="title-block-link__description"><?php echo esc_html( $sub_title ); ?></div>
<?php } ?>
</div>
<div class="title-block-link__button-wrap">
<a href="<?php echo esc_url( $btn_more_link ); ?>" class="atbtn atbtn--rounded"><?php echo esc_html( $btn_more_text ); ?><i class="atbtn__icon atbtn__icon--right fa fa-long-arrow-right"></i></a>
</div>
</div>
<?php } elseif ( $title || $sub_title ) { ?>
<?php echo do_shortcode( '[title text="' . $title . '" subtitle="' . $sub_title . '" size="big" position="center" decoration="on" underline="' . $title_underline . '" style="dark"]' ); ?>
<?php } ?>
<?php foreach ( $items as $item_index => $item ) : ?>
<?php
$item_post = adventure_tours_get_post_for_product( $item );
setup_postdata( $GLOBALS['post']=$item_post );// addon for WooCommerce Jetapack plugin

$item_id = $item->get_id();
$permalink = get_permalink( $item_id );
$item_title = $item->get_title();
$thumb_html = adventure_tours_get_the_post_thumbnail( $item_id, $image_size );
$price_html = $item->get_price_html();

ob_start();
adventure_tours_render_product_attributes(array(
'before' => '<div class="item-attributes item-attributes--style2">',
'after' => '</div>',
'before_each' => '<div class="item-attributes__item">',
'after_each' => '</div>',
'limit' => 3,
), $item_id );
$attributes = ob_get_clean();
?>
<div class="atlist__item margin-bottom">
<div class="atlist__item__image">
<?php printf('<a class="atlist__item__image-wrap" href="%s">%s</a>',
esc_url( $permalink ),
$thumb_html ? $thumb_html : adventure_tours_placeholder_img( $image_size )
); ?>
<?php if ( $show_categories ) {
adventure_tours_render_tour_icons(array(
'before' => '<div class="atlist__item__icons">',
'after' => '</div>',
), $item_id);
} ?>
<?php adventure_tours_renders_tour_badge( array(
'tour_id' => $item_id,
'wrap_css_class' => 'atlist__item__angle-wrap',
'css_class' => 'atlist__item__angle',
) );?>
</div>
<div class="atlist__item__content<?php if ( ! $attributes ) { echo ' atlist__item__content--full-height'; }; ?>">
<div class="atlist__item__content__items">
<div class="atlist__item__content__item">
<h2 class="atlist__item__title"><a href="<?php echo esc_url( $permalink ); ?>"><?php echo esc_html( $item_title ); ?></a></h2>
<?php if ( $description_words_limit > 0 ) { ?>
<div class="atlist__item__description"><?php echo adventure_tours_get_short_description( $item_post, $description_words_limit ); ?></div>
<?php } ?>
</div>
<div class="atlist__item__content__item atlist__item__content__item--alternative">
<?php if ( $render_ratings && $item->get_rating_count() > 0 ) {
$review_count = $item->get_review_count();
$average = $item->get_average_rating();

adventure_tours_renders_stars_rating( $average, array(
'before' => '<div class="atlist__item__rating">',
'after' => '</div>',
) );
echo '<div class="atlist__item__rating-value">' . $average . ' / ' . sprintf( _n( '1 review', '%s reviews', $review_count, 'adventure-tours' ), $review_count ) . '</div>';
} ?>
<?php if ( $price_html ) {
printf( '<div class="atlist__item__price%s"><a href="%s">%s</a></div>',
$item->is_variable_tour() ? ' atlist__item__price--variable' : '',
esc_url( $permalink ),
$price_html
);
} ?>
<?php
$label_text = apply_filters( 'adventure_tours_list_price_decoration_label', esc_html__( 'inimese kohta', 'adventure-tours' ), $item );
if ( $label_text ) {
printf('<div class="atlist__item__price-label">%s</div>', esc_html( $label_text ) );
}
?>
<div class="atlist__item__read-more"><a href="<?php echo esc_url( $permalink ); ?>" class="atbtn atbtn--small atbtn--rounded atbtn--light"><?php esc_html_e( 'view tour', 'adventure-tours' ); ?></a></div>
</div>
</div>
<?php if ( $attributes ) {
printf( '<div class="atlist__item__attributes">%s</div>', $attributes );
} ?>
</div>
</div>
<?php endforeach; ?>
<?php wp_reset_postdata();// addon for WooCommerce Jetapack plugin ?>
</div>

Do you mean that? per person I made a bold
 
<?php
/**
* Shortcode [tours_list] view list.
* For more detailed list see list of shortcode attributes.
*
* @var string $title
* @var boolean $title_underline
* @var string $sub_title
* @var string $image_size
* @var string $image_size_mobile
* @var string $btn_more_text text for more button
* @var string $btn_more_link url address for more button
* @var string $description_words_limit limit for words that should be outputed for each item
* @var string $tour_category
* @var string $tour_category_ids
* @var boolean $show_categories
* @var string $tour_ids
* @var string $show
* @var int $number
* @var string $css_class
* @var string $orderby
* @var string $order
* @var string $view
* @var array $items collection of tours that should be rendered.
*
* @author Themedelight
* @package Themedelight/AdventureTours
* @version 3.0.4
*/

if ( ! $items ) {
return;
}

if ( $image_size_mobile && wp_is_mobile() ) {
$image_size = $image_size_mobile;
}

$render_ratings = get_option( 'woocommerce_enable_review_rating' ) === 'yes';
?>

<div class="atlist<?php if ( $css_class ) echo ' ' . esc_attr( $css_class ); ?>">
<?php if ( $btn_more_link && ( $title || $sub_title ) ) { ?>
<div class="title-block-link title-block-link--with-button">
<div class="title-block-link__text-wrap">
<?php if ( $title ) { ?>
<h3 class="title-block-link__title"><?php echo esc_html( $title ); ?></h3>
<?php } ?>
<?php if ( $sub_title ) { ?>
<div class="title-block-link__description"><?php echo esc_html( $sub_title ); ?></div>
<?php } ?>
</div>
<div class="title-block-link__button-wrap">
<a href="<?php echo esc_url( $btn_more_link ); ?>" class="atbtn atbtn--rounded"><?php echo esc_html( $btn_more_text ); ?><i class="atbtn__icon atbtn__icon--right fa fa-long-arrow-right"></i></a>
</div>
</div>
<?php } elseif ( $title || $sub_title ) { ?>
<?php echo do_shortcode( '[title text="' . $title . '" subtitle="' . $sub_title . '" size="big" position="center" decoration="on" underline="' . $title_underline . '" style="dark"]' ); ?>
<?php } ?>
<?php foreach ( $items as $item_index => $item ) : ?>
<?php
$item_post = adventure_tours_get_post_for_product( $item );
setup_postdata( $GLOBALS['post']=$item_post );// addon for WooCommerce Jetapack plugin

$item_id = $item->get_id();
$permalink = get_permalink( $item_id );
$item_title = $item->get_title();
$thumb_html = adventure_tours_get_the_post_thumbnail( $item_id, $image_size );
$price_html = $item->get_price_html();

ob_start();
adventure_tours_render_product_attributes(array(
'before' => '<div class="item-attributes item-attributes--style2">',
'after' => '</div>',
'before_each' => '<div class="item-attributes__item">',
'after_each' => '</div>',
'limit' => 3,
), $item_id );
$attributes = ob_get_clean();
?>
<div class="atlist__item margin-bottom">
<div class="atlist__item__image">
<?php printf('<a class="atlist__item__image-wrap" href="%s">%s</a>',
esc_url( $permalink ),
$thumb_html ? $thumb_html : adventure_tours_placeholder_img( $image_size )
); ?>
<?php if ( $show_categories ) {
adventure_tours_render_tour_icons(array(
'before' => '<div class="atlist__item__icons">',
'after' => '</div>',
), $item_id);
} ?>
<?php adventure_tours_renders_tour_badge( array(
'tour_id' => $item_id,
'wrap_css_class' => 'atlist__item__angle-wrap',
'css_class' => 'atlist__item__angle',
) );?>
</div>
<div class="atlist__item__content<?php if ( ! $attributes ) { echo ' atlist__item__content--full-height'; }; ?>">
<div class="atlist__item__content__items">
<div class="atlist__item__content__item">
<h2 class="atlist__item__title"><a href="<?php echo esc_url( $permalink ); ?>"><?php echo esc_html( $item_title ); ?></a></h2>
<?php if ( $description_words_limit > 0 ) { ?>
<div class="atlist__item__description"><?php echo adventure_tours_get_short_description( $item_post, $description_words_limit ); ?></div>
<?php } ?>
</div>
<div class="atlist__item__content__item atlist__item__content__item--alternative">
<?php if ( $render_ratings && $item->get_rating_count() > 0 ) {
$review_count = $item->get_review_count();
$average = $item->get_average_rating();

adventure_tours_renders_stars_rating( $average, array(
'before' => '<div class="atlist__item__rating">',
'after' => '</div>',
) );
echo '<div class="atlist__item__rating-value">' . $average . ' / ' . sprintf( _n( '1 review', '%s reviews', $review_count, 'adventure-tours' ), $review_count ) . '</div>';
} ?>
<?php if ( $price_html ) {
printf( '<div class="atlist__item__price%s"><a href="%s">%s</a></div>',
$item->is_variable_tour() ? ' atlist__item__price--variable' : '',
esc_url( $permalink ),
$price_html
);
} ?>
<?php
$label_text = apply_filters( 'adventure_tours_list_price_decoration_label', esc_html__( 'inimese kohta', 'adventure-tours' ), $item );
if ( $label_text ) {
printf('<div class="atlist__item__price-label">%s</div>', esc_html( $label_text ) );
}
?>
<div class="atlist__item__read-more"><a href="<?php echo esc_url( $permalink ); ?>" class="atbtn atbtn--small atbtn--rounded atbtn--light"><?php esc_html_e( 'view tour', 'adventure-tours' ); ?></a></div>
</div>
</div>
<?php if ( $attributes ) {
printf( '<div class="atlist__item__attributes">%s</div>', $attributes );
} ?>
</div>
</div>
<?php endforeach; ?>
<?php wp_reset_postdata();// addon for WooCommerce Jetapack plugin ?>
</div>

Do you mean that? per person I made a bold
the bold option, didn't it enabled by default?
 
Version 3.5.6 (30 January 19)

- fixed view files according to WooCommerce 3.5.3;
- updated WPBakery Page Builder to version 5.6;
- updated Slider Revolution to version 5.4.8.1;
- small fixes and improvements.
 
Version 3.5.7

- updated Slider Revolution to version 5.4.8.2;
- small fixes and improvements.
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock