-
Author
-
June 30, 2018 at 16:44 #202465
emmanuel
Participanthello how to remove this from the forms see attachment
Attachments:
You must be logged in to view attached files.June 30, 2018 at 17:25 #202469Kieran_SQ
ModeratorHi,
You can remove that element by going to WP Admin > Pages and editing the home page with Elementor. Once opened select the register and/or search form from the top of the page (if you’re using both then one will appear below the other as a solid red line, hover over this block to reveal the edit pencil icon). A panel will open on the left side where you can configure the options for this element, toggle ‘Show Profiles’ to ‘No’.
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.
Attachments:
You must be logged in to view attached files.June 30, 2018 at 17:40 #202473emmanuel
Participantok thanks how to remove the subject when sending a message and if the subject is removed will users be able to send messages without a subject? see attachment
Attachments:
You must be logged in to view attached files.June 30, 2018 at 17:48 #202477Kieran_SQ
ModeratorHi,
This cannot be removed as it is a required field to be able to send a message to another user. Without it there is no information to display within the inbox and a user will be unable to open the message.
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.
June 30, 2018 at 17:54 #202478emmanuel
Participantok the red indicator that indicates a message could it be removed see attachment
Attachments:
You must be logged in to view attached files.June 30, 2018 at 18:01 #202482Kieran_SQ
ModeratorHi,
Yes, please add the below custom CSS to your SweetDate Child theme’s style.css
COPY CODE.kleo-notifications { display: none !important; }
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.
June 30, 2018 at 18:10 #202484emmanuel
Participantthanks these stars in the messages bar could it be removed see attachment
Attachments:
You must be logged in to view attached files.June 30, 2018 at 18:13 #202488Kieran_SQ
ModeratorHi,
Please add the below custom CSS to your SweetDate Child theme’s style.css to hide this element.
COPY CODE.messages td.thread-star { display: none; }
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.
June 30, 2018 at 18:18 #202489emmanuel
Participanthi but these has not been removed see attachment
Attachments:
You must be logged in to view attached files.June 30, 2018 at 18:33 #202495Kieran_SQ
ModeratorHi,
I did not see the other two items, my apologies. To remove the filter will require custom development and is not something we can assist with via the forums.
To remove the ‘Starred’ from the menu please use the below custom CSS
COPY CODE.messages li#starred-personal-li { display: none !important; }
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.
June 30, 2018 at 18:40 #202496emmanuel
Participantthanks do you know how to hide a page from mobile users
June 30, 2018 at 18:47 #202497Kieran_SQ
ModeratorHi,
I am not sure what you mean? Do you want to hide a menu item to a page or the whole contents of a page?
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.
June 30, 2018 at 18:50 #202498emmanuel
Participanti meant hide a menu item from users on mobile website
June 30, 2018 at 18:52 #202499Kieran_SQ
ModeratorHi,
If you let me know which menu item I can send you CSS to hide the item for you.
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.
June 30, 2018 at 19:00 #202501Kieran_SQ
ModeratorHi,
This CSS will hide the menu item ‘Messages’ on the main menu on screens above 767px (non mobile devices)
COPY CODE@media only screen and (max-width: 767px) { li#nav-menu-item-1302 { display: none; } }
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.
June 30, 2018 at 21:12 #202509emmanuel
Participantthanks do you know how to get borders like this on a image see attachment with elementor
Attachments:
You must be logged in to view attached files.June 30, 2018 at 21:20 #202515Kieran_SQ
ModeratorHi,
You can try adding the below to your desired class.
COPY CODEoutline: 1px solid #ec1010; outline-offset: -10px;
1px references the thickness of the ‘border’ element and the -10px refers to how much it should be inset.
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.
June 30, 2018 at 21:23 #202516emmanuel
Participantok how to apply it only for the widgets in the sidebar
June 30, 2018 at 21:35 #202518Kieran_SQ
ModeratorYou can target all images within the sidebar with the below CSS but given that your sidebar content is built with Elementor rather than standard widgets this will not work given all of the extra ID’s and classes that are generating conflicting CSS.
COPY CODE.sidebar_location img { outline: 10px solid #ec1010; outline-offset: -20px; }
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.
June 30, 2018 at 21:44 #202519emmanuel
Participanthi it did not work for widgets built with elementor see attachment
https://www.eumello.com/success-stories/
Attachments:
You must be logged in to view attached files.June 30, 2018 at 21:48 #202522Kieran_SQ
ModeratorHi,
As I stated above, this will not work with your setup as they are created with Elementor which is using a lot of ID’s and classes that will conflict with this. There is no generic solution in your case and you will need to identify any content you wish to use this CSS with and apply it manually yourself (right click, inspect, for each item)
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.
June 30, 2018 at 21:59 #202525emmanuel
Participantok could please inspect this one and apply the css as and example and i will do the rest see attachment and link
https://www.eumello.com/success-stories/
Attachments:
You must be logged in to view attached files.June 30, 2018 at 22:02 #202528Kieran_SQ
ModeratorHi,
The CSS for this specific element would be
COPY CODE.elementor-2033 .elementor-element.elementor-element-66dc627 > .elementor-background-overlay { outline: 10px solid #ec1010; outline-offset: -20px; }
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.
June 30, 2018 at 22:21 #202537Kieran_SQ
ModeratorHi,
Please make sure you have added this correctly to the child theme’s style.css. When I manually add the code back into the style.css via the front it works as expected.
Also, make sure to clear your caches.
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.
Attachments:
You must be logged in to view attached files.June 30, 2018 at 22:34 #202544Kieran_SQ
ModeratorHi,
I logged into your site and went to WP Admin > Appearance > Editor > SweetDate Child > Style.css and found the CSS was not present in the file.
I added the CSS for you and cleared your website cache and the changes are now reflected on the front-end. Please clear your front-end cache (Ctrl+F5) to see the changes.
I marked your previous reply as private as you sent login details. These details were temporarily sent in the clear they could have potentially been seen by others. Please reset the password to the account mentioned above for your security.
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.
June 30, 2018 at 23:20 #202545emmanuel
Participantthanks it had work, these two widget i inspected it and came up with these two codes is it right because it had not work for me see attachment and link
here is the codes
.elementor-1781 .elementor-element.elementor-element-a7dc2fb > .elementor-background-overlay {
outline: 10px solid #ec1010;
outline-offset: -20px;
}.elementor-2434 .elementor-element.elementor-element-1882c69 > .elementor-background-overlay {
outline: 10px solid #ec1010;
outline-offset: -20px;
}https://www.eumello.com/dating-tips/
Attachments:
You must be logged in to view attached files.June 30, 2018 at 23:25 #202548Kieran_SQ
ModeratorHi,
I don’t understand. Do you need assistance with this or is this resolved? If you need me to generate the same CSS for two items shown I will, however – as stated before, you will have to implement this yourself going forward. You will have to inspect and generate the correct classes.
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.
June 30, 2018 at 23:27 #202549emmanuel
Participantyes i need assist with add the border to the two widget i sent
June 30, 2018 at 23:34 #202550Kieran_SQ
ModeratorThe correct CSS is
COPY CODE.elementor-2434 .elementor-element.elementor-element-1882c69 > .elementor-background-overlay { outline: 10px solid #ec1010; outline-offset: -20px; } .elementor-1781 .elementor-element.elementor-element-a7dc2fb > .elementor-background-overlay { outline: 10px solid #ec1010; outline-offset: -20px; }
This needs to be added to your Child theme’s style.css file. I have tested this in that file via the front-end and it works.
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.
July 1, 2018 at 00:24 #202553Kieran_SQ
ModeratorHi,
Happy to help, feel free to open a new ticket any time and we’ll be happy to assist.
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.
July 1, 2018 at 23:10 #202630emmanuel
Participanthi could this be removed when sending a message see attachment
Attachments:
You must be logged in to view attached files.July 1, 2018 at 23:23 #202635Kieran_SQ
ModeratorHi,
You can if you really wanted to but this will stop Messages > Compose from working properly as you will not be able to select (input) a name.
If you wish to disable this please add the below into your SweetDate Child themes style.css
COPY CODE.messages input#send-to-input { display: none; }
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.
-
AuthorPosts
You must be logged in to reply to this topic.