| Server IP : 27.254.66.5 / Your IP : 216.73.217.39 Web Server : Apache/2 System : Linux cs82.hostneverdie.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64 User : technic2 ( 1951) PHP Version : 7.4.30 Disable Function : apache_child_terminate, apache_setenv, define_syslog_variables, escapeshellarg, escapeshellcmd,exec, fp, fput, highlight_file, ini_alter, ini_restore, inject_code, passthru,phpAds_remoteInfo, phpAds_XmlRpc,phpAds_xmlrpcDecode, phpAds_xmlrpcEncode, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid,posix_setuid, posix_setuid, posix_uname,proc_open,proc_close, proc_get_status, proc_nice, proc_terminate, shell_exec, syslog, system, xmlrpc_entity_decode, show_source,sleep,pcntl_exec,virtual,suexec,dbmopen,dl,symlink,disk_free_space,diskfreespace,leak MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/technic2/public_html/old-website/wp-content/themes/synapse/framework/ |
Upload File : |
<?php
/*
** WooCommerce Compatibility File for Synapse Theme
** Created by Rohit Tripathi, Rohitink.com (c) 2015
** @package synapse
*/
// Remove each style one by one
add_filter( 'woocommerce_enqueue_styles', 'synapse_dequeue_woocommerce_styles' );
function synapse_dequeue_woocommerce_styles( $enqueue_styles ) {
unset( $enqueue_styles['woocommerce-general'] ); // Remove the gloss
//unset( $enqueue_styles['woocommerce-layout'] ); // Remove the layout
//unset( $enqueue_styles['woocommerce-smallscreen'] ); // Remove the smallscreen optimisation
return $enqueue_styles;
}
/**
* Set Default Thumbnail Sizes for Woo Commerce Product Pages, on Theme Activation
*/
global $pagenow;
if ( is_admin() && isset( $_GET['activated'] ) && $pagenow == 'themes.php' )
add_action( 'init', 'synapse_woocommerce_image_dimensions', 1 );
/**
* Define image sizes
*/
function synapse_woocommerce_image_dimensions() {
$catalog = array(
'width' => '600', // px
'height' => '600', // px
'crop' => 1 // true
);
$single = array(
'width' => '600', // px
'height' => '600', // px
'crop' => 1 // true
);
$thumbnail = array(
'width' => '600', // px
'height' => '600', // px
'crop' => 0 // false
);
// Image sizes
update_option( 'shop_catalog_image_size', $catalog ); // Product category thumbs
update_option( 'shop_single_image_size', $single ); // Single product image
update_option( 'shop_thumbnail_image_size', $thumbnail ); // Image gallery thumbs
}
//Custom Hooking for Product Loop Page Items.
function synapse_before_wc_title() {
echo "<div class='product-desc'>";
}
add_action('woocommerce_before_shop_loop_item_title', 'synapse_before_wc_title', 15);
function synapse_after_wc_title() {
echo "</div>";
}
add_action('woocommerce_after_shop_loop_item_title', 'synapse_after_wc_title');
/**
* Remove the "shop" title on the main shop page
*/
function synapse_woo_hide_page_title() {
return false;
}
add_filter( 'woocommerce_show_page_title' , 'synapse_woo_hide_page_title' );
/**
* Change the Breadcrumb
*/
add_filter( 'woocommerce_breadcrumb_defaults', 'synapse_change_breadcrumb_delimiter' );
function synapse_change_breadcrumb_delimiter( $defaults ) {
// Change the breadcrumb delimeter from '/' to '>>'
$defaults['delimiter'] = ' <i class="fa fa-angle-right"></i> ';
return $defaults;
}
/*
* WooCommerce Output Wrappers for for Single Product(single-product.php) and Product Archives(archive-product.php)
*/
add_action('woocommerce_before_main_content', 'synapse_single_custom_header', 1 );
function synapse_single_custom_header() {
if ( apply_filters( 'woocommerce_show_page_title', true ) ) : ?>
<div class="header-title col-md-12">
<span><?php woocommerce_page_title(); ?></span>
</div>
<?php endif; ?>
<div id="primary-mono" class="content-area <?php do_action('synapse_primary-width') ?>">
<main id="main" class="site-main" role="main">
<?php
}
add_action( 'woocommerce_after_main_content', 'synapse_single_custom_footer', 50 );
function synapse_single_custom_footer() {
echo "</main></div>";
}
/**
* WooCommerce Extra Feature
* --------------------------
*
* Change number of related products on product page
* Set your own value for 'posts_per_page'
*
*/
add_filter( 'woocommerce_output_related_products_args', 'synapse_change_related_products_count' );
function synapse_change_related_products_count( $args ) {
$args['posts_per_page'] = 3;
$args['columns'] = 3;
return $args;
}
//Product Gallery Size
function synapse_gallery_four_columns( ){
return 4;
}
add_filter( 'woocommerce_product_thumbnails_columns', 'synapse_gallery_four_columns');
// Change number or products per row to 3
add_filter('loop_shop_columns', 'loop_columns');
if (!function_exists('loop_columns')) {
function loop_columns() {
return 3; // 3 products per row
}
}
// Ensure cart contents update when products are added to the cart via AJAX (place the following in functions.php)
add_filter( 'woocommerce_add_to_cart_fragments', 'synapse_header_add_to_cart_fragment' );
function synapse_header_add_to_cart_fragment( $fragments ) {
ob_start();
?>
<a class="cart-contents" href="<?php echo WC()->cart->get_cart_url(); ?>" title="<?php esc_html_e('View your shopping cart', 'synapse'); ?>">
<div class="count"><?php echo sprintf(_n('%d item', '%d items', WC()->cart->cart_contents_count, 'synapse'), WC()->cart->cart_contents_count);?></div>
<div class="total"> <?php echo WC()->cart->get_cart_total(); ?>
</div>
</a>
<?php
$fragments['a.cart-contents'] = ob_get_clean();
return $fragments;
}