-
AuthorPosts
-
February 20, 2017 at 7:37 pm #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.
February 20, 2017 at 10:15 pm #749624Hey 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!
BasilisFebruary 21, 2017 at 7:55 am #749779Hi Basilis – can u point me to the php file which sends the email? thanks.
February 24, 2017 at 3:23 am #751174Hi,
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,
NikkoFebruary 24, 2017 at 10:02 am #751311Thanks 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.February 28, 2017 at 11:58 pm #753338Hi,
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,
NikkoMarch 6, 2017 at 8:12 am #756212Hi 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.
March 8, 2017 at 12:19 am #757377Hi,
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 -
AuthorPosts
- You must be logged in to reply to this topic.