558 comments found.
How to remove react only for questions? I want to keep react for answers and group posts.
Hi @aakhtar13!
Thanks for using Himer.
You can use this code
.question-content .footer-meta .react-meta {display: none;}
Thank you, we look forward to serving you!
Best Regards.
Hello ,
When i type the question , it makes the same question as url , I don’t want that , is is possible to customize it ? I am talking about slug
Hi,
What do you want to make for the slug?
How to remove featured image option in groups. https://ibb.co/crwX0PJ
Hi @aakhtar13!
Thanks for using Himer.
From here https://ahmed.d.pr/m543me
Thank you, we look forward to serving you!
Best Regards.
This option does not show in Himer theme.
It’s available already https://ahmed.d.pr/m543me Himer Settings >> Group settings >> Group posts >> Enable or disable the featured image in group posts form >> OFF.
How to remove some buttons from the editor?
Hi @aakhtar13!
Thanks for using Himer.
Which buttons do you want to remove?
Thank you, we look forward to serving you!
Best Regards.
I want to keep, Bold, Italic, Bulleted List, Number list, Blockquote, insert link, insert image, undo and redo, all others remove.
Can you mark the buttons you don’t need them, please? https://ahmed.d.pr/fSxq7X
Add this code on your child theme/functions.php file
add_filter("wpqa_question_editor_setting","himer_child_editor_setting");
add_filter("wpqa_post_editor_setting","himer_child_editor_setting");
add_filter("wpqa_comment_editor_setting","himer_child_editor_setting");
function himer_child_editor_setting() {
return array("textarea_name" => "comment","media_buttons" => true,"textarea_rows" => 10,"quicktags" => false,'tinymce' => array(
'toolbar1' => 'bold,italic,underline,separator,alignleft,aligncenter,alignright,separator,link,unlink,undo,redo','toolbar2' => '','toolbar3' => ''));
}
Thanks. Add Media button is still remain I want to remove this button too
Change this part from “media_buttons” => true to “media_buttons” => false
Please check my previous comment 
Thanks it worked. The answer box height is too big how can I decrease the height?
Change this part from “textarea_rows” => 10 to “textarea_rows” => 7
Thanks it worked. I just see now I want to keep these buttons others remove. https://ibb.co/vZJDM5n
Tell me what do you want to add only, the image is not clear!
I want to have this button https://ibb.co/S6pF58s
Use this code
add_filter("wpqa_question_editor_setting","himer_child_editor_setting");
add_filter("wpqa_post_editor_setting","himer_child_editor_setting");
add_filter("wpqa_comment_editor_setting","himer_child_editor_setting");
function himer_child_editor_setting() {
return array("textarea_name" => "comment","media_buttons" => false,"textarea_rows" => 7,"quicktags" => false,'tinymce' => array(
'toolbar1' => 'bold,italic,underline,bullist,numlist,blockquote,separator,separator,link,undo,redo,custom_image_class','toolbar2' => '','toolbar3' => ''));
}
Thanks it worked. Can we add @ button to mentioned other users?
No sorry this is not available as a button.
Group post editor have all buttons. I want to have only these buttons for group post editor.
Add this code also
add_filter("wpqa_message_editor_setting","himer_child_editor_setting");
add_filter("wpqa_group_rules_editor_setting","himer_child_group_rules_editor_setting");
function himer_child_editor_setting() {
return array("textarea_name" => "group_rules","media_buttons" => false,"textarea_rows" => 7,"quicktags" => false,'tinymce' => array(
'toolbar1' => 'bold,italic,underline,bullist,numlist,blockquote,separator,separator,link,undo,redo,custom_image_class','toolbar2' => '','toolbar3' => ''));
}
add_filter("wpqa_posts_editor_setting","himer_child_posts_editor_setting");
function himer_child_editor_setting() {
return array("textarea_name" => "content","media_buttons" => false,"textarea_rows" => 7,"quicktags" => false,'tinymce' => array(
'toolbar1' => 'bold,italic,underline,bullist,numlist,blockquote,separator,separator,link,undo,redo,custom_image_class','toolbar2' => '','toolbar3' => ''));
}
This code made critical error on the site?
Change it to
add_filter("wpqa_message_editor_setting","himer_child_editor_setting");
add_filter("wpqa_group_rules_editor_setting","himer_child_group_rules_editor_setting");
function himer_child_group_rules_editor_setting() {
return array("textarea_name" => "group_rules","media_buttons" => false,"textarea_rows" => 7,"quicktags" => false,'tinymce' => array(
'toolbar1' => 'bold,italic,underline,bullist,numlist,blockquote,separator,separator,link,undo,redo,custom_image_class','toolbar2' => '','toolbar3' => ''));
}
add_filter("wpqa_posts_editor_setting","himer_child_posts_editor_setting");
function himer_child_posts_editor_setting() {
return array("textarea_name" => "content","media_buttons" => false,"textarea_rows" => 7,"quicktags" => false,'tinymce' => array(
'toolbar1' => 'bold,italic,underline,bullist,numlist,blockquote,separator,separator,link,undo,redo,custom_image_class','toolbar2' => '','toolbar3' => ''));
}
You already have answered this question edit your answer. after user go to the editor still have all buttons. I want to have custom buttons for this editor too.
Hi,
Add this code too
add_filter("wpqa_edit_comment_editor_setting","himer_child_editor_setting");
This did not work bring critical error
What’s the problem for it?
in frontend shows the critical error
Please send me in my profile your WordPress admin login + FTP account to see it.
Thank you, we look forward to serving you!
Best Regards.
White edit profile user can change email. How can I turn off so after user successfully register won’t be able to change his register email?
Hi,
This is not available, the users must have option to change it or not.
Picture attachments button?
Sorry?
You add the comment here by mistake you want to reply to anther comment, I’ll reply to your another comment.
Header menu button color is very light and font is small How can I make this more visible?
Hi @aakhtar13!
Thanks for using Himer.
You can use this code
.navbar-nav .menu-item a {color: #FFF;font-size: 14px}
Thank you, we look forward to serving you!
Best Regards.
this code did not work
It changes the main header menu, which menu do you want?
Main header menu but this code did not work for the main header menu.
You can use this code
.header-light .navbar-nav .menu-item a {color: #222;font-size: 15px;}
How to change the font size and color?
Hi @aakhtar13!
Thanks for using Himer.
For which part do you want to change?
Thank you, we look forward to serving you!
Best Regards.
Answers paragraphs Blog post paragraph font colors looks small and light I just want to make them little bit dark and big.
You can use this code
.post-item .post__desc p,.post-content-text,.post-content-text p,.message-content,.message-content p,.all_not_single_post_content,.all_single_post_content,.single-post .post-content-text,.single-question .comment-text .text,.single-question .commentlist li.comment .comment-text .text p {
font-size: 16px;
line-height: 25px;
color: #222;
}
Thanks it works some places but still need. Group post content color and questions page the questions have answers color is still same.
You can use this code also,
.content_group_item p,.content-text p,.content-text {
font-size: 16px;
line-height: 25px;
color: #222;
}
Thanks it worked for group post content color but I also want to have this color and size for the /questions/ page. This page has question title that is fine and under question show the answer of the question that color is still light.
Use this code
.commentlist li.comment .comment-body .text p {font-size: 17px;line-height: 25px;color:#222;}
Homepage once click on read more and answer expand then if there is list. The list color and font size is still same how to change this?
Can you give me a screenshot for it?
You can use this code
.question-inner .comment-text .text ol {color: #F00;font-size: 15px;}
Hello, the 3rd column added? the left sidebard similar to Discy…
Hi,
Yes, it’s available now.
Can I see it in DEMO?
Sorry, but it’s not available for the demo yet.
Dicy mobile app can be set to the himer???
Hi,
Yes, no problem.
Hi, admin user is removed from user listing page but how to remove admin user from user search bar?
And second question is, I have installed demo content but after successfully setup, i removed demo content questions but this will not removed from users feed. Why this question is shows on users feed but clicking on that question show 404 error.
Please give solution..
Hi @Ayansh121!
Thanks for using Himer.
1 – Sorry, but this is not available.
2 – Maybe old cache only. You can clean your cache.
Thank you, we look forward to serving you!
Best Regards.
i have installed litespeed cache plugin, and i purged all cache but this will show to all users not old users but also shows to new users..
Please send me my profile your WordPress admin login to see it.
Thank you, we look forward to serving you!
Best Regards.
i have sent the details
I’ve tried and see the questions are working well https://ahmed.d.pr/uxkbIq what’s the problem?
As I told you, it’s a cache only, but for me https://ahmed.d.pr/Mh9sEg it works well with the latest questions.
Yeah i checked, Thank you for your quick support.
You are welcome.
Hello again dear Ahmed i want disable User Points and Badges System, Vote Up/Down System, membership systems, best answer picker etc.. it is possible ? Thanks Regards
Hi,
Yes you can activate them or not, as you want.
thank you very much for information
Can we add pictures to questions and answers? Can we add pictures ( required ) to answers ?
Yes, but not required.
You are welcome.
dear Ahmed Can’t we make it necessary to add pictures for answers? Can’t you customize it? Thanks
After some time of thinking why do you want to make it required?
I want to develop a different project thanks regards
i m ask a different question : it is included external link feature on answers ? ( with auto fetch featured image ) thanks
No sorry but this is not available.
Can i save user data in cloud storage it possible like Amazon cloud service, or digital ocean like?
Hi,
I think you can do that with images, you mean you have host and want to save on another cloud, right?
Yes sir
No, only for images and media.
Can i save image and media store in cloud it possible?
Yes, no problem.
Great support team tnq so much
You are welcome.
Hi,
There as an issue. If you update a question, when I click submit I have this message:
https://ibb.co/cL9mnPgIt asks me to have minimum one tags but there are tags as I only want to edit the question:
https://ibb.co/vY6nDMFI don’t have this problem before update
thank you
Hi,
This is not issue, you set the limitations of the tags 1 tag only, so you want to make the limitation to 2 tags or any number as you want.
I set
Add minimum limit for the number of items for the question tags, like 2, 4, if you leave it empty will be not importantto 1 When I edit the question, there is already two tags : https://ibb.co/vY6nDMF which is greater than 1. so It should show the minimum about tags.
the problem, when I click submit, the two tags disapear and the error is shown:
https://ibb.co/C6jB2vFI don’t know what’s the problem, you need to change the limitation or remove one tag to make it edited.
Sorry I already tried all of this. I already removed a tags and let one tag and doesn’t work. The error is related to the minimum of tags not the maximum.
the error message is : Error: Sorry, The minimum tags for question is 1 tags.
I have already 2 tags which is > 1 (the minimum). so the question should be edited without error , adding or removing tags.
you can check it by putting 1 to this parameter :
Add minimum limit for the number of items for the question tags, like 2, 4, if you leave it empty will be not importantand try to edit one question which has already tags
Please Ahmed, No question can be edited. even if I re-write tags while editing. I see this problem after update. I never have this problem before. Impossible to edit questions : Error: Sorry, The minimum tags for question is 1 tags.
Ok, I’ll check it and back to you.
Ok, you can check it now.
It works well.
thank you
You are welcome.
Hi,
I want to let non logged in to ask question. I activated this parameter ;”Any one can ask question without register” to let asking question without regestring but still have this message :
Sorry, you do not have permission to ask a question, You must login to ask a question.
Please I need your help
Hi @manythings!
Thanks for using Himer.
If you make this option ON https://ahmed.d.pr/0nm7eX it must login to ask.
Thank you, we look forward to serving you!
Best Regards.
This option https://ahmed.d.pr/0nm7eX is already OFF in my website and still ask for loggin
If you activate the permissions, you need to make sure this option ON https://ahmed.d.pr/jCdQuo
No custom permissions is activated. the option “Select ON to be able to add a custom permission.” is already OFF. and not working is it normal?
The only way to let visitor ask question without login is to set “Select ON to be able to add a custom permission” to ON and put “Select ON to be able to ask a question” ON.
But it works well on your site https://ahmed.d.pr/RoLPcC
Yes as I told you in the previous message
It works in this case;
The only way to let visitor ask question without login is to set “Select ON to be able to add a custom permission” to ON and put “Select ON to be able to ask a question” ON.
It doesn’t work in this case: No custom permissions is activated. the option “Select ON to be able to add a custom permission.” is already OFF. and not working is it normal?
No, if it OFF, it works well too, I’ve just tried that on your site now, https://ahmed.d.pr/Ws3U3F >> https://ahmed.d.pr/80DGGu
I tried it again, if it OFF it will work in this case before passing it to OFF:
1) This will work if “Select ON to be able to add a custom permission” = OFF :
https://ibb.co/2szm62R2) This will not work even if ‘Select ON to be able to add a custom permission’ = OFF:
https://ibb.co/crs0B25You can try it on my site
Ok, but this is right, for your 2 cases 1 and 2.
Any way I have a solution that work I just reported to you the two cases to see if you programmed it like that.
thanks for your support
Ok, that’s great, you are welcome.
Hi,
It would be reaaly nice if we have an option to let the user select “the gender on the comments and answers” like you let user select dark/light mode.
Currently you have this option : “Activate the gender on the comments and answers” which is global for the site.
I think another parameter “switcher of Gender on comment” for user/visitor would be nice. This one is available if the global option is activated => Show an icon on the header to user for switching.
I think you should benifit this nice feature for users. some categories/tags people don’t care about categorizing comment (like technical discussion). and other categories/tags like beauty the gender on comment will be interristing.
It depend what categorie/tag the user is following, himselt will choose with the switcher.
It’s just an idea and I think it wille one more nice feature for the theme.
Hi @manythings!
Thanks for using Himer.
Why does the user need to change the gender? Any user can answer without the need to change that!
Thank you, we look forward to serving you!
Best Regards.
Hi,
This is not what I mean.
Now there is this option to categorize questions/answers by gender:
https://ibb.co/WvGHfkwThis is only accessible by admin. I think It’s nice to let also user to choose if he want to show comemnts/answers by gender.
By adding an option in the theme like this : “Let user Activate/Deactivate the gender on the comments and answers”.
For the same site some users will be interested by a template like this: https://2code.info/demo/themes/Himer/main/ And others will like this: https://2code.info/demo/themes/Himer/nogender/It would be great if the user select this himself
Thanks
Hi,
I’m thinking a lot about it, but I don’t see it as a good option.
What’s the difference for the user to choose to see the answers sorted by gender or not?
Hi, what is custom payment method under payment settings?, Does is it works?
Hi @Ayansh121!
Thanks for using Himer.
Custom payments here means if you want to add a custom text or anything like that https://ahmed.d.pr/uFfZ3T
Thank you, we look forward to serving you!
Best Regards.
means this option is not work to collect payment.
No, you can add any text like manually payment, or anything like that.
okay, Thanks for quick support.
You are welcome.
Hi, Can User publish the video in the group post?
Hi @Ayansh121!
Thanks for using Himer.
You need to activate the editor.
Thank you, we look forward to serving you!
Best Regards.
okay, thanks!
You are welcome.
Hi,
google console search give me this error for question page
https://ibb.co/7RQmwSrWhen I disable Yoast and rescan the link, the error disapear. I think there is confilct with Yoast seo
Hi @manythings!
Thanks for using Himer.
Which plugins do you use? one of them make this conflict, try to deactivate all the plugins and try to recheck again.
Thank you, we look forward to serving you!
Best Regards.
I use Yoast SEO plugin:
https://wordpress.org/plugins/wordpress-seo/when I deactivate google console search doesn’t show error. Is your theme compatible with yoast seo? thanks
It’s compatible sure, but the error from the plugin, you can check the support of the plugin.
ok thank. I’ll do that
That’s great.
hi how to change the background color of the “load more questions” button in home page. thanks
Hi @manythings!
Thanks for using Himer.
You can use this code
.posts-load-more .load-more > a {color: #ffffff; background-color: #F00;}
Thank you, we look forward to serving you!
Best Regards.
works well thanks
You are welcome.
Is there shortcodes available for most of the pages and function? Like displaying feeds and questions somewhere else? How about adding content to profile like a dashboard or timeline? I also like to add custom link to user profile menu. Please how can i do this?
Hi @olorioko!
Thanks for using Himer.
Sorry but no shortcode for that.
Where do you want exactly to add content on the profile page?
Which more links do you want to add for the menu?
Thank you, we look forward to serving you!
Best Regards.