Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #749534

    Hello – Our site has a category field in the contact us form and requirement is to send emails to different email-ids based on category selected. Need help to find which php file to make the necessary changes. thanks.

    #749624

    Hey jollys!

    That modification would be hard with Enfold Forms.
    Better to use something like Contact Forms 7 or Ninja forms, to get it short out.

    Let us know if we can help you with anything else.

    Cheers!
    Basilis

    #749779

    Hi Basilis – can u point me to the php file which sends the email? thanks.

    #751174

    Hi,

    The contact form is in \wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\contact.php and the php file that is used for sending the form is in \wp-content\themes\enfold\framework\php\class-form-generator.php
    Hope this helps.

    Best regards,
    Nikko

    #751311

    Thanks Nikko. I will look into it
    Can u also suggest how to fix the table alignment in mobile? Site has a table of contents displayed on front page but cannot be scrolled or it auto aligns in mobile. thanks.

    #753338

    Hi,

    The table isn’t compatible for mobile, what we can do is to hide it in mobile and replace it with another. Try to add a class in the table for example put desktoptable as class, then put this in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      .desktoptable {
        display: none;
      }
    }

    then create 5 tables (with 2 columns and 3 rows each) then will have a class of mobiletable, then the css code I gave, will be changed to:

    .mobiletable {
      display: none;
    }
    
    @media only screen and (max-width:767px) {
      .desktoptable {
        display: none;
      }
    
      .mobiletable {
        display: block;
      }
    }

    I hope this idea helps.

    Best regards,
    Nikko

    #756212

    Hi Nikko – i think this works fine for now and this issue can be closed.
    Thanks for your hep so far. if you see our site – we have 3 blocks in the middle section. Question is – Is it possible to show the three blocks as a slider in mobile ONLY? That means instead of showing blocks one below the another – show it as a slider which user can move left or right. No change required in desktop version.

    Thanks much.

    #757377

    Hi,

    Yes, I think that is possible, you will first need to enable Custom CSS Classes: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ then create a slider, put a class to it and add the contents to the slider. Using the class added you can hide it on desktop and view it on mobile (using media queries). I think those are the necessary steps to do it.

    Best regards,
    Nikko

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.