Comments for CSSIgniter https://www.cssigniter.com/ Premium WordPress themes, templates & plugins Mon, 23 Oct 2023 08:38:03 +0000 hourly 1 https://wordpress.org/?v=6.3 Comment on Add ratings to the WordPress comment system. by Nik https://www.cssigniter.com/add-rating-wordpress-comment-system/#comment-356792 Mon, 23 Oct 2023 08:38:03 +0000 https://www.cssigniter.com/?p=11262#comment-356792 In reply to Dina.

Hello Dina.

Did you add the styles in the theme’s style.css file or a separate file? If the latter you will need to make sure the file loads properly. You can use your browser’s developer tools to check this. Also if you have any caching systems in place, you should clear all caches and test again.

]]>
Comment on Add ratings to the WordPress comment system. by Dina https://www.cssigniter.com/add-rating-wordpress-comment-system/#comment-356643 Fri, 20 Oct 2023 20:48:34 +0000 https://www.cssigniter.com/?p=11262#comment-356643 Hi thanks for this tutorial
i have a problem of not showing stars when a user whants to put a comment and instead show him radio buttons , i’ve added all styles code in style.css but i don’t know why?
please help me thank you.

]]>
Comment on 13 Essential wp-config.php tweaks every WordPress user should know by Gerasimos Tsiamalos https://www.cssigniter.com/13-essential-wp-config-php-tweaks-every-wordpress-user-should-know/#comment-356269 Thu, 12 Oct 2023 15:49:14 +0000 https://www.cssigniter.com/?p=26880#comment-356269 In reply to Louis.

Ah, perfect, thanks for these!

]]>
Comment on 13 Essential wp-config.php tweaks every WordPress user should know by Louis https://www.cssigniter.com/13-essential-wp-config-php-tweaks-every-wordpress-user-should-know/#comment-356268 Thu, 12 Oct 2023 15:41:22 +0000 https://www.cssigniter.com/?p=26880#comment-356268 Here’s a few more below.

1) Add this temporarily, to be able to upload SVGs, fonts and whatnot:

define( ‘ALLOW_UNFILTERED_UPLOADS’, true );

2) Use this for an encrypted connection to the MySQL database using SSL (should be configured at the server level as well in order for this to work):

define(‘MYSQL_CLIENT_FLAGS’, MYSQLI_CLIENT_SSL);

3) WP_MEMORY_LIMIT has a sibling called WP_MAX_MEMORY_LIMIT, that should be mentioned too:

“WP_MEMORY_LIMIT is the value for the WordPress Memory Limit, usually referred to the frontend memory, and WP_MAX_MEMORY_LIMIT is the value for the PHP Memory Limit, usually referred to the backend memory.”

Both of these are per script memory limits.

]]>
Comment on Hide other shipping methods if free shipping is available by Nik https://www.cssigniter.com/hide-other-shipping-methods-if-free-shipping-is-available/#comment-355657 Mon, 03 Jul 2023 16:13:32 +0000 https://www.cssigniter.com/?p=23138#comment-355657 In reply to Alex.

Hello Alex.
It most likely can since there is a WooCommerce plugin called Local Pickups Plus which seems to offer such functionality. However implementing this is quite complex and far outside the scope of this post.

]]>
Comment on Hide other shipping methods if free shipping is available by Alex https://www.cssigniter.com/hide-other-shipping-methods-if-free-shipping-is-available/#comment-355441 Wed, 28 Jun 2023 13:17:55 +0000 https://www.cssigniter.com/?p=23138#comment-355441 Hi,

Can the local pickup code be revised to show multiple pick up locations?
The current code only shows the first pickup location.

Kind Regards

]]>
Comment on Add ratings to the WordPress comment system. by Reza https://www.cssigniter.com/add-rating-wordpress-comment-system/#comment-355216 Sat, 24 Jun 2023 09:40:48 +0000 https://www.cssigniter.com/?p=11262#comment-355216 Hi Nik, the card was wonderful, it works perfectly, thank you very much, I felt the need to leave a comment and thank you, good luck.

]]>
Comment on Change the price display on variable products by Flaviu https://www.cssigniter.com/change-the-price-display-on-variable-products/#comment-354824 Wed, 14 Jun 2023 16:15:56 +0000 https://www.cssigniter.com/?p=23185#comment-354824 Hey Nik, I needed some css customization for frontend so I added a span and used woocommerce included translation From. So here is my version:

/*
* Change display price for variations
*
*/
add_filter( ‘woocommerce_get_price_html’, ‘fw_variable_price_format’, 10, 2 );
function fw_variable_price_format( $price, $product ) {
if($product->is_type(‘variable’)){
return ”._x(‘From:’, ‘min_price’, ‘woocommerce’).’ ‘.wc_price($product->get_variation_price( ‘min’, true ));
}
return $price;
}

]]>
Comment on Change the price display on variable products by Fantou https://www.cssigniter.com/change-the-price-display-on-variable-products/#comment-354822 Wed, 14 Jun 2023 11:51:25 +0000 https://www.cssigniter.com/?p=23185#comment-354822 Hi,
Works perfectly for me, thanks for this! :)

]]>
Comment on Add ratings to the WordPress comment system. by Nik https://www.cssigniter.com/add-rating-wordpress-comment-system/#comment-353772 Tue, 16 May 2023 13:23:53 +0000 https://www.cssigniter.com/?p=11262#comment-353772 In reply to Muzzammil.

Hello.
Currently the guide does not support displaying the rating outside the single post and extending it to do so is outside the scope of this post I’m afraid.
Regarding your second issue, do you mean you only get 4 empty stars instead of five?

]]>