Forum Replies Created
-
AuthorPosts
-
February 1, 2020 at 2:47 pm in reply to: Enfold seems to overwrite different even and odd rows styling #1180508
Hi,
Sorry for the late reply, and thanks for the login, but the login doesn’t give admin access so I was limited to my investigation.
When reviewing the loaded plugins I don’t see the plugin directory “bbp-style-pack” or css as expected, is the plugin activated?
I do see your bbp classes so I can give you some css to change your row colors, but that is about as much as I can help.#bbpress-forums li.bbp-body ul.forum.even { background-color: #e1e1e1; }Please see the screenshot in Private Content area.
Please upgrade our login to admin so we can be of more assistance.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 in the Enfold forum and we will gladly try to help you :)Best regards,
MikeFebruary 1, 2020 at 2:12 pm in reply to: Enfold – Fullwidth Easy Slider – Mute Video Player option #1180503Hi,
Glad to hear the workaround is helping for now, I have reported my findings to the dev team for their review and a better solution.
Thank you for your patience.Best regards,
MikeFebruary 1, 2020 at 11:08 am in reply to: Move Date below blog Title – using Blog Posts content element #1180489Hi,
Thanks for the feedback, I had thought you wanted the date under the title and above the divider, did you want the date over the title and under the category for the bottom 4 on /news/ page?
In order to show the categories for the top 3 I enabled categories to show on your Enfold Theme Options > Blog Layout > Blog meta elements options page. Your front page magazine element didn’t have the option to show the categories enabled, I did this for you.Best regards,
MikeJanuary 31, 2020 at 2:52 pm in reply to: Enfold – Fullwidth Easy Slider – Mute Video Player option #1180277Hi,
@dangavin2 Sorry for the late reply I’ve been researching this further and found there is a WordPress filter to change the start volume, but I have not been able to get this to work yet.add_filter('mejs_settings', function ($settings) { $settings['/*setting here*/ '] = /*value here*/; return $settings; });I’m going to ask for some help for the rest of the team with this.
But I was able to make the necessary change directly in the WordPress file so when the player is unmuted the volume is up so you can hear it, but it would be better to use the filter so the setting doesn’t revert with every WordPress update.
If you want to try it, you would place the linked file in[wordpress]\wp-includes\js\mediaelement\mediaelement-and-player.min.jsand save a copy of your original for fallback.
File: https://www.dropbox.com/sh/el0xjrlnp4fyjfh/AAAXiWNZ_-VZaOQr3xbBWPsta?dl=0Interesting though, this was reported as a working solution but it didn’t work for me.
Best regards,
MikeHi,
To switch the search bar and social icons around, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#header_meta > .container { display: flex !important; flex-direction: row !important; } #header_meta { float: right !important; }After applying the css, Please clear your browser cache and check.
The reason the logo is lower is because the Phone info div is above the logo and menu, Please see the screenshot in Private Content area, the colored area is the logo and menu div.Best regards,
MikeJanuary 30, 2020 at 2:06 pm in reply to: Add dropdown buttons to Enfold widget Header + Search bar #1179865Hey mailywinn,
You can use this html code to create a dropdown button in a html widget.Best regards,
MikeHi,
Sorry for the late reply, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#js_sort_items > .sort_by_cat > a.active_sort span { color: #808080 !important; }Best regards,
MikeHi,
Your menu is floating over the button, please try this css to bring the button on top:#text-7 > .textwidget > .avia-buttonrow-wrap > a { z-index: 101; }Best regards,
MikeHi,
Did you try this css?@media only screen and (max-width: 767px){ .responsive #scroll-top-link { display: block !important; } }If you are referring to “BØJNAFJORDEN” it works for that site, but the “scroll-to-top” button is black, just as your background color is, so all you see is the white
^If clearing your browser cache doesn’t help then check your custom css for a missing bracket.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 in the Enfold forum and we will gladly try to help you :)Best regards,
MikeJanuary 29, 2020 at 3:06 pm in reply to: Move Date below blog Title – using Blog Posts content element #1179438Hi,
Thank you for the login, a single post is a different element than the posts on this page, so they need a different solution.
For the slide-posts at the bottom of the page I added this function:function custom_slide_entry_date(){ ?> <script> (function($){ $(window).load(function(){ $( '.slide-entry' ).each(function() { $( this ).find( 'time.slide-meta-time' ).insertBefore( $(this).find('span.av-vertical-delimiter').css({ 'top': '10px'})); $( this ).find('.slide-entry-title').css({ 'padding-bottom': '0','margin-bottom': '0'}); $( this ).find('time.slide-meta-time').css({ 'margin-bottom': '10px'}); $( this ).find('.entry-footer').css({ 'display': 'none'}); $( this ).find('.entry-content-header').css({ 'text-align': 'center'}); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_slide_entry_date');Please clear your browser cache and check that this is working and not interfering with other pages or posts.
Also please update to the latest version and check.Best regards,
MikeJanuary 29, 2020 at 12:56 pm in reply to: set the same font for different languages frontpage #1179401Hi,
Glad to hear it’s working well now, we look forward to assisting again. 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 in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
On the old site the widget area is after the menu, and on the new site it’s before the logo, I think for the old site you used this function:add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area_after_main_menu' ); function enfold_customization_header_widget_area_after_main_menu() { dynamic_sidebar( 'after_main_menu' ); }call this sidebar
after_main_menu
I also believed you had header set to “logo left, menu below”
Here’s the css:#header .widget { position: absolute; right: 10px; top: -90px; z-index: 999; } @media only screen and (min-width: 990px) { #avia-menu { text-align: center!important; display:flex!important; } .av-main-nav > li { flex-grow: 1; justify-content: center; width: auto!important; } .av-main-nav > li > a { display: block; } .avia_image { border: 7px solid transparent; } #custom_html-4 .avia-button-wrap.avia-button-left { float: left; margin-left: 4px; } #custom_html-4 { width: 400px !important; } #header .widget { height: 80px; } #top #header .av-main-nav > li > a{ font-size:18px !important; } }in my test I used a “custom html” widget to add the buton shortcode, thus the ID “custom_html-4” above.

Give this a try.Best regards,
MikeJanuary 28, 2020 at 5:48 pm in reply to: Enfold – Fullwidth Easy Slider – Mute Video Player option #1179100Hi,
Sorry for the late reply, unfortunately, the browsers are muting videos automatically based on the user’s engagement with the website.
The mute option doesn’t override the user’s browser it is an option to assist with video autoplay, some browser versions will not autoplay a video unless it is muted.As for the videos where you can’t change the volume slider, this HTML5 video player is the WordPress built-in “mejs-mediaelement” and the text for the volume control is hidden, but it says this:
Utilisez les flèches haut/bas pour augmenter ou diminuer le volume.
Use the up / down arrows to increase or decrease the volume.
which is not much help if you can’t see it.
I couldn’t change this behavior with css but I was able to add a title that will show on hover with this script.
Try adding this code to the end of your functions.php file in Appearance > Editor:function custom_mejs_script(){ ?> <script> (function($){ $(document).ready(function(){ $(".mejs-controls").attr('title', 'Utilisez les flèches haut/bas pour augmenter ou diminuer le volume.'); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_mejs_script');Best regards,
MikeHi,
Sorry for the late reply, and thank you for the login. I added this css to your Quick CSS to adjust the slider captions for mobile devices:@media only screen and (max-width: 479px) { h2.avia-caption-title { font-size: 12px !important; } .avia-caption .avia-caption-content p,.avia-caption .avia-caption-title { padding: 2px 15px !important; } .avia-caption { bottom: 2px !important; left: 8px !important; padding: 2px 20px !important; } }Please clear your browser cache and check.
Best regards,
MikeJanuary 28, 2020 at 2:07 pm in reply to: Move Date below blog Title – using Blog Posts content element #1179006Hi,
Sorry for the late reply, for the first 3 posts where the date appears on the bottom, it looks like a script is moving it there, are you using a script or function to move the date or meta for another page or element?
Perhaps we should login to check if another function is causing this by mistake?The last 4 posts are not showing the date because of this css in your child theme, possibility in your Quick CSS:
/*remove comment and date from blog page*/ .slide-meta { display: none!important; }So removing the would solve, but it seems you added this for a reason, perhaps a different page?
If we can figure out for where you did want this we can adjust is to only work for that place and to not work on the /news/ page.Best regards,
MikeHi,
Thank you for the feedback, I tweaked a little more.
please clear your browser cache and check.Best regards,
MikeHi,
Please try adding this css:@media only screen and (max-width: 769px){ .responsive #top #wrap_all #header { height: 150px !important; } }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHi,
@Kahil, sorry, I probably didn’t explain my solution well, while it is true that typically you would add?iframe=truefor a popup, in your case you are adding multiple options so to join them you use the&the question mark is only used once at the beginning, notice the&between “post” and “action”
/wp-admin/post.php?post=626&action=edit&iframe=true
I remember this rule from back when you could add a bunch of options to YouTube links and you would string them together with&.Best regards,
MikeHi,
To remove the 7 sizes that you don’t want please see the article above it lists the functions to use to remove many of the common WordPress sizes, and in the section “Disable Other Sizes” it explains how to remove custom sizes. You already commented out the Enfold sizes and you said that is working correct?Best regards,
MikeJanuary 28, 2020 at 11:21 am in reply to: set the same font for different languages frontpage #1178956January 27, 2020 at 3:04 pm in reply to: How to replace helper-main-menu.php on child theme #1178713Hey beachtourshawaii,
Sorry for the late reply, I tested adding a “helper-main-menu.php” to the child theme by creating a directory “includes” in the child theme and then adding the “helper-main-menu.php” and this does work.
\wp-content\themes\enfold-child\includes\helper-main-menu.php
Please try again, or perhaps explain your changes in the file so we can test.I corrected your function above, Try adding this code to the end of your child theme functions.php file in Appearance > Editor:
function custom_class_script(){ ?> <script> (function($){ $(window).scroll(function() { var scroll = $(window).scrollTop(); if (scroll >= 50) { $("#header").addClass("header-scrolled"); } else { $("#header").removeClass("header-scrolled"); } }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_class_script');please clear your browser cache and check.
Best regards,
MikeHi,
@Karamba69, sorry for the late reply, in the contact form you can add a datepicker, it is available as an option, but it will not have the option to block out dates or use other conditions.
You could try using the Contact Form 7 with the Contact Form 7 Datepicker or perhaps try a different datepicker that is ment more for hotel booking.
For our Hotel Demo we recommend the WooCommerce Bookings plugin.Best regards,
MikeHey grundin,
Sorry for the late reply, I assume that you are using 3 masonry elements to create your 3 blocks and they are showing the same posts. The masonry element doesn’t have an “off-set” option for multiple elements on the same page.
If you were to use one masonry element showing 3 posts then you should not see duplicate posts.
Am I understanding the situation correctly?
To solve your situation try assigning different categories or tags to your posts grouping them how you would like them to be shown, and then filter the posts in each masonry element.Best regards,
Mike -
AuthorPosts

