Forum Replies Created
-
AuthorPosts
-
Hi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
I took a look at your site but I didn’t see the image titles that normally show on hover, perhaps you have solved this?
One solution for this is to try adding this code to the end of your functions.php file in Appearance > Editor:function custom_script(){ ?> <script> jQuery(window).load(function(){ jQuery('a').removeAttr('title'); jQuery('img').removeAttr('title'); }); </script> <?php } add_action('wp_footer', 'custom_script');
Best regards,
MikeHi,
I cloned your content slider and set the screen options to only show on mobile, then set the number of columns to show to one.
Then I set your other content slider to hide on mobile. This way only one content slider will show at a time, but the mobile one will only show one image at a time.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
I tried to add a class to your login/logout button in your functions.php, but received an error to try via ftp. Please try to do this by chainging this line:$items .= '<li class="login-btn">'. $loginoutlink .'</li>';
Then you can add this code to the end of your functions.php file in Appearance > Editor:
function move_login_btn(){ ?> <script> jQuery(window).load(function(){ jQuery( ".login-btn" ).appendTo( ".login-loc" ); }); </script> <?php } add_action('wp_footer', 'move_login_btn');
I have added this code to your phone-info field as the target:
<span class="login-loc"></span>
Then please add this code in the General Styling > Quick CSS field to remove the list bullet:
.login-loc { list-style-type:none; }
Best regards,
MikeHi,
Glad to hear that it is as you wanted.
Unfortunately I had to reset the site to remove the errors so I could install a fresh demo, so you will need to re configure the extensions, I also used a temporary admin, which I have removed, but it had changed the site’s email address at:
WordPress > Settings > General > Email Address
To correct I added your email address, but you need to confirm it for it to take effect.
Please take a quick look at all of the settings at:
WordPress > Settings >
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
I added this code to the end of your functions.php file in Appearance > Editor:function remove_masonry_link(){ ?> <script> jQuery(window).load(function(){ jQuery('#top.page-id-3351 a.av-masonry-entry').removeAttr('href'); }); </script> <?php } add_action('wp_footer', 'remove_masonry_link');
which has removed the link for the masonry items for that one page, but has kept the hover action.
Please clear your browser cache and check.Best regards,
MikeHi,
@Perrine
I have installed the default demo for you, you can login now and go to the woocommerce plugin and “Launch the configuration wizard ” to set it up so you will have the “Shop” page.
If you don’t want to sell online with woocommerce then you don’t have to done this step, but you won’t have a “Shop” page.
Also, the site has sent you a email to setup the email address for the site, please click the link to do so.
Let us know if we can help with anything else, Thank you for using Enfold.Best regards,
MikeHi,
Can you please include a admin login in the private content area so we can take a closer look.Best regards,
MikeHi,
I received an error when trying to login, invalid user, please check.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
Please try adding this for your shop pages:@media only screen and (max-width: 767px) { .responsive.html_custom #top.woocommerce #wrap_all #header.all_colors { height: 80px !important; }
Best regards,
MikeHi,
Yes, I have seen that on sites that have Enfold installed, yet other sites that have removed Enfold have shown the shortcode. It can depend on the theme you replace Enfold with.
Naturally we hope you will always use Enfold, but if you do decide to switch themes you will probably need to copy your content as pain text, and rebuild your site with the new builder that you choose.Best regards,
MikeHi,
Can you please include a admin login in the private content area, I would like to add a class to the login link, right now it doesn’t have any.Best regards,
MikeHi,
Ok, will this be for one page or all of the masonry on the site? Please include a link to your masonry page in the Private Content area.Best regards,
MikeHi,
Sorry I thought you were using the “masonry gallery” element, to make the masonry items not clickable please try this code in the General Styling > Quick CSS field:.av-masonry-entry { pointer-events: none !important; }
Do you want this to effect only one page? If so please link to the page so we can determine the page ID.
Best regards,
MikeHi,
This is because the sub-heading “Impressions” is not within the “h2” or “h3” tag, but it is in a “p” tag so your code was setting the rule:#top .all_colors p { font-size: 16px; }
Also in your other code above, the “.av-subheading_below-h2” is not a class that is used, so it has no effect.
I see that you are trying to have a different sub-heading font-size based on the heading size, h2 or h3.
Please try this for h2 sub-headings:#top .all_colors .av-special-heading-h2 .av-subheading_below p { font-size: 30px !important; }
and this for h3 sub-headings:
#top .all_colors .av-special-heading-h3 .av-subheading_below p { font-size: 22px !important; }
Best regards,
MikeJuly 12, 2018 at 12:54 pm in reply to: Widget content (part of the menu) is not showing on Mobile #984686Hi,
Try adding this code to the end of your functions.php file in Appearance > Editor:function copy_polylang_to_burger(){ ?> <script> jQuery(window).click(function(){ jQuery( "#polylang-3" ).clone().appendTo( "#av-burger-menu-ul" ); }); </script> <?php } add_action('wp_footer', 'copy_polylang_to_burger');
Please test this code before and after the other code, as it’s placement may determine the order of the mobile menu.
Best regards,
MikeJuly 12, 2018 at 11:56 am in reply to: Contact form: Checkbox shows additional form field when selected #984643Hi,
I didn’t find this suggestion in the feature requests, but currently we are re-designing the feature request section, if you there in over the next few weeks you will be able to add it to the requests.
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
Vielen Dank, dass Sie uns Ihre Lösung mitgeteilt haben, es sei denn, wir können Ihnen in dieser Angelegenheit weiterhelfen. Sollen wir das dann schließen?————-
Thanks for sharing your solution, unless there is anything else we can help with on this issue, shall we close this then?
Best regards,
MikeHi,
Yes, we will keep this open until we hear back from you. Have a great day.Best regards,
MikeHey cliffrobbins,
Sorry, I don’t believe there is, but we might be able to write some javascript to move it there for you.
Please link to the page in the Private Content area so we can take a closer look.
If you can also include a mockup of what you would like to see, it would be helpful.Best regards,
MikeHey Chris,
Please try this css in WordPress > Customize > Additional CSS:@media only screen and (max-width: 767px) { .responsive#ls-global #top.stretched #wrap_all #header.all_colors { height: 80px !important; } .menu-item-avia-special { top: 40px !important; } }
Best regards,
MikeHey luizomf,
Do you mean that if you switch themes will you be able to see your advanced layout builder posts?
If you switch themes the posts should show on your site with the extra shortcode mixed in, so you will need to edit your posts to remove the code, either by first editing from within Enfold, or using regex to remove it after./\[\/?av_*?\]/
Best regards,
MikeHey plichart1,
If I understand correctly, you would like to remove the link from the masonry portfolio gallery, so clicking the images does nothing.
Please try editing the masonry gallery element and go to the “Image Link” option and choose “Lightbox linking deactivated. (Custom links will still be used)”Best regards,
MikeHi,
Please try removing this to test.
When I logged in I believe I saw a admin message that said something like “Thank you for updating woocommerce”
did you recently update woocommerce?Best regards,
MikeHi,
I just tried to create a new map on a test page, and got an error that your api key is not configured correctly, Please see screenshot in Private Content area, and check your api key restrictions.
Although, it could be due to your internal server error, so please still look into that.Best regards,
Mike -
AuthorPosts