kiwiradars
Forum Replies Created
-
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Backup to ONE DRIVEHi there,
Thanks for your reply. Size of my backups are almost 670 MB. Is there a way to exclude the photos from backups as I have it’s back up in my other pc.
thanks.
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Backup to ONE DRIVEalso, whats the difference between the Archive Format Zip, Tar and Tar GZip ?
thanks.
No bug. User issue :S
hi there,
sorry just found out that the Paypal fee is not displayed in checkout if the total cost of the invoice is less than 25 or 30 i.e. the PP fee charged is less than 1.
You probably need to add this to your documentation for dumb users like me ??
thanks.
Hi there,
Below are the screenshots. You can see that the fee gets displayed in Checkout page where:
1. Gateway is paypal and fee type is FIXED
2. Gateways is bank transfer and fee type is Percentage.It doesn’t get calculated or displayed where Gateway is paypal and fee type is Percentage.
In the 2nd screenshot you can see that Paypal gateway is enabled for my site.
Is there any error log that I can find the issue?
Thanks.
Hi there.
thanks for your reponse. interestingly, the percentage is calculated and displayed where payment gateway is bank transfer
however it’s NOT calculated and displayed where payment gateway is Paypal and payment type is Percentage. It works fine where payment type is fixed.
i have taken screenshots but can’t see an attachment button here. I have downloaded lightshot and need to learn how does it work first ??
It doesn’t even display the fee title in the Checkout if the fee type is PERCENTAGE.
Thanks for the reply. I don’t know much about scripting.
Here is the code in my site’s home page. Where can I insert that parameter?
thanks.
[vc_row][vc_column width=”1/1″][layerslider_vc id=”9″][vc_separator type=”normal” position=”center” thickness=”50px”][cg_woo_featured_products introtext=”Featured Products” products=”10″ orderby=”date”][vc_separator type=”full_width” position=”center” thickness=”50px”][cg_woo_latest_products introtext=”Latest products” products=”15″ orderby=”date”][vc_separator type=”normal” position=”center” up=”20px” down=”20px”][/vc_column][/vc_row]
Forum: Fixing WordPress
In reply to: Display multiple ROWS in featured products in Home PageThank you. will do.
Forum: Fixing WordPress
In reply to: Display multiple ROWS in featured products in Home PageI have installed ‘WP woocommerce featured product by category’ plugin but I think it’s not setup right. So it’s using the default settings of the theme already installed. Is there an easy fix to this plugin or shall I get rid off it and install something else?
Or can I get this done without any plugin?
cheers
Here is the code of the plugin mentioned above:
<?php
/*
Plugin Name: WP woocommerce featured product by category
Plugin URL: https://wponlinesupport.com
Description: Display woocommerce featured product by category
Version: 1.0
Author: WP Online Support
Author URI: https://wponlinesupport.com
Contributors: WP Online Support
*/
// get featured_product_categoriesadd_shortcode( ‘featured_product_categories’, ‘sp_featured_products’ );
function sp_featured_products($atts){global $woocommerce_loop;
extract(shortcode_atts(array(
‘cats’ => ”,
‘tax’ => ‘product_cat’,
‘per_cat’ => ‘3’,
‘columns’ => ‘3’,
), $atts));if(empty($cats)){
$terms = get_terms( ‘product_cat’, array(‘hide_empty’ => true, ‘fields’ => ‘ids’));
$cats = implode(‘,’, $terms);
}$cats = explode(‘,’, $cats);
if(empty($cats)){
return ”;
}ob_start();
foreach($cats as $cat){
// get the product category
$term = get_term( $cat, $tax);// setup query
$args = array(
‘post_type’ => ‘product’,
‘post_status’ => ‘publish’,
‘ignore_sticky_posts’ => 1,
‘posts_per_page’ => $per_cat,
‘tax_query’ => array(array(
‘taxonomy’ => $tax,
‘field’ => ‘id’,
‘terms’ => $cat,
)
),
‘meta_query’ => array(array(
‘key’ => ‘_visibility’,
‘value’ => array(‘catalog’, ‘visible’),
‘compare’ => ‘IN’
),
// get only products marked as featured
array(
‘key’ => ‘_featured’,
‘value’ => ‘yes’
)
)
);// set woocommerce columns
$woocommerce_loop[‘columns’] = $columns;// query database
$products = new WP_Query( $args );$woocommerce_loop[‘columns’] = $columns;
if ( $products->have_posts() ) : ?>
<?php woocommerce_product_loop_start(); ?>
<?php while ( $products->have_posts() ) : $products->the_post(); ?>
<?php woocommerce_get_template_part( ‘content’, ‘product’ ); ?>
<?php endwhile; // end of the loop. ?>
<?php woocommerce_product_loop_end(); ?>
<?php endif;
wp_reset_postdata();
}return ‘<div class=”woocommerce columns-‘ . $columns . ‘”>’ . ob_get_clean() . ‘</div>’;
}?>