Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/blueversion/wp-content/themes/motors/ |
Upload File : |
<?php
if ( apply_filters( 'stm_is_rental_two', false ) ) {
if ( is_checkout() || is_cart() ) {
do_action( 'stm_mcr_reservation_archive' );
} else {
get_header();
echo '<div class="container"><div class="page-content-wrap">';
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
the_content();
endwhile;
endif;
echo '</div></div>';
get_footer();
}
} elseif ( apply_filters( 'stm_is_ulisting_layout', false ) ) {
get_header();
?>
<div class="container">
<?php
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
the_content();
endwhile;
endif;
?>
</div>
<?php
get_footer();
} else {
if ( stm_is_rental() ) {
if ( is_checkout() || is_cart() ) {
get_template_part( 'partials/rental/reservation', 'archive' );
return false;
}
}
get_header();
if ( ! stm_is_auto_parts() && ! is_front_page() ) {
get_template_part( 'partials/page_bg' );
get_template_part( 'partials/title_box' );
}
do_action( 'stm_wcmap_title_box' );
// Get compare page.
$compare_page = null;
if ( ! stm_motors_is_unit_test_mod() ) {
$compare_page = stm_me_get_wpcfto_mod( 'compare_page', 156 );
}
$compare_page = stm_motors_wpml_is_page( $compare_page );
if ( ! empty( $compare_page ) && get_the_ID() === intval( $compare_page ) ) :
$vc_status = get_post_meta( get_the_ID(), '_wpb_vc_js_status', true );
$elementor_status = get_post_meta( get_the_ID(), '_elementor_edit_mode', true );
if ( 'true' === $vc_status || 'builder' === $elementor_status ) {
if ( have_posts() ) {
echo '<div class="container">';
while ( have_posts() ) :
the_post();
the_content();
endwhile;
echo '</div>';
}
} else {
get_template_part( 'partials/compare' );
}
else :
?>
<div class="container">
<?php
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
the_content();
endwhile;
endif;
?>
<?php
wp_link_pages(
array(
'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'motors' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
'pagelink' => '<span class="screen-reader-text">' . __( 'Page', 'motors' ) . ' </span>%',
'separator' => '<span class="screen-reader-text">, </span>',
)
);
?>
<div class="clearfix">
<?php
if ( comments_open() || get_comments_number() ) {
comments_template();
}
?>
</div>
</div>
<?php
endif;
get_footer();
}