HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux vmi1674223.contaboserver.net 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: root (0)
PHP: 7.4.3-4ubuntu2.22
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/onlineshop/wp-content/themes/nautica/vc_templates/engo_pricing.php
<?php

$atts = vc_map_get_attributes( $this->getShortcode(), $atts );
extract( $atts );

 $class = $featured ? "featured-plan pricing-highlight": '';
 $class .= ' ' . $el_class;
 //var_dump($content);
?>
<div class="pricing pricing-<?php echo esc_attr($skin); ?> <?php echo esc_attr($class); ?>">
    <div class="pricing-header">
        <h4 class="plan-title">
            <span><?php echo  esc_html($title); ?></span>
        </h4>                        
        <?php if($skin == 'v2'){  ?>
            <div class="plan-price">
                <div class="plan-price-body">
                    <sup class="plan-currency"><?php echo esc_html($currency); ?></sup>
                    <span class="plan-figure"><?php echo esc_html($price); ?></span>
                    <p><?php echo esc_html($period); ?></p>
                </div>
            </div>    
        <?php }else{ ?>
            <div class="plan-price">
                <sup class="plan-currency"><?php echo esc_html($currency); ?></sup> 
                <span class="plan-figure"><?php echo esc_html($price); ?></span>
                <p><?php echo esc_html($period); ?></p>
            </div>
        <?php } ?>    

    </div>
    <div class="pricing-body">
        <div class="plain-info">
           <?php echo do_shortcode($content); ?>
        </div>
    </div>
    <?php if($skin == 'v2' || $skin == 'v3'){ ?>
    <div class="pricing-footer">
        <a class="btn btn-lg btn-block btn-inverse btn-primary radius-6x" href="<?php echo esc_html($link); ?>"><?php echo  esc_html($linktitle); ?></a>                        
    </div>
    <?php }else{ ?>
     <div class="pricing-footer">
        <a class="btn btn-lg btn-block btn-inverse btn-primary radius-6x" href="<?php echo esc_html($link); ?>"><?php echo  esc_html($linktitle); ?></a>                        
     </div>
     <?php } ?>
</div>