Forum Replies Created
-
AuthorPosts
-
Hey navindesigns,
Please try going to Enfold Theme Options > Header > Header Layout > Menu and Logo Position and choose “Logo left, Menu right” from the drop downBest regards,
MikeHi,
Sorry, from a css point of view, the numbers and the text is the same element, so css won’t target only the numbers. Please try the solution from Nikko.Best regards,
MikeHi,
I would ask to login to your site to investigate, but you have posted on someone else’s thread so they would see the login. Please start a new thread with admin login in the private content area so we can take a closer look.
To answer your question, we have not had any issues with Google Maps API.Best regards,
MikeHey Daniel,
I’m not really sure of the look you want to achieve, do you have a mockup? Is it similar to the image in the Private Content area?Best regards,
MikeHi,
@Guenni007, thank you for sharing your solution.Best regards,
MikeHey bobjonesdesigns,
Try this code in the General Styling > Quick CSS field:#top .main_menu .current-menu-item a { background-color: #ef3e55 !important; }Best regards,
MikeJanuary 28, 2018 at 9:54 pm in reply to: can't install the theme. error "Are you sure you want to do this?" #903945Hey StaceyThrush,
Please note that after you download the theme from Theme Forest you will need to open it and extract the enfold.zip from the file, and then upload that to your WordPress > Themes > Add New
If you still are having issues please include a Dropbox or Google Drive link to your enfold.zip file and we will help.
*First check with your webhost that you are using php v7Best regards,
MikeHi,
Yes it will, if you would like use the “Export theme settings file” first and save it to your computer, that way you will have a backup. Then use the “Import parent theme settings” When this is done you may need to clear your browser cache a few times, and if you have a cache plugin clear it too.
Then save your modify footer to your child theme folder for it to work, if you watch the video at 7:26 it talks about this.
If you have any issues we are here to help.Best regards,
MikeHi,
I think I have found a better solution, which is to add your popup content hidden at the bottom of your page. This opens very fast.
First add this code to the end of your functions.php file in Appearance > Editor:function popup_inline() { ?> <script type="text/javascript"> jQuery(window).load(function(){ jQuery('.open-popup-link').magnificPopup({ type:'inline', midClick: true // Allow opening popup on middle mouse click. Always set it to true if you don't provide alternative source in href. }); }); </script> <?php } add_action('wp_head', 'popup_inline');Next add your content in a code block at the bottom of your page, in my test I used one code block for each popup, but you could combine them if you wish. Be sure to use a different ID for each content block. Use this format:
<div id="test-popup" class="white-popup mfp-hide"> <p>PLACE CONTENT HERE</p> </div>Then for your links use this format and be sure to target the correct ID’s:
<a class="open-popup-link" href="#test-popup">Show popup</a>Then add this to your CSS:
.white-popup { position: relative; background: #FFF; padding: 20px; width: auto; max-width: 500px; margin: 20px auto; }In my test this worked very fast, but I noticed a 100px blank space at the end of my page, where the hidden content was. I added this CSS to hide this space and the popups continued to work. You will need to adjust this css to target the space on your page.
#top.page-id-626 #after_section_5 div.container {display: none !important;}Hope this helps.
Best regards,
MikeHi,
Try adding this code to the end of your functions.php file in Appearance > Editor:add_filter('avf_avia_builder_masonry_lightbox_img_size', 'avia_change_gallery_thumbnail_link', 10, 1); function avia_change_gallery_thumbnail_link($size) { return "full"; }Best regards,
MikeHi,
In your custom css you have this code hiding the titles:.entry-content-header {display: none;}I imagine you were using it to hide a title on another page, if you wish we could adjust it to affect only the titles on the other page.
Best regards,
MikeJanuary 28, 2018 at 7:48 pm in reply to: CSS Updates Work In Google, but not in style.css or Quick CSS #903922Hi,
Typically on cache plugins you can clear the minify cache and rebuild it, I don’t have a lot of experience with W3 Total Cache so I found this article for you. I use the WP Fastest Cache which does have the “clear minify” option, I would think W3 Total Cache does also somewhere, I just didn’t see it. Please note that many users have had issues when minifying js, braking the scripts, so I would advise against that.Best regards,
MikeHi,
@Ennasus if I understood correctly you wanted your menu items to be pink as in your demo link, this code should do it if you add it to General Styling > Quick CSS field:#top #header .av-main-nav > li > a .avia-menu-text, #top #header .av-main-nav > li > a .avia-menu-subtext,#top #header #menu-item-search { color: #cf507d!important; }Please clear any cache plugin and your browser cache and check.
If this still doesn’t help please open a new thread and include admin login in the private content area so we can take a closer look.
But don’t do it in this thread, because this was open by someone else and they will see your login, and if we need to write to you in the Private Content area you will not see it.Best regards,
MikeHi,
@saundra Thanks for your correction, I believe goldengate415 offers a good point. Perhaps it would be worth testing during a free trial period.For in my localhost test of your site, I couldn’t reproduce your issue. And you don’t want your site down for testing, I believe the other option here would be for you to create a staging clone on a sub-domain for us to test with, yet if it turns out to be a server issue there won’t be much we can do.
Best regards,
MikeHi,
@saundra thanks for the update and I will make a note of this for the developers, and I respect that you are very busy, and thanks for your patience. If I read correctly as of now your site is now updated and working correctly?
@jlgarcia thanks for confirming that updating though WP gave a 500 error, and the update via FTP solved.Best regards,
MikeHi,
Please try this instead:@media only screen and (min-width: 767px) and (max-width: 1023px) { #top.postid-1480 #av-layout-grid-1 .av_two_fifth { width: 30%!important; padding: 15px!important; } #av-layout-grid-1 .avia-animated-number-title span, #av-layout-grid-1 .avia-animated-number-content p { font-size:18px !important; } }please see screenshot in Private Content area as the expected change.
Please clear your browser cache and check.Best regards,
MikeHi,
Sorry, I had mis-spoke, when using custom classes your css should look like this:@media only screen and (max-width: 767px) { .class-of-img {float: left !important;} .class-of-text {float: right !important;} }Best regards,
MikeHi,
Try this code in the General Styling > Quick CSS field:@media only screen and (min-width: 767px) and (max-width: 1023px) { #top.postid-1480 #av-layout-grid-1 .av_two_fifth { width: 30%!important; padding: 15px!important; } }Best regards,
MikeHi,
It is a custom element built for the demo site, unfortunately it is not available. But you can find similar plugins, such as: MojoPlug Slide PanelBest regards,
MikeJanuary 28, 2018 at 1:00 am in reply to: Search box disappears of the main menu when the page is loaded #903826Hi,
Glad to hear, we will close this now. Thank you for using Enfold.Best regards,
MikeHey JMDP,
Please include the url to the page in question so we can take a closer look and write the appropriate css.Best regards,
MikeHey JMDP,
Sorry, I don’t think there is going to be a way we can do this without quite a bit of theme modification. But if you’ll include the url to the page in question we can take a closer look.Best regards,
MikeHi,
Can I ask if you built the page with the advanced layout builder or the default builder?
It seems to be mix of the two types.Best regards,
MikeJanuary 28, 2018 at 12:04 am in reply to: CSS Updates Work In Google, but not in style.css or Quick CSS #903820Hi,
I tried adding the rule to your css, and flushing your cache a few times but the vertical-align: middle continues to be called from:
wp-content/cache/minify/8052b.css
So it is just a matter of clearing / recreating the minifyed css, perhaps disabling the minify and then clearing again and enabling it again?
Please try this.Best regards,
MikeHi,
I stand corrected then, I didn’t know they were a custom post type and I didn’t see them in your post or pages. I was going by the additional files on load.
Perhaps enabling Prefetch and Prerender would be helpful. Here is a good article: How to add Prerender and Prefetch to WordPress sitesBest regards,
MikeHi,
Sorry, I have tested the above customization, and this is no longer is working. The original file was from 2015 and a lot has change since then. We don’t know when this customization would be considered, but please feel free to request – or vote if already requested – such feature on Enfold feature request form.Best regards,
MikeHey Milorad,
I tested your page and the images seem to be showing at full width for me when the screen is large enough for them, if the screen is smaller the images are force to fit the screen. please see screenshots in Private Content area.
But they go to the edge of the screen with no padding or margin, that we could remove.
Is your request that they would extend past the screen, with the possibility be that you don’t see the edges?Best regards,
MikeHi,
@saundra I have tested on my localhost, I used all-in-one-wp-migration to copy the site, and deactivated all plugins. Then manually updated to Enfold v4.2.2, then activated all plugins except real simple ssl, as my localhost has no ssl, and found CyStat crashed the site:
But I don’t think you were using it anyways. Here is my localhost settings:

So unfortunately, I found no issues, and the only difference we have is I’m using php v7.0.3, and your using php v7.1, which I don’t have. Also MySQL is 5.7.11
Sorry I was hoping to find a issue to report.
Do you have the option to try php v7.0.3?Best regards,
MikeHey ranishachar,
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
( do be sure that we have enough time to debug ). - Click ” Submit “.
- You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.
When your issue is fixed, you can always remove the plugin!
If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.Best regards,
Mike -
AuthorPosts
