| Server IP : 216.250.13.251 / Your IP : 216.73.217.37 Web Server : nginx/1.24.0 System : Linux gunay 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : root ( 0) PHP Version : 7.4.33 Disable Function : 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, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/gunay/wp-content/themes/rttheme19/product-contents/ |
Upload File : |
<?php
/**
* The template for displaying product content within loops.
*
* @author RT-Themes
*
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
global $rt_product_post_values, $rt_product_list_atts;
extract($rt_product_post_values);
extract($rt_product_list_atts);
?>
<div class="product_item_holder">
<?php if( ! empty( $featured_image_url ) ):?>
<div class="featured_image">
<!-- product image -->
<div class="featured_image">
<a href="<?php echo esc_url($permalink);?>" title="<?php echo esc_attr($title); ?>" rel="bookmark" class="imgeffect link"><?php echo wp_kses_post( $thumbnail_image_output ); ?></a>
</div>
</div>
<?php endif;?>
<?php do_action( "rt_before_product_info" ); ?>
<?php if ( ( $display_titles !== "false" && $title !== "false" ) || ( ! empty( $short_desc ) && $display_descriptions !== "false" ) || ( $display_price !== "false" ) ): ?>
<div class="product_info">
<?php if ( $display_titles !== "false" ): ?>
<!-- title-->
<h5 class="clean_heading"><a href="<?php echo esc_url($permalink); ?>" title="<?php echo esc_attr($title); ?>" rel="bookmark"><?php echo wp_kses_post( $title ); ?></a></h5>
<?php endif;?>
<!-- text-->
<?php
echo ! empty( $short_desc ) && $display_descriptions !== "false" ? sprintf( '<p>%s</p>', do_shortcode($short_desc) ) : "" ;
?>
<?php
echo '<div class="product_info_footer clearfix">';
if ( $display_price !== "false" ){
// call product price - hooked in /rt-framework/functions/theme_functions.php
do_action( "rt_product_price", array( "regular_price" => $regular_price, "sale_price" => $sale_price ) );
}
//details button
echo '<div class="action_buttons"><a href="'.esc_url($permalink).'" title="'.esc_attr($title).'" class="details icon-angle-right">'.esc_html_x("Details",'Frontend Text',"rt_theme").'</a></div>';
echo '</div>';
?>
</div>
<?php endif;?>
<?php do_action( "rt_after_product_info" ); ?>
</div>