I’m using the Cafè Elementor for a coffee shop ecommerce. I would like to know if it is possibile to change the lenght of the titles, because actually, they are cutted up at 20 characters. After that, a three points suspension…
I would like to have the possibility to see more of the title, even reducing the size.
I tried to do some changes via CSS, but with non results.
Thanks for help since now…
]]>I would like to know how I make make the woocommerce long product description excerpt. Like For example: Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College…<more>
When people click more the full text opens. Till clicking more it should be collapsed.
Thanks in advanced.
]]>in the plugin description it is written, that the maximum length of the product description is 1024 characters otherwise the product wont sync. Is this the product short description? Otherwise nearly 50% of my products wont sync, since 1024 characters for the description is way to short. the longest description i got is 1250 words! I would like to use/switch to your plugin, but the limitation prevents me from doing so. Maybe there is a workaround?
Thx for an answer,
Chris
]]>I can see there is an error on this theme, regarding the category display on the portfolio page.
The category filter STYLE is not customizable so if you create a category that has a name containing more letters the word is cut off…
You can see in the link example how my category ARTE is okay because it is a short word but the others like BOOKING has the G cut off. EDUCAZIONE as well has the last 3 letters cut off and so on.
I wasn’t able to find any solution and it is so frustrating.
Do you have any solutions for this?
Thanks!
]]>I’m looking for a free plugin or another solution to add a Price per Unit calculator to 5 of my products. I don’t want the official WooCommerce’s Measuring Price Calculator, because like I said, I only have 5 products (out of 550) where the customer picks the lenght of the product. I tried a few plugins already, but the issue is that I made custom Single Product Pages in Elementor.
The price is currently shown with this code:
function custom_price_shortcode_callback( $atts ) {
$atts = shortcode_atts( array(
'id' => null,
), $atts, 'product_price' );
$html = '';
if( intval( $atts['id'] ) > 0 && function_exists( 'wc_get_product' ) ){
// Get an instance of the WC_Product object
$product = wc_get_product( intval( $atts['id'] ) );
// Get the product prices
$price = wc_get_price_to_display( $product, array( 'price' => $product->get_price() ) ); // Get the active price
$regular_price = wc_get_price_to_display( $product, array( 'price' => $product->get_regular_price() ) ); // Get the regular price
$sale_price = wc_get_price_to_display( $product, array( 'price' => $product->get_sale_price() ) ); // Get the sale price
// Your price CSS styles
$style1 = 'style="font-size:25px;color:#FF0000;font-weight:bold;"';
$style2 = 'style="font-size:17px;color:#5F5F5F"';
// Formatting price settings (for the wc_price() function)
$args = array(
'ex_tax_label' => false,
'currency' => 'EUR',
'decimal_separator' => ',',
'thousand_separator' => '.',
'decimals' => 2,
'price_format' => '%2$s %1$s',
);
// Formatting html output
if( ! empty( $sale_price ) && $sale_price != 0 && $sale_price < $regular_price )
$html = "<del $style2>" . wc_price( $regular_price, $args ) . "</del> <ins $style1>" . wc_price( $sale_price, $args ) . "</ins>"; // Sale price is set
else
$html = "<ins $style1>" . wc_price( $price, $args ) . "</ins>"; // No sale price set
}
return $html;
}
What would be the best approach to this? Appreciate any help I’ll get with this.
Kind regards
]]>Hope you can help me =D
]]>I’m creating a dynamic post carousel and I’ve faced the problem that I can’t change the length of the excerpt displayed. Is there any way to make it custom?
Thanks in advance!
Tamas
]]>Is it possible to set a custom lenght (in words or letters) for the content text?
Thanks
]]>