...........................................................................................................................................................................................................................................................................................................................@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%PDF-1.5 MRK IS HERE %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 65.108.66.160 / Your IP : 216.73.217.50 Web Server : Apache System : Linux srv16.asso.com.ar 4.18.0-553.123.1.el8_10.x86_64 #1 SMP Tue May 5 04:00:43 EDT 2026 x86_64 User : alasaweborg ( 1047) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/alasaweborg/public_html/wp-content/themes/greenture/ |
Upload File : |
<?php $post = greenture_get_global_var( 'post' );
$post_id = get_the_ID();
$post_name = $post->post_name;
$overlay_class = $parallax_class = '';
// Get Parallax Options
$section_header_status = get_post_meta( $post_id, 'greenture_section_header_status', true );
$section_title = get_post_meta( $post_id, 'greenture_section_title', true );
$section_slogan = get_post_meta( $post_id, 'greenture_section_slogan', true);
$parallax_status = get_post_meta( $post_id, 'greenture_parallax_status', true);
$parallax_bg_overlay = get_post_meta( $post_id, 'greenture_parallax_bg_overlay', true);
$overlay_pattern_status = get_post_meta( $post_id, 'greenture_overlay_pattern_status', true);
$section_overlay_color = get_post_meta( $post_id, 'greenture_section_overlay_color', true);
$overlay_pattern_style = get_post_meta( $post_id, 'greenture_overlay_pattern_style', true);
if( $parallax_bg_overlay == 'yes' && $overlay_pattern_status == 'yes' ) {
$overlay_class = ' ' . $overlay_pattern_style . ' parallax-overlay';
}
if( $overlay_class != '' && $overlay_pattern_style != '' ) {
$overlay_class .= ' parallax-overlay-pattern';
}
if( $overlay_class != '' && $section_overlay_color != '' ) {
$overlay_class .= ' parallax-overlay-color';
}
if( $parallax_status == 'yes') {
$parallax_class = ' parallax-background parallax-section';
} else {
$parallax_class = ' normal-background';
} ?>
<div id="section-<?php echo esc_attr( $post_name ); ?>" class="page-id-<?php echo esc_attr( $post_id ); ?> page-<?php echo esc_attr( $post_name ); ?> fullwidth-section section-page <?php echo esc_attr( $parallax_class ); ?><?php echo esc_attr( $overlay_class ); ?>">
<div id="page-<?php echo esc_attr( $post_name ); ?>" class="parallax-page-inner">
<?php if( $section_header_status == 'show' && ( $section_title != '' || $section_slogan != '' ) ) { ?>
<div class="container tpath-parallax-header">
<div class="parallax-header">
<h2 class="parallax-title"><?php echo do_shortcode( $section_title ); ?></h2>
<?php if( !empty( $section_slogan ) ) { ?>
<div class="parallax-desc"><?php echo do_shortcode( $section_slogan ); ?></div>
<?php } ?>
</div>
</div>
<?php } ?>
<div class="entry-content parallax-content">
<?php the_content(); ?>
</div>
</div>
</div>