Forum Replies Created
-
AuthorPosts
-
Hi,
@feoleb I just checked your site and it is up and running, please checkBest regards,
MikeHi,
@feoleb
If you would like to downgrade to v4.2 please start a new thread so we can post the link in the Private Content area for you.Best regards,
MikeHi,
This is very strange, in the interest of getting you site back up while we try to address this issue, would you like to downgrade to the older version? Do you have this version? Which version was it?Best regards,
MikeJanuary 27, 2018 at 6:46 am in reply to: Create Border and Disable Transparent White Overlay #903634Hi,
Thank you for the video, while I don’t have Safari, and I don’t see the square over the image, I will try to help.
One issue is that the overlay has a !important; in the css that will be very hard to over power, yet I notice the image over “research” does not have the overlay, please try to see if you can change the other two to the same settings.Or please try editing /enfold/css/base.css on line 371 you will fine this code:
.avia_transform a:hover .image-overlay{opacity: 0.7 !important;}
please change it to:
/*.avia_transform a:hover .image-overlay{opacity: 0.7 !important;}*/
Best regards,
MikeHey candeos,
It is based on BBpress, but it has been heavily customized by Kriesi.Best regards,
MikeHey siestajoye,
It is good to hear that you have a testing site, the best approach to updating a testing site is to manually download the upgrade from Theme Forest and do a FTP update, here is a good video: https://vimeo.com/67209750Best regards,
MikeHey bobjonesdesigns,
You can remove the ability to click the blog title links with this code:.entry-content-wrapper .post-title { pointer-events: none; }
Or you could edit the theme file and remove the link: Please read this post
Best regards,
MikeJanuary 27, 2018 at 5:32 am in reply to: CSS Updates Work In Google, but not in style.css or Quick CSS #903626Hey iisrael,
Please include the url to the page in question so we can take a closer look and please include a admin login in the private content area so we can be sure we don’t have the same issue with the solution.Best regards,
MikeHey Jelican,
Lütfen web barındırıcınızın PHP v7 kurulu olduğundan emin olun, eğer bu çözülmezse lütfen aşağıdaki Özel İçerik alanına FTP erişimi ekleyin.
Ayrıca hangi sürümle yükselttiniz & hangi sürümünüz var?(Please ensure your webhost has PHP v7 installed, if this doesn’t solve please include FTP access in Private Content area, below.
Also which version did you upgrade with & which version did you have?)Best regards,
MikeJanuary 27, 2018 at 5:11 am in reply to: Create Border and Disable Transparent White Overlay #903623Hey mrtechnique,
To remove the overlay and arrow, please try this code in the General Styling > Quick CSS field:#top.home .image-overlay .image-overlay-inside { display: none !important; } #top.home .avia_transform a:hover .image-overlay { display: none !important; }
This code has been designed to only work on your homepage, please remove #top.home from the code if you want it to work on all pages.
To create a border around the images, try this code:#top.home .av-styling-circle .avia_image { border-style: solid!important; border-color: #ffffff!important; }
This code also has been designed to only work on your homepage.
Best regards,
MikeHey 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,
Mike -
AuthorPosts