Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
Translating is no use, should your product be available in several languages?
What do they do all day sitting in the office?
crazy translate does not translate 100%
We work seriously here.
I don't play
#wpd-post-rating .wpd-rating-wrap .wpd-rating-stars svg {
width: 45px;
height: 45px;
}
https://www.dai.pe/necesitas-ayuda/
Â
Does not change size
Still the same
Here is the link to increase the size
#wpd-post-rating .wpd-rating-wrap .wpd-rating-stars svg {
width: 45px;
height: 45px;
}
Does not increase size
hello?
Â
https://wpdiscuz.com/community/f-a-q/wpdiscuz-shortcode/
install wpcode plugin
but when inserting the wpDiscuz 2024 shortcode
the comments don't show?
enable insert for page, it is active
wpDiscuz allows you to load the comment section via [wpdiscuz_comments] shortcode as well.
To start using the wpDiscuz shortcode, just put the following code in the active theme functions.php file:
function my_wpdiscuz_shortcode() { $html = ""; if (file_exists(ABSPATH . "wp-content/plugins/wpdiscuz/themes/default/comment-form.php")) { ob_start(); include ABSPATH . "wp-content/plugins/wpdiscuz/themes/default/comment-form.php"; $html = ob_get_clean(); } return $html; } add_shortcode("wpdiscuz_comments", "my_wpdiscuz_shortcode");