-
Author
-
May 27, 2018 at 21:03 #199155emmanuelParticipant
hi what is the php for this plugin https://wordpress.org/plugins/widget-logic/. to show a widget on a specific page example the about page
May 27, 2018 at 21:10 #199156Kieran_SQModeratorHi,
There are examples in the plugins description that cover exactly that. The function you need is is_page() you can read more about it here https://developer.wordpress.org/reference/functions/is_page/.
Examples:
If the page has an ID of 42
is_page( 42 )
If the page title is Contact
is_page( 'Contact' )
If the page slug (url) is contact-us
is_page( 'contact-us' )
If the page slug (url) is not contact-us
!is_page( 'contact-us' )
If the page slug is about-us, contact or management
is_page( array( 'about-us', 'contact', 'management' )
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 3, 2018 at 22:52 #199793emmanuelParticipanthi last week i had ask to to help me change the color of this button on my front page see attachment, but could please help me to make the button background transparent.
this was the code you sent me
#btn-eael-lightbox-a2c5088 {
color:#670ea3 !important;
background-color:#ffffff !important;
}Attachments:
You must be logged in to view attached files.June 3, 2018 at 23:01 #199797Kieran_SQModeratorHi,
Do you want it to be completely transparent? If so you can use the below CSS.
COPY CODE#btn-eael-lightbox-a2c5088 { color:#670ea3 !important; background-color: rgba(255, 255, 255, 0); }
You can adjust the strength of the transparency by changing the the 0 value to any number between 0.00 and 1
There is also no border for this button, so you may wish to use the below css instead which adds a semi transparent border. Adjust the 0.20 value for the border as needed using the guidance from above.
COPY CODE#btn-eael-lightbox-a2c5088 { color:#670ea3 !important; background-color: rgba(255, 255, 255, 0); border: solid 2px rgba(255, 255, 255, 0.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.
June 3, 2018 at 23:21 #199803emmanuelParticipantok thanks i am looking to launch the site this week so as one of the sweetdate developer is there any thing that you think needs to be change or remove or add to the site
June 3, 2018 at 23:31 #199804Kieran_SQModeratorHi,
You could definitely do with resizing the main image (first image) of the couple as it is 5.4 MB in size which is gigantic, and 3993px X 2562px which is far too large for most resolutions.
You should do this locally on your computer with Photoshop or GIMP and then once you have resized run it through an application called RIOT which will reduce the size dramatically – you can find here for free http://luci.criosweb.ro/riot/.
Image URL: https://www.eumello.com/wp-content/uploads/shutterstock_363650156-1.jpg
Other than that your main page looks good. I would highly recommend you and a groups of colleagues or friends sign up for your website several times, from different devices and email accounts to test everything is working okay.
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.
June 3, 2018 at 23:43 #199805emmanuelParticipantok thanks for the feedback and thanks alot to you and all the rest of staff for all the assistance in everything
June 3, 2018 at 23:52 #199809Kieran_SQModeratorHi,
You’re very welcome. As always, feel free to open a new ticket any time and we’ll be happy to assist.
All the very best with your website launch,
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.
September 16, 2018 at 19:23 #209707Kieran_SQModeratorHi,
I have split your recent reply into a new ticket as it was not related to this ticket that was closed over 3 months ago. Someone from the weekday support team will assist you in your new ticket as soon as they’re in on Monday.
https://archived.seventhqueen.com/forums/topic/translate-9
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.