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

  • Author
  • #199155
     emmanuel
    Participant

    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 

    #199156
     Kieran_SQ
    Moderator

    Hi,

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

    #199793
     emmanuel
    Participant

    hi 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.
    #199797
     Kieran_SQ
    Moderator

    Hi,

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

    #199803
     emmanuel
    Participant

    ok 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

    #199804
     Kieran_SQ
    Moderator

    Hi,

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

    #199805
     emmanuel
    Participant

    ok thanks for the feedback and thanks alot to you and all the rest of staff for all the assistance in everything

    #199809
     Kieran_SQ
    Moderator

    Hi,

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

    #209707
     Kieran_SQ
    Moderator

    Hi,

    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 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 9 posts - 1 through 9 (of 9 total)

You must be logged in to reply to this topic.

Log in with your credentials

Forgot your details?