In Progresscontact form and search results

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #37724
    karolina.zawiasa
    Participant

    1. The contact form is not working. although I get the message “Your message has been sent” I don’t get it at the Receiving Email Address I provided. Does it have to be an email address with the domain of the website, or do I need other settings?

    2. I see the comments icon and the author of the entry (portfolio) in the portfolio search results, how can I remove it?

    3, aon one more thing about the dashed lines: previously i asked “how can I change the color of the dashed white line in the photos in the store or portfolio”, I was told “You can set border color with custom CSS entered in Appereance->Customize-> Additional CSS. Enter following:
    div.babystreet_whole_banner_wrapper:before {
    border-color: <your color>;
    }

    The lines changed the color in the graphics, e.g. on the home page, but I’ve still white lines in portfolio (lookbook)

    #37751
    Alex
    Keymaster

    Hello karolina.zawiasa,

    1. The contact form is using wp_mail() php function and depending on the result of the function it displays the message if the mail is sent successfully. So, in your case the mail is sent. The mail will be sent to the address set in the “Receiving Email Address” field in the “Contact Form” shortcode. There is no requirement the mail address to be in the same domain. There are two main reasons the mail to not be delivered:
    – The email address doesn’t exist (it is misspelled)
    – For some reason wp_mail() function is not working correctly. You can check with your hosting if there is some configuration for it. Or check the logs on the server for errors.

    2. To do so, you need to remove the comments functionality from the portfolio post type. You can add following code to the child theme functions.php:

    add_action( 'init', 'remove_babystreet_portfolio_comment' );
    function remove_babystreet_portfolio_comment() {
        remove_post_type_support( 'babystreet-portfolio', 'comments' );
    }

    3. Add following additional CSS:

    
    a.babystreet-portfolio-image-link:before {
    border-color: <your color>;
    }
    

    Regards,
    Alex

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

You must be logged in and have valid license to reply to this topic.

License required for any item belonging to this account
AlThemist

AlThemist

sales 17940, followers 752
Login and Registration Log in · Register