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

  • Author
  • #195685
     emmanuel
    Participant

    hi you help me to turn the recent visitor pictures to a rounded circle see attachment

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

    Hi,

    I would be happy to, however, my login to your site has expired and you have a lot of tickets to go through to find the working details. Can you update this ticket, in a private reply, with admin credentials so I can generate the CSS for you.

    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.

    #195691
     emmanuel
    Participant
    This reply has been set as private.
    #195694
     Kieran_SQ
    Moderator

    Hi,

    The custom CSS to make the recent visitors images rounded is as below

    COPY CODE
    .recent-visitors img {
        border-radius: 100%;
    }

    The profile that have supplied to me only has one visitor so I cannot confirm this is working for all of the visitor images but it should.

    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.

    #195700
     emmanuel
    Participant

    thanks it had worked on all the recent visitors do they have any widgets that can show the recent blog posts and a widgets that shows the most popular blog posts

    #195705
     Kieran_SQ
    Moderator

    Hi,

    You can use KLEO Recent Posts widget for recent posts, this can be added to your main sidebar by going to WP Admin > Appearance > Widgets. For popular posts you may wish to try https://wordpress.org/plugins/wordpress-popular-posts/.

    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.

    #195718
     emmanuel
    Participant

    hi can i show different type of widgets to users when logged out and it change when logged in

    #195719
     Kieran_SQ
    Moderator

    Hi,

    Absolutely, you will need to install a plugin called Widget Logic and use a little PHP https://wordpress.org/plugins/widget-logic/. Once installed you’ll see a new option on each widget titled ‘Widget Logic:’ you can enter your PHP here.

    For example:

    Show to only logged out users
    !is_user_logged_in()

    Show to only logged in users
    is_user_logged_in()

    Show to users who have X package in Paid Memberships Pro (replace 12 with the ID of your package)
    pmpro_hasMembershipLevel('12')

    Show to users who have X package in Paid Memberships Pro (replace Gold with the name of your package)
    pmpro_hasMembershipLevel('Gold')

    Hope this helps,

    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.

    #195720
     emmanuel
    Participant

    thanks how to design and a add button to a widget see attachment for a example

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

    Hi,

    If you wanted to build a section to use as a widget I would recommend using the HTML widget provided by WordPress along with your own code. If you’re not comfortable with coding HTML I would recommend creating a new page and saving is as a draft. Then use Elementor to build the section (full width, no columns) previewing in the browser and then use the console (F12) to copy the HTML it generates.

    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.

    #195724
     emmanuel
    Participant

    ok can the same be done with the pages i wide like to hide a page in the header to users when logged out and when logged in the page would appear in the header

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

    Hi,

    Yes it is possible using the same PHP I mentioned above for logged in and logged out, but you will need a different plugin to achieve this. You will need to install Menu Item Visibility Control https://wordpress.org/plugins/menu-items-visibility-control/. Once installed it will add a new field to each menu item that has been added to the menu titled ‘Visibility:’ – there you will be able to enter the PHP from above.

    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.

    #195728
     emmanuel
    Participant

    how to remove these thing i have circled on the blog page see attachment leave the date

    https://www.eumello.com/dt/

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

    Hi,

    You can use the below custom CSS to remove the meta items except for the date on single posts

    COPY CODE
    .single-post .article-meta .link-list li:nth-child(2) {
        display: none !important;
    }
    .single-post .article-meta .link-list li:nth-child(3) {
        display: none !important;
    }
    .single-post .article-meta .link-list li:nth-child(4) {
        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.

    #195732
     Kieran_SQ
    Moderator

    For the blog archive page please use the below CSS

    COPY CODE
    .blog .article-meta .link-list li:nth-child(2) {
        display: none !important;
    }
    .blog .article-meta .link-list li:nth-child(3) {
        display: none !important;
    }
    .blog .article-meta .link-list li:nth-child(4) {
        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.

    #195733
     emmanuel
    Participant

    Thanks alot for the assistance today

    #195734
     Kieran_SQ
    Moderator

    Hi,

    Happy to help as always, feel free to open a new ticket with any other questions and one of the available support team will be happy to assist.

    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.

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

You must be logged in to reply to this topic.

Log in with your credentials

Forgot your details?