This topic has 27 replies, 2 voices, and was last updated 6 years by Kieran_SQ.

  • Author
  • #194136
     emmanuel
    Participant

    on the activity page were it says all members could the numbers be remove see attachment

    Attachments:
    You must be logged in to view attached files.
    #194143
     Kieran_SQ
    Moderator

    Hi,

    Absolutely, please use the below custom CSS to hide this element.

    COPY CODE
    .activity #activity-all span {
        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 solution

    If 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.

    #194144
     emmanuel
    Participant

    Ok what is the RSS on the activity page for see it in the last attachment I sent

    #194145
     Kieran_SQ
    Moderator

    Hi,

    It is an RSS feed of the activity page. It works exactly like your activity feed except in RSS format. You can find more information about RSS here https://www.w3schools.com/xml/xml_rss.asp.

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If 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.

    #194148
     emmanuel
    Participant

    ok could it be hide

    #194151
     Kieran_SQ
    Moderator

    Yes, please use the below CSS to remove the RSS feed

    COPY CODE
    .activity .sub-nav li.feed {
        display: none !important;
    }

    Kieran.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If 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.

    #194157
     emmanuel
    Participant

    ok could the comment and favorite be remove too see attachment

    Attachments:
    You must be logged in to view attached files.
    #194160
     Kieran_SQ
    Moderator

    Hi,

    It can, but this will stop users from easily commenting on posts. If you would still like to remove this please use the below custom CSS.

    COPY CODE
    .activity-content .activity-meta a:nth-child(1) {
        display: none !important;
    }
    .activity-content .activity-meta a:nth-child(2) {
        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 solution

    If 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.

    #194161
     emmanuel
    Participant

    and remove this too see attachment

    Attachments:
    You must be logged in to view attached files.
    #194164
     Kieran_SQ
    Moderator

    Hi,

    Please use the below CSS to hide the mentions tab on the activity page

    COPY CODE
    .activity li#activity-mentions {
        display: none !important;
    }

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If 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.

    #194165
     emmanuel
    Participant

    thanks and to remove these on the profile page i circle all see attachment

    Attachments:
    You must be logged in to view attached files.
    #194169
     Kieran_SQ
    Moderator

    Hi,

    You can use the below custom CSS to hide these elements

    COPY CODE
    .bp-user a#activity-mentions {
        display: none !important;
    }
    .bp-user a#activity-favs {
        display: none !important;
    }
    .bp-user #post-mention {
        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 solution

    If 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.

    #194171
     emmanuel
    Participant

    ok thanks how do you get to come with these code when ever a ask you to add or remove something

    #194172
     Kieran_SQ
    Moderator

    Hi,

    You can use the browser console in Google Chrome or Firefox to reveal the HTML / CSS / JS – press F12. I have attached a screenshot which is a general overview of how it works. With the console open right click any element and press inspect, this will reveal the element in the panel – you will then see the ID or Class of the item that it is displaying.

    Press the plus icon (as shown in the screenshot) to generate the relevant specific classes for that item. You will then be able to add your own CSS below the plus icon – copy/paste the CSS generated into your WordPress backend.

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If 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.
    #194176
     emmanuel
    Participant

    ok could you please help me with the header i would like the links to move a little more to the left and remove the drop down i circle in pink see attachment if you go into the Customizing tab and the Additional CSS you would see the codes for the header

    Attachments:
    You must be logged in to view attached files.
    #194180
     Kieran_SQ
    Moderator

    I have updated the below CSS for you with regards to menu placement

    COPY CODE
    .top-bar ul.left {
        margin: -29px 80px;
    }

    To remove the dropdown please use the below custom CSS

    COPY CODE
    .btn-profile .button.dropdown.split.tiny span {
        display: none !important;
    }

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If 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.

    #194181
     emmanuel
    Participant

    thanks but there is a little space could it be remove see attachment

    Attachments:
    You must be logged in to view attached files.
    #194184
     Kieran_SQ
    Moderator

    Hi,

    I have added the below CSS to Additional CSS in Customizer, let me know if this is any better

    COPY CODE
    .button.dropdown.tiny {
        padding-right: 0px !important;
    }
    .btn-profile .button.dropdown.split.tiny > a {
    	padding: 4px 8px 5px 10px;
    }

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If 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.

    #194185
     emmanuel
    Participant

    could a little more be taken off

    #194186
     Kieran_SQ
    Moderator

    Hi,

    You can adjust the values of the CSS provided via WP Admin > Appearance > Customizer – I placed the CSS at the end of the Additional CSS

    Change the 8px value in the below CSS to suit your needs

    COPY CODE
    .btn-profile .button.dropdown.split.tiny > a {
    	padding: 4px 8px 5px 10px;
    }

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If 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.

    #194187
     emmanuel
    Participant

    ok thanks alot for the assistance today

    #194188
     Kieran_SQ
    Moderator

    Hi,

    You’re welcome, feel free to open a new ticket any time and we’ll be happy to assist.

    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 solution

    If 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.

    #194202
     emmanuel
    Participant

    hi one more thing could please fix the profile button on the mobile website see attachment

    Attachments:
    You must be logged in to view attached files.
    #194205
     Kieran_SQ
    Moderator

    Hi,

    I have added the below CSS to your Additional CSS to fix this on mobile

    COPY CODE
    @media only screen and (max-width: 767px) {
    ul.button-group li:first-child {
        margin-left: 182px;
    }
    .tiny.secondary.button.split.dropdown {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
    ul.button-group.radius.right {
        margin-left: 40px !important;
        float: none;
    }
    }

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If 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.

    #194206
     emmanuel
    Participant

    ok how to create a watch the video link that when click a video would pop up see attachment

    Attachments:
    You must be logged in to view attached files.
    #194210
     Kieran_SQ
    Moderator

    Hi,

    There is no exact match for the functionality you see on the other site. However you can use the Elementor ‘Video’ element.

    Drag the video element to your desired location, configure the options as desired for the heading ‘Video’, then open the heading ‘Image Overlay’. Set the options for ‘Image Overlay’, ‘Image’ and ‘Lightbox’ you can also set the option for the play button or not (see screenshots).

    This will show the video as a preview and when a user clicks to play it will open in a modal.

    Thanks,

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If 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.
    #194215
     emmanuel
    Participant

    Ok thank you

    #194216
     Kieran_SQ
    Moderator

    You’re welcome.

    Kieran

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    If 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.

Viewing 28 posts - 1 through 28 (of 28 total)

You must be logged in to reply to this topic.

Log in with your credentials

Forgot your details?