This topic has 15 replies, 2 voices, and was last updated 6 years by WinDroidAnswers.
-
Author
-
January 27, 2018 at 15:05 #186976WinDroidAnswersParticipant
Hi there
via mobile, we have a strange issue
the words are one on another and they are not readable,
how to solve this?
We may know if it is possible to customize the layout only for the mobile visualization,
for example, we just want to remove the avatar on the left. http://prntscr.com/i6be0x
our final user will use this site mainly (or maybe only) via mobile, and there is a lot of things in just one line, it is annoying. we just want to simplify this
But via desktop it is perfect
January 27, 2018 at 18:50 #187010Kieran_SQModeratorHi,
I checked the forum page and saw that when the words appeared in Italian it was a poor fit visually. I have added the below CSS to your BuddyApp Child theme’s style.css in WP Admin > Appearance > Editor > BuddyApp Child > Style.css to add reduce the main column size and increase columns two and three.
COPY CODE@media only screen and (max-width: 600px) { li.bbp-forum-info, li.bbp-topic-title {width: 35%;} li.bbp-forum-reply-count, li.bbp-forum-topic-count, li.bbp-topic-reply-count, li.bbp-topic-voice-count {width: 20%;} li.bbp-forum-reply-count {padding-left: 8px;} }
As this is a mobile display change you may need to completely purge your mobile browsers cache (except for passwords and form data) to see the changes.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
January 27, 2018 at 19:34 #187020WinDroidAnswersParticipantNot it is better, thanks a lot.
There still some issues,
what do you suggest?
and how to change that words maybe? (see screenshot)
http://prntscr.com/i6ejr1January 27, 2018 at 19:49 #187023Kieran_SQModeratorHi,
As per your screenshot
I have added the below CSS to your style.css to rectify the first avatar/name issue as well as showing the full name that was going off screen
COPY CODE#bbpress-forums .bbp-topics .bbp-body ul.topic li.bbp-topic-title .bbp-topic-meta .bbp-topic-started-by .bbp-author-avatar {display: none;} #bbpress-forums p.bbp-topic-meta span {white-space: inherit;}
With regards to the Partecipanti / Articoli issue, it is simply exceeding the space available – changing the words to something shorter may be of use. You can either translate this word in bbPress with Loco Translate or WPML if you’re already using them or use the below snippet in your BuddyApp Child theme’s functions.php file
COPY CODE// Translate multiple words function change_translate_text_multiple( $translated ) { $text = array( 'Partecipanti' => 'New Translation 1', 'Articoli' => 'New Translation 2', 'Old Text 3' => 'New Translation 3', ); $translated = str_ireplace( array_keys($text), $text, $translated ); return $translated; } add_filter( 'gettext', 'change_translate_text_multiple', 20 );
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
January 27, 2018 at 20:17 #187025WinDroidAnswersParticipantwhat is for “old text 3”?
surely at the end of developing, before lunching the community we surely tranlsate all the words, but at the moment we can do it faster in this way, ok then 😉January 27, 2018 at 20:20 #187027Kieran_SQModeratorHi,
I left that line in as an example for you, you can add or remove translations by copying and pasting that line or removing it altogether.
For example
COPY CODE// Translate multiple words function change_translate_text_multiple( $translated ) { $text = array( 'Partecipanti' => 'New Translation 1', 'Articoli' => 'New Translation 2', ); $translated = str_ireplace( array_keys($text), $text, $translated ); return $translated; } add_filter( 'gettext', 'change_translate_text_multiple', 20 );
Or
COPY CODE// Translate multiple words function change_translate_text_multiple( $translated ) { $text = array( 'Partecipanti' => 'New Translation 1', 'Articoli' => 'New Translation 2', 'Old Text 3' => 'New Translation 3', 'Old Text 4' => 'New Translation 4', 'Old Text 5' => 'New Translation 5', 'Old Text 6' => 'New Translation 6', 'Old Text 7' => 'New Translation 7', ); $translated = str_ireplace( array_keys($text), $text, $translated ); return $translated; } add_filter( 'gettext', 'change_translate_text_multiple', 20 );
Kieran.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
January 27, 2018 at 20:23 #187030WinDroidAnswersParticipantI see, thanks a lot 😉
have a nice eveningFebruary 3, 2018 at 17:51 #187631WinDroidAnswersParticipantnow it is perfect,
we just need to understand how to solve the homepage issue
http://prntscr.com/i9lq50February 3, 2018 at 17:57 #187633Kieran_SQModeratorHi,
Please let me know what the homepage issue is so I can assist you better.
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
February 3, 2018 at 19:23 #187645WinDroidAnswersParticipantok then,
I try to explain it clearly.
we have
1. one homepage (the official homepage actually) when you click the logo on the top.
this home page has some rules on top, a button to write your post, a list of the post divided into categories and some tools to report a feedback to us.2. and we have a community page (the bbpress homepage) on the menu on the left with the posts in a chronological order, last on top, and nothing else.
we simply want to invert these two forum layouts.
1. an official homepage like the actual one, but with the forum layout with no categories division and all the posts in a chronological order, last on top2. a community page with categories in which a user can choose from.
how can we do this?
February 3, 2018 at 19:41 #187650Kieran_SQModeratorHi,
I can see you have another topic open regarding this matter in which you’re already receiving support from one of our developers.
Please continue this discussion in that topic https://archived.seventhqueen.com/forums/topic/start-a-new-topic-button.
All the best,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
February 3, 2018 at 19:49 #187652WinDroidAnswersParticipantyeah, I’m not the only one who works on this site, i’m going to explain how to use properly this ticket system to my colleagues.
do you think it is better to add this explanation to the ticket you mentioned?
may you can take a look at the ticket?February 3, 2018 at 19:53 #187655Kieran_SQModeratorHi,
It would be best to copy and paste the reply from above where you describe your desired outcome in the other ticket that I linked to. I will also add a note to that ticket for you so that the developer you’re working with can see that you left a reply in this ticket.
In the other I ticket, which I originally answered, I was unable to make the changes you desired – therefore I referred the ticket to a developer. You’re already with the best available member of staff to answer you’re query in the other ticket.
Thanks,
Kieran.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
February 3, 2018 at 20:05 #187658WinDroidAnswersParticipantyou’re right,
we’re very happy and glad about your support, it’s awesome!February 3, 2018 at 20:08 #187661Kieran_SQModeratorThanks,
I wish I had an answer for you regarding you’re other ticket. Radu will be back in on Monday and happy to assit – thank you for your kind words 🙂
Thanks,
Kieran
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionIf you like the theme or the support you've received please consider leaving us a review on Themeforest!
Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.
February 3, 2018 at 20:17 #187664WinDroidAnswersParticipantoh gosh. we have only these two days for now because this is a community of windows and android lovers, this is not as a job, we spend the free time in this. saturday and Sunday the most.
but if there is no choice we can take a look on Monday or the day after.
thanks to advice us on this 😉 -
AuthorPosts
The forum ‘Theme options & Demo content’ is closed to new topics and replies.