Forum Replies Created
-
AuthorPosts
-
Hi,
Thanks for the update.
I can’t reproduce the issue on Chrome, Windows 7. The posts look the same with or without the css code. It does move a bit when I toggle the css but they aren’t blurred. This is what I get.
Screenshot: https://imgur.com/a/9L3Yqvd
Best regards,
IsmaelHi,
Thanks for the update.
The text blocks are now visible. Have you tried to remove the browser cache? (see private field)
Best regards,
IsmaelHi,
Thanks for the update.
We added this css code in the Quick CSS field.
@media only screen and (max-width: 767px) { #top .avia-smallarrow-slider .avia-slideshow-arrows { position: absolute; width: 100%; top: 20%; left: 0; height: 24px; } }
Don’t forget to purge the cache prior to checking the page.
Best regards,
IsmaelHi,
Thanks for the update.
Have you tried to adjust the size of the “Large” thumbnail in the Settings > Media panel? That is the thumbnail that is being used in the lightbox. Don’t forget to regenerate the thumbnails after the adjustment.
// https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelFebruary 20, 2019 at 8:12 am in reply to: Logo Centered, menu on either side with base of logo text even with logo #1069291Hi,
Thanks for the update.
1.) Use this css code to adjust the vertical position of the menu items.
#top #header .av-main-nav > li { top: 30px; }
2.) We are not really sure what you mean by this. Could you give us a screenshot of the expected design or layout?
3.) And add this code right below the previous one to re-adjust the position of the menu items on scroll.
#top .header-scrolled .av-main-nav > li { top: 20px; }
Best regards,
IsmaelHi,
Great. Glad we could help. Please don’t hesitate to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
I’ve added the css code but it’s not working when the mega menu container height is not defined. I think the better solution is to create a page dedicated to the locations.
Best regards,
IsmaelFebruary 20, 2019 at 6:52 am in reply to: Problem about rel next/ previous in pagination (2) #1069278Hi,
You can add the is_page function so that it won’t affect pages other than the ones specified.
Example:
if( ! is_page( array( 42, 'about-me', 'Contact' ) ) ) return;
// https://developer.wordpress.org/reference/functions/is_page/
You can add that right after this line inside the “wp_head_pagination_mod” function:
global $wp_query, $wpdb;
Best regards,
IsmaelFebruary 20, 2019 at 6:48 am in reply to: Increase columns for upsells and cross-sells products #1069276Hi,
Ah, yes. I can see it now. Please add this css code.
div.cross-sells .products .product { margin: 0 1% 1% 0; width: 18.6%; }
Best regards,
IsmaelFebruary 20, 2019 at 6:30 am in reply to: how to embed new Google ReCaptcha since Enfold 4.5.4 in contact form ? #1069273Hi,
I found the issue in the script. Please edit the framework > js > avia_recaptcha.js file, look for this code around line 67:
var forms = document.getElementsByTagName( 'form' );
.. and replace it with:
var forms = document.querySelectorAll( '.av-form-recaptcha' );
Best regards,
IsmaelFebruary 20, 2019 at 6:21 am in reply to: how to embed new Google ReCaptcha since Enfold 4.5.4 in contact form ? #1069271Hi,
UPDATE: I was able to reproduce the issue on my end. I’ll get back to you once I found the problem.
Best regards,
IsmaelFebruary 20, 2019 at 6:11 am in reply to: how to embed new Google ReCaptcha since Enfold 4.5.4 in contact form ? #1069269Hi,
Could you give us a screenshot of the issue?
After enabling the enfold-recaptcha package
Are you using the plugin? The option is now available on version 4.5.4. Please remove the plugin and then upgrade the theme to the latest version. Let us know if the issue persists.
Best regards,
IsmaelFebruary 19, 2019 at 8:09 am in reply to: Code errors by Enfold – many pages not indexed by Google becaause of errors #1068802Hi,
Thanks for the update.
Those tags and attributes were added manually inside the very first text block in the page. They are not generated by the theme. You can remove it directly from the the text block element.
// https://pastebin.com/JDsqNxcV
Best regards,
IsmaelHi,
The site is not loading properly now. Is the server down? Please check the code inside the child theme’s style.css file.
Best regards,
IsmaelFebruary 19, 2019 at 8:03 am in reply to: using different logos on individual pages – old php solution no longer works #1068798Hi,
Thanks for the update.
I enabled the code in the functions.php file and edited it a bit. It works properly now.
Best regards,
IsmaelFebruary 19, 2019 at 8:00 am in reply to: how to embed new Google ReCaptcha since Enfold 4.5.4 in contact form ? #1068796Hi,
Yes, the verification will run in the background automatically when you choose v3, no widget.
// https://developers.google.com/recaptcha/docs/v3
Best regards,
IsmaelHi,
Thanks for the update.
Yes, we would like to access the site. Please post the login details in the private field.
Best regards,
IsmaelHi,
Thanks for the update.
We added this script in the functions.php file:
// move post meta info add_action('wp_footer', 'avf_move_post_meta'); function avf_move_post_meta(){ ?> <script type="text/javascript"> (function() { var body = document.getElementsByTagName( 'body' )[0]; var entry = document.querySelectorAll(".entry-content-wrapper"); var meta = null; var title = null; if( entry ) { if( body.classList.contains( 'single' ) ) { meta = entry[0].querySelector(".post-meta-infos"); title = entry[0].querySelector(".av-heading-wrapper"); title.parentNode.insertBefore(meta, title.nextSibling); } else { for (var i = 0; i < entry.length; ++i) { meta = entry[i].querySelector(".post-meta-infos"); title = entry[i].querySelector(".av-heading-wrapper"); title.parentNode.insertBefore(meta, title.nextSibling); } } } })(); </script> <?php }
Please purge the cache and disable the minification prior to checking the page.
Best regards,
IsmaelHi,
please note that last week, the blur was not present on a second PC
Are you sure that it’s not something in your hardware configuration or specs, perhaps, something in the video card or graphic configuration? Anyway, I can’t access that screenshot. Please upload it on imgur or dropbox.
Best regards,
IsmaelFebruary 19, 2019 at 5:23 am in reply to: Enfold Replaces Single-Event.php and removes JSON markup #1068759Hi,
Thank you for using Enfold.
Edit the config-events-calendar > views > single-event.php file, look for this code around line 19:
<div id="tribe-events-content" class="tribe-events-single vevent hentry">
… and then replace it with:
<div id="tribe-events-content" class="tribe-events-single">
We removed the “vevent hentry” as suggested. Let us know if that changes anything.
Best regards,
IsmaelFebruary 19, 2019 at 5:18 am in reply to: Make Subscribe section same width as Comments section #1068758Hi,
Use this css code to adjust the height of the button.
.comment-form input[type="submit"], .comment-form #submit, .comment-form .button { padding: 13px 10px 14px; }
Best regards,
IsmaelHey UPON,
Thank you for using Enfold.
You can put all your custom print styles inside a print css media query.
// https://joshuawinn.com/css-print-media-query/
Example:
@media print { /* All your print styles go here */ img { display: none !important; } }
That removes every image in the print version.
Best regards,
IsmaelHi,
Thanks for the update.
You can use the following css code to adjust the color of the submit button:
div .main_color .button, .main_color #submit, .main_color input[type='submit'] { background-color: red; color: blue; border-color: green; }
And use this script in the functions.php file to change the required text.
// change contact form required text add_action('wp_footer', 'avf_required_text'); function avf_required_text(){ ?> <script type="text/javascript"> (function() { const r = document.querySelectorAll( '.required' ); if( r ) { for ( var i = 0; i < r.length; i++ ) { r[ i ].textContent = '(richiesto)'; } } })(); </script> <?php }
Best regards,
IsmaelFebruary 19, 2019 at 4:52 am in reply to: Switch Image overlay effect to no overlay -> overlay #1068748Hi,
Thanks for the update.
You can start with this css code:
.av-overlay-hover-deactivate .av-caption-image-overlay-bg { opacity: 0 !important; } .av-overlay-hover-deactivate:hover .av-caption-image-overlay-bg { opacity: 0.2 !important; }
Best regards,
IsmaelHey fcp,
Thank you for using Enfold.
The following css code is missing, which is why the animation is not working.
.avia_desktop.avia_transform3d .av-masonry-animation-active .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry { -webkit-animation: avia_msonry_show 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.075); animation: avia_msonry_show 800ms cubic-bezier(0.175, 0.885, 0.32, 1.075) 0ms 1 normal none running; }
Did you install a cache or minification plugin?
Best regards,
IsmaelHi,
Thanks for the update.
The content of the portfolio item or post is created using the advance layout builder, so it doesn’t really have an excerpt, technically. You have to add the excerpt manually in the Excerpt field. I added an excerpt for “Angela Fechner” as an example. (see private field)
Best regards,
IsmaelHi,
Thank you for using Enfold.
We can’t specify the width and height of those images because they have to inherit the size of their parent container, making them much more responsive on different screen sizes. Anyway, the score is almost perfect even with those warnings, so you can just ignore that.
Best regards,
IsmaelHi,
You can’t add a search box in the top header container by default. There is no option for that, but it’s possible using custom filters and a few css modifications.
// https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
IsmaelHi,
Thanks for the update.
This script will enable you to apply a different logo on mobile view.
// change logo on mobile view add_action('wp_footer', 'ava_mobile_logo'); function ava_mobile_logo() { ?> <script> (function($){ var isMobile = false; if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|ipad|iris|kindle|Android|Silk|lge |maemo|midp|mmp|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(navigator.userAgent) || /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(navigator.userAgent.substr(0,4))) { isMobile = true; } if( isMobile ) { $('.logo img').attr('src', 'MOBILE LOGO IMAGE URL HERE') } })(jQuery); </script> <?php }
Just replace the placeholder with the actual image url.
Best regards,
Ismael -
AuthorPosts