AP
Forum Replies Created
-
Hi @imsnk8
Thank you for providing such a great review and I hope you have a great experience using our Plus Add-ons. In case, if you need any assistance with our plugin our support is already there to help you in every possible way. We really appreciate it if you can join our Facebook Community https://www.facebook.com/groups/theplus4elementor/ where you can interact with and help other users who are using our plugins.
Have any suggestions or want to checkout our roadmap? Have a look at https://roadmap.posimyth.com
Want to share your beautiful websites with all The Plus Addons users? Submit a site on https://theplusaddons.com/showcase/Again, thanks for the awesome review and keep building awesome websites using the Plus Add-ons.
Cheers!
Hi @ikyo
Thank you for providing such a great review and I hope you have a great experience using our Plus Add-ons. In case, if you need any assistance with our plugin our support is already there to help you in every possible way. We really appreciate it if you can join our Facebook Community https://www.facebook.com/groups/theplus4elementor/ where you can interact with and help other users who are using our plugins.
Have any suggestions or want to checkout our roadmap? Have a look at https://roadmap.posimyth.com
Want to share your beautiful websites with all The Plus Addons users? Submit a site on https://theplusaddons.com/showcase/Again, thanks for the awesome review and keep building awesome websites using the Plus Add-ons.
Cheers!
Hi @profondo
Thank you for providing such a great review and I hope you have a great experience using our Plus Add-ons. In case, if you need any assistance with our plugin our support is already there to help you in every possible way. We really appreciate it if you can join our Facebook Community https://www.facebook.com/groups/theplus4elementor/ where you can interact with and help other users who are using our plugins.
Have any suggestions or want to checkout our roadmap? Have a look at https://roadmap.posimyth.com
Want to share your beautiful websites with all The Plus Addons users? Submit a site on https://theplusaddons.com/showcase/Again, thanks for the awesome review and keep building awesome websites using the Plus Add-ons.
Cheers!
Thank you for providing such a great review and I hope you have a great experience using our Plus Add-ons. In case, if you need any assistance with our plugin our support is already there to help you in every possible way. We really appreciate it if you can join our Facebook Community https://www.facebook.com/groups/theplus4elementor/ where you can interact with and help other users who are using our plugins.
Have any suggestions or want to checkout our roadmap? Have a look at https://roadmap.posimyth.com
Want to share your beautiful websites with all The Plus Addons users? Submit a site on https://theplusaddons.com/showcase/Again, thanks for the awesome review and keep building awesome websites using the Plus Add-ons.
Cheers!
Hi @spyglassweb
Thank you for providing such a great review and I hope you have a great experience using our Plus Add-ons. In case, if you need any assistance with our plugin our support is already there to help you in every possible way. We really appreciate it if you can join our Facebook Community https://www.facebook.com/groups/theplus4elementor/ where you can interact with and help other users who are using our plugins.
Have any suggestions or want to checkout our roadmap? Have a look at https://roadmap.posimyth.com
Want to share your beautiful websites with all The Plus Addons users? Submit a site on https://theplusaddons.com/showcase/Again, thanks for the awesome review and keep building awesome websites using the Plus Add-ons.
Cheers!
Thank you for providing such a great review and I hope you have a great experience using our Plus Add-ons. In case, if you need any assistance with our plugin our support is already there to help you in every possible way. We really appreciate it if you can join our Facebook Community https://www.facebook.com/groups/theplus4elementor/ where you can interact with and help other users who are using our plugins.
Have any suggestions or want to checkout our roadmap? Have a look at https://roadmap.posimyth.com
Want to share your beautiful websites with all The Plus Addons users? Submit a site on https://theplusaddons.com/showcase/Again, thanks for the awesome review and keep building awesome websites using the Plus Add-ons.
Cheers!
Hello @ninsights
You need to enable features from The Plus Settings -> Plus Widgets -> Plus Features
Please take a look https://www.loom.com/share/3e2196c812864fe7a0302b924f88344c
Please take a look https://www.loom.com/share/f138c669ab554e23b62fbdf8d9839090
You can overwrite by woocommerce_sale_flash add filter, You need to put below code in Theme’s function file.
/*woo sale amount*/
if(class_exists(‘woocommerce’)) {
function plus_filter_woocommerce_sale_flash_amount( $output_html, $post, $product ) {
if ($product->get_type() == ‘variable’) {
$available_variations = $product->get_available_variations();
$maximumper = 0;
for ($i = 0; $i < count($available_variations); ++$i) {
$variation_id=$available_variations[$i][‘variation_id’];
$variable_product1= new WC_Product_Variation( $variation_id );
$regular_price = $variable_product1->get_regular_price();
$sales_price = $variable_product1->get_sale_price();
$percentage = $sales_price ? round($regular_price – $sales_price ) : 0;
if ($percentage > $maximumper) {
$maximumper = $percentage;
}
}
$output_html = ‘<span class=”badge onsale perc”>↓ ‘.$maximumper.’$</span>’;
} else if ($product->get_type() == ‘simple’){
$percentage = round( $product->get_regular_price() – $product->get_sale_price());
$output_html = ‘<span class=”badge onsale perc”>↓ ‘.$percentage.’$</span>’;
} else if ($product->get_type() == ‘external’){
$percentage = round($product->get_regular_price() – $product->get_sale_price());
$output_html = ‘<span class=”badge onsale perc”>↓ ‘.$percentage.’$</span>’;
}else {
$output_html = ‘<span class=”badge onsale”>’.esc_html__( ‘Sale’,’theplus’ ).'</span>’;
}
return $output_html;
};add_filter( ‘woocommerce_sale_flash’, ‘plus_filter_woocommerce_sale_flash_amount’, 11, 3 );
}@spyglassweb It might be an issue of cache in the backend.
Please take a look https://docs.posimyth.com/tpae/your-backend-widget-is-looking-like-messed-up/
As per above document.
– Remove cache from The Plus
– Remove cache from 3rd party caching plugins
– Remove browser cache