-
Author
-
April 22, 2018 at 18:08 #195685emmanuelParticipant
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.April 22, 2018 at 18:32 #195688Kieran_SQModeratorHi,
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 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.
April 22, 2018 at 19:04 #195694Kieran_SQModeratorHi,
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 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.
April 22, 2018 at 20:32 #195700emmanuelParticipantthanks 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
April 22, 2018 at 20:37 #195705Kieran_SQModeratorHi,
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 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.
April 22, 2018 at 22:04 #195718emmanuelParticipanthi can i show different type of widgets to users when logged out and it change when logged in
April 22, 2018 at 22:18 #195719Kieran_SQModeratorHi,
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 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.
April 22, 2018 at 22:30 #195720emmanuelParticipantthanks 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.April 22, 2018 at 22:37 #195723Kieran_SQModeratorHi,
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 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.
April 22, 2018 at 22:44 #195724emmanuelParticipantok 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.April 22, 2018 at 22:47 #195727Kieran_SQModeratorHi,
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 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.
April 22, 2018 at 23:50 #195728emmanuelParticipanthow to remove these thing i have circled on the blog page see attachment leave the date
Attachments:
You must be logged in to view attached files.April 22, 2018 at 23:59 #195731Kieran_SQModeratorHi,
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 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.
April 23, 2018 at 00:01 #195732Kieran_SQModeratorFor 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 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.
April 23, 2018 at 00:50 #195734Kieran_SQModeratorHi,
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 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.