Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the info.
Is it working properly when you disable the option that’s adding the sizes attribute? We are not really sure which option in the plugin is doing that.
Best regards,
IsmaelHi,
Thank you for the update.
Another tab opens and closes automatically whenever we toggle the checkbox in the “Statistik mit Matomo” tab. Is that how it’s supposed to work? Is that the iframe ?
Best regards,
IsmaelFebruary 3, 2020 at 3:00 pm in reply to: search results (PDF's) not opening in new window or tab #1180939Hi,
Thank you for following up.
It’s not working properly because the post ID is missing. Sorry about that. We adjusted the code a bit. Please try it again.
$blank = in_array(get_post_type($post->ID), array('page', 'post', 'product')) ? '' : 'target="_blank"'; $output .= "<a class ='av_ajax_search_entry {$extra_class}' {$blank} href='".$link."'>";Best regards,
IsmaelHi,
Thank you for the examples and the detailed descriptions. :)
Best regards,
IsmaelHi,
Thank you for the update.
Can we access the WP dashboard and the file server? We would like to check how the images are generated. Please post the WP and FTP account in the private field.
Best regards,
IsmaelHi,
Thank you for the info.
The video is starting automatically on page load. Are you sure that the lazy load option is enabled? Please create a new thread and post the login details in the private field. We would like to check the settings.
Best regards,
IsmaelFebruary 3, 2020 at 1:53 pm in reply to: Fixing gap issue of icon grid content element on desktop devices #1180916Hi,
We can’t really reproduce the issue on our end — tried zooming the browser in and out. We also haven’t encountered the same issue so far, so it probably requires a custom fix like the css @Victoria suggested above.
Thank you for understanding.
Best regards,
IsmaelHi,
Thank you for the update.
We adjusted the script in the functions.php file a bit.
// add social icons inside the mobile menu function ava_custom_script_mod_social(){ ?> <script> (function($){ var int = ''; function a() { var isMobile = $('.av-burger-menu-main').css('display'), htmlString = $('.social_bookmarks:first').find('li a'), mobileMenu = $('.av-burger-overlay'), socialString = []; if($('.av-burger-social-container').length) clearInterval(int); $('<li class="av-active-burger-items av-burger-social-container"><ul></ul></li>').appendTo('#av-burger-menu-ul'); htmlString.each(function() { var socialClass = $(this).parent('li').attr('class'), socialItems = $(this).wrap('<li class="'+ socialClass + ' av-active-burger-items av-burger-social"></li>').parent().unwrap(); socialString.push(socialItems); }); $(socialString).each(function() { $(this).appendTo('.av-burger-social-container ul'); }); } $('#header').on('mousedown', '.av-main-nav-wrap', function() { int = setInterval(function() { a(); }, 500); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script_mod_social');And added this css code in the Quick CSS field.
#top .social_bookmarks_dribbble a::before { content: ''; font-family: 'entypo-fontello'; } #top .social_bookmarks_twitter a::before { content: ''; font-family: 'entypo-fontello'; } html_av-overlay-full #top #av-burger-menu-ul .av-burger-social { width: 30px; right: 0 !important; left: auto; margin-left: 30px; text-align: right; display: inline-block; } #top .av-burger-social-container ul li { text-align: right; }Best regards,
IsmaelFebruary 3, 2020 at 11:54 am in reply to: Sorting Masonry Gallery Items Incorrectly After "Load More" #1180849Hi,
You don’t have to add that code specifically. You have to use the register_post_type_args filter to change the default arguments of the post or portfolio post types and enable the page attributes.
Example: https://developer.wordpress.org/reference/hooks/register_post_type_args/#user-contributed-notes
function avf_register_post_type_args($args, $post_type){ if ($post_type == 'portfolio' || $post_type == 'post'){ $args['supports'] = 'page-attributes'; } return $args; } add_filter('register_post_type_args', 'avf_register_post_type_args', 10, 2);This will enable the Page Attributes meta box for portfolio and post items.
Best regards,
IsmaelFebruary 3, 2020 at 11:51 am in reply to: Font Size settings in Screen Options of a Text Block not working #1180847Hi,
Sorry for the delay. We set the line height property of the text block to 1.2em.
#av_section_1 .avia_textblock.av-small-font-size-32 p { text-align: center; font-size: 54px; line-height: 1.2em; }This is how the text looks now.
Screenshot: https://imgur.com/a/ZWpbKjq
Best regards,
IsmaelHi,
The site is not using the Enfold theme. Anyway, he added the parallax script in the custom.js file. (see private field)
This is the script:
$(window).bind('scroll', function () { $('.parallax').each(function () { var $$ = $(this); offset = $$.offset(); windowTop = $(window).scrollTop(); var ajuste = (($$.height() - $$.parent('div').height()) / 2); ///50 h menu var newCoord = ((offset.top - windowTop) * 0.25) - ajuste; $$.css({ 'transform': 'translateY( ' + (newCoord) + 'px)' }); }); });The image tag’s class attribute should contain a value called parallax.
Example:
<img src="https://site.com/img/pages/helmet.png" alt="" class="itembackground parallax">Best regards,
IsmaelFebruary 3, 2020 at 5:22 am in reply to: How to change the default image size in lightbox to full size? #1180791Hi,
The default size in the lightbox without adding the modification above seems to be quite enough to exhibit the quality of the images (see link below).
// https://imgur.com/a/xVkZKrn
Please note that the css code above will not actually enlarge the image — it will only stretch it, but the actual dimension of the image will stay the same. If you want to change the default size of the lightbox thumbnail, go to the Settings > Media panel and adjust the dimension of the Large thumbnail. You’ll have to regenerate the images afterwards (https://wordpress.org/plugins/regenerate-thumbnails/), or upload them again.
Best regards,
IsmaelHi,
Welcome back!
We adjusted the above filter a bit. The Events menu item should be highlighted or activated when a single portfolio entry is viewed.
Best regards,
IsmaelFebruary 3, 2020 at 4:54 am in reply to: Google Analytics not tracking after Enfold theme update #1180788Hi,
@Jay: Thank you for the update. Which option did you select in the Default Cookie Behavior settings? If it’s set to the second or third option, Google Analytics will not work automatically unless the users accepted the cookies. You should set it to the first option. Please create your thread/ticket and post the necessary details in the private field so that we can check the site further.
Best regards,
IsmaelHi,
Thank you for the update.
We managed to access the raidbox account and it looked like an SFTP account has already been created for the vervoorts site, but the login info is not displaying for the account that we used or the one that is provided above.We got access to the file server, but the current account doesn’t have any write permissions, so we couldn’t edit the files. Please ask the raidboxes support to help you generate a new account with the correct read/write permissions.
// https://imgur.com/a/z2fp0mY
If you want to enable the Appearance > Editor panel, edit the wp-config.php file and set the DISALLOW_FILE_EDIT constant to false.
Best regards,
IsmaelFebruary 3, 2020 at 3:49 am in reply to: NO SLIDER! LayerSlider encountered a problem while it tried to show your slider. #1180779Hi,
Thank you for the update.
Did you remove the theme from the kdg2 site? We couldn’t find it in the themes panel. Please upload and activate the theme so that we can check the issue. Or provide a user account for the kdg1 site.
The Enfold version I am installing is the top left one on the list!
What do you mean?
Best regards,
IsmaelFebruary 3, 2020 at 3:37 am in reply to: WPML Language switcher offers languages in which no content is available #1180775Hi,
Thank you for the update.
However it does not blend in nicely with the overall design and needs serious tweaking via CSS on multiple levels which I gave up.
This is why the theme has its own flag switcher. Unfortunately, that is the only way to add the default switcher and the style has to be adjusted manually.
Have you tried to adjust the position of the language switcher from the main menu? You can probably set the position to absolute, then adjust the top and right property manually until it’s positioned beside the social icons.
Best regards,
IsmaelHi,
Sorry for the delay. You have to insert the whole function in the functions.php file. It will set the folder permission to 0755 instead of the default 0777.
Best regards,
IsmaelFebruary 3, 2020 at 3:31 am in reply to: Easy Slider – change size of "slideshow controls" and "captions" #1180771Hi,
Thank you for the update.
It’s going to use the default or base styling for the heading tags (h1, h2, h3 etc) and the caption or paragraph tags. You can adjust those elements in the Enfold > Advanced Styling panel or in the Enfold > General Styling > Fonts panel.
Best regards,
IsmaelFebruary 3, 2020 at 3:24 am in reply to: Advance Layout Builder UI – Not allowing edit of home page Spinning #1180768Hi,
Thank you for following up.
We copied the slider from your site to our own installation, but we couldn’t reproduce the same issue, so this is more likely related to the server. Please ask your hosting provider to increase the post_max_size from 20M to 50M.
To control the video size, try to adjust the Styling > Slideshow Settings > Slideshow Image and Video Size settings.
Best regards,
IsmaelwHi,
Yes, you should try the plugin and remove any shipping rules in your paypal account if there’s any. Let us know if the plugin helps.
Thank you for your patience.
Best regards,
IsmaelHi,
Sorry for the delay. We removed this css code from the style.css file because it overrode the default social icons.
/* enfold social media icons fix */ .social_bookmarks_xing a::before, .av-social-link-xing a::before { font-family: 'entypo-fontello'; content: ''; } .social_bookmarks_facebook a::before, .av-social-link-facebook a::before { font-family: 'entypo-fontello'; content: ''; } .social_bookmarks_linkedin a::before, .av-social-link-linkedin a::before { font-family: 'entypo-fontello'; content: ''; }Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for the update.
The sizes attribute is being added to the favicon tags. Did you install an image compression or optimization plugin?
<link rel="icon" href="https://hhomepage.ch/wp-content/uploads/2020/01/favicon-neu.png" type="image/png"> <link rel="icon" href="https://hhomepage.ch/wp-content/uploads/2019/02/favicon-36x36.png" sizes="32x32" /> <link rel="icon" href="https://hhomepage.ch/wp-content/uploads/2019/02/favicon.png" sizes="192x192" /> <link rel="apple-touch-icon-precomposed" href="https://hhomepage.ch/wp-content/uploads/2019/02/favicon.png" /> <meta name="msapplication-TileImage" content="https://hhomepage.ch/wp-content/uploads/2019/02/favicon.png" />Best regards,
IsmaelHi,
Thank you for the update.
Which of the image is not displaying? We can’t really tell by just looking at the slides. The markup looks alright and the blue background image displays just fine. Can we access the dashboard? A screenshot of what’s supposed to display in the slide will help.
Best regards,
IsmaelHi,
You’re welcome! Please don’t hesitate to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the info.
We edited the config-woocommerce > config.php file based on the instructions in the previous thread that we mentioned above. Let us know if the issue persists. If it does, please provide a link to the page where we can actually see the error.
Best regards,
IsmaelJanuary 31, 2020 at 1:42 pm in reply to: How to change the default image size in lightbox to full size? #1180261Hi,
@MichaelAlbany: The modification is not going to work well for portrait modes because the lightbox script automatically sets the maximum height of the images. You have to set the width to auto.We can override the default maximum height property, but the image will overflow outside the main container.
img.mfp-img { width: 85vw; max-height: none !important; }Best regards,
IsmaelHi,
Thank you for the update.
We created another example (see private field). Please edit the EN and DE page using the translation editor. You should not edit them with the advance layout builder. If you want to add more content, edit the SE version of the page first, then use the translation editor to change the content of the other languages.
Best regards,
IsmaelHey!
@brandpirate: Honestly, we already forgot what we did here. Can you create a new thread/ticket and post the details in the private field? The page that you posted above leads to 404.Best regards,
IsmaelHi,
Good morning there!
Sorry for the confusion. We don’t have access to the email address wordpress@kriesi.at. Please don’t send an invite in there. Instead create an SFTP account yourself and post the details here.
Thank you! :)
Best regards,
Ismael -
AuthorPosts
