Forum Replies Created
-
AuthorPosts
-
Hey itpursuits,
This was a issue that has been fixed in v4.2.2, please update your Enfold theme. If you are not given the option to update automatically, this may be a lag in the Theme Forest API key, please try to update manually via FTP: https://vimeo.com/67209750
Please ensure your webhost has PHP version 7 installed.Best regards,
MikeJanuary 27, 2018 at 4:45 am in reply to: How to Add a Few More Social Profiles Into The Enfold Child #903621Hey DimaP,
To add more social profiles to your header & footer you can choose from the many built in profiles or add a new one.
Choosing a built in profile, go to Enfold Theme Options > Social Profiles and click on the green plus syllable, then choose from the 19 in the drop down list.
If you have selected to display social icons in the header at Enfold Theme Options > Header > Extra Elements > Header Social Icons, your new social profile will show.
If you have selected to display social icons in the footer at Enfold Theme Options > Footer > Social Icons, your new social profile will show.
To add a additional social profile other than the many built in profiles, add this code to your functions.php file in Appearance > Editor right below this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
on line 19
(code to add)// Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['tripadvisor'] = array( 'font' =>'tripadvisor', 'icon' => 'uf262'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); // Add new icon as an option for social icons function avia_add_custom_social_icon($icons) { $icons['Trip Advisor'] = 'tripadvisor'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
*Note in this example we will add Trip Advisor, adjust the code to suit your new social profile*
Then import your icon at Enfold Theme Options > Import/Export > Iconfont Manager (read more about this here)
and then follow the steps above choosing to show it, and ensuring the option is on in the header & footer.Best regards,
MikeHi,
If you use the Chrome browser it is easy to test your site for different mobile views. Please see these articles
Simulate Mobile Devices with Device Mode
Test Responsive and Device-specific ViewportsBest regards,
MikeHi,
This code would wrap the code we gave you earlier in your quick css.
If you could show us the screen sizes that are a issue with screenshots, and where the logo should be, we could assist with this. The typical screen sizes would be 425px (mobile), 768px (tablet), 1024px (laptop), & 1440px and above (desktop)Best regards,
MikeHi,
@johnnyfyve did updating to PHP v7 solve your issue?Best regards,
MikeHi,
From what I see the pages in your iframe are static html pages, that is, they are not built with WordPress, which would normally be good. But in this case they take almost 2 seconds to load because 97% of the pages load is fonts, css, and js that should not be needed.
The iframe pages are built to have the same look as your WordPress site, but 47% are different fonts, using the same font will save the user from downloading a new font. 28% is JS, but the pages need no JS at load, simple html & css will render the same page. 22% is css, which if you used the same classes as your main site you would not need this, even if you had a couple new classes they should be in your main stylesheet to save server requests and time.
If you built your iframe pages as WordPress pages you could also take advantage of your caching plugin.
I believe it would be worth your effort to do so.Best regards,
MikeHi,
We have these good videos that will help with learning the Enfold elements:Best regards,
MikeHi,
When you update Enfold, you are actually updating your parent theme, you can do so without losing your child theme settings.
Perhaps this article will explain better: What is a WordPress Child Theme? Pros, Cons, and MoreBest regards,
MikeHi,
I see the [sabai-directory] shortcode in your page now, I don’t know about this plugin, but it seems that it is having a conflict with one or more of the advanced layout builder elements. I also see the [sabai-directory] on your other working page has more options in it, perhaps try testing with that shortcode or try removing advanced layout builder elements to see if one of them has a conflict.
Please see screenshot in Private Content area.Best regards,
MikeHi,
If I understand correctly, you would like the button to show on the video 2s after the page loads, for this please try using the layerslider, you can time the elements, such as text, links, or buttons in the slide.Best regards,
MikeHey allen,
For blog post titles please read: https://kriesi.at/support/topic/how-to-change-the-post-title-to-h1/#post-123032
For masonry titles please read: https://kriesi.at/support/topic/masonry-title-from-h3-to-h2/#post-602533
For post slider titles please read: https://kriesi.at/support/topic/edit-post-slider/#post-438031Best regards,
MikeHey allen,
It depends on how you want your video shown on your page, if you would would like to add it as part of the page or post then having it lazy load is the best, this loads a image first and only load the video when someone clicks it. Here is a good article explaining it: How to Easily Add Lazy Loading for Videos in WordPressBest regards,
MikeHey webSpezialisten,
This is due to your “Sabai” plugins, please disable or check the plugin settings as to why it is using this page, I do not see that you wanted to use the plugin on that page.Best regards,
MikeHey allen,
I’m not sure I understand, please explain a little more.Best regards,
MikeHi,
Try using this instead:#custom_html-6 .textwidget.custom-html-widget { display: flex; justify-content: center; }
Best regards,
MikeHi,
Good to hear you upgraded to php v7, but you are still getting a 404 on /wp-admin/admin-ajax.php please check with webhost for any error messages in the error log.Best regards,
MikeHi,
The color of the text in the submit button is transparent, this will change it to black, with a red background-color for the button:#top.page-id-549 .avia-builder-el-8 input[type='submit'] { color: #000 !important; background-color: red !important; }
adjust to suit.
Best regards,
MikeJanuary 26, 2018 at 6:58 am in reply to: NextGEN Film Pro showing great on desktop, not showing on mobile #903213Hi,
Please open a new thread with some more info and include the url to the page in question so we can take a closer look.Best regards,
MikeJanuary 26, 2018 at 6:55 am in reply to: URGENT: Site broke on updating to latest Enfold theme version #903212Hi,
Glad we were able to help, Perhaps if you don’t mind leaving a review on our Theme Forest page to let other people who are considering Enfold know about your experience, would be nice.
We will close this now. Thank you for using Enfold.Best regards,
MikeHi,
Thank you for your explanation, I recommend creating menu items for your phone numbers, and for the menu style use the button style, and add a class to each button so that you can use css to hide all but the one you want to show on each page.
This is what the css would look like, the first line would show button 1 only, and the second like would show button 2 only. You would do this for all 7 pages..page-id-644 .page2,.page-id-644 .page3,.page-id-644 .page4 {display:none;} .page-id-1361 .page1,.page-id-1361 .page3,.page-id-1361 .page4 {display:none;}
Best regards,
MikeHi,
After changing your rules in the .htaccess file your images are not giving a 404, and the facebook debugger is showing the images for the shop items, and the blog posts. Now when I click a social link facebook shows your image.
Please see screenshots in Private Content area.
Please check.Best regards,
MikeHi,
It appears your htaccess has a lot of conditions with no cosponsoring rules, I would like to test with only the basic wordpress rules. I will leave a backup of this file named htaccess.bk for your records.
Is this Ok?Best regards,
MikeJanuary 26, 2018 at 5:04 am in reply to: Confirmation checkbox the legal terms for mailchimp subscription. #903163Hi,
Unfortunately this option is not available. The Avia mailchimp element creates the form from the mailchimp API, meaning that it only show the form that is built at mailchimp. Since this option is not available at mailchimp, it can not be available in the element.
This is a mailchimp limitation. The plugin Easy Forms for MailChimp, in the post linked above maybe a workaround around as it allows you to create a “required” check box that you can label with your privacy policy. The regular contact form in Enfold also has this capability, but it will not link to your mailchimp account. I did find one other mailchimp workaround here. But you would need to create a Embedded form placing the code in a code block element.
I do note that the example url you provided doesn’t have a compulsory checkbox on their mail form, they have a statement under the form. You can also create a statement under your mailchimp form. Please see screenshot in Private Content area.
I hope this helps.Best regards,
MikeHi,
It’s an area under the post. But I see that this is not your thread so you won’t see it.
I have emailed you the links, please let us know if you get the email. You may need to look in your spam folder.
If you don’t get the message, please start a new thread.Best regards,
Mike -
AuthorPosts