Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
Which version of IE are you using? We can’t reproduce the issue on IE 11, MS Edge, MS Edge (IE 10 emulation). Have you tried removing the cache or testing it on another computer?
Best regards,
IsmaelHi,
Thank you for the update.
You need to use the “is_single” conditional function instead of “is_page” for portfolio items.
// https://developer.wordpress.org/reference/functions/is_single/
Best regards,
IsmaelHi,
Thank you for the update.
Did you set the Settings > General > Site Language to “Deutsch (Sie)”? Please try to set it to Deutsch. Or install the following plugin, search for the “Display Tabs above content” and “Display Tabs below content” text, then apply the translation manually.
// https://wordpress.org/plugins/loco-translate/
Best regards,
IsmaelHi,
Thank you for the update.
You can adjust the offset or position where the scroll lands. Edit the config-templatebuilder > aviashortcodes > tabs > tabs.js file. Look for this code around line 112:
scoll_target = el_offset - 50 - parseInt($('html').css('margin-top'),10);Replace it with:
scoll_target = el_offset - parseInt($('html').css('margin-top'),10);Best regards,
IsmaelAugust 22, 2019 at 4:14 am in reply to: How do I make a 3/5 container/column float in the top/left? #1129830Hi,
Thank you for the update. Glad that you’ve found a solution.
Try to wrap it inside a css media query so that it doesn’t affect the mobile view.
@media only screen and (min-width: 989px) { /* Add your Desktop Styles here */ .page-id-37 #av_section_1 .flex_column.av_three_fifth { position: relative !important; top: 25% !important; left: 10% !important; transform: translate(-25%, -50%) !important; } }Best regards,
IsmaelHi,
Thank you for the update.
It works fine when we remove the Blog Posts element. Did you add any custom html to the posts?
Best regards,
IsmaelAugust 22, 2019 at 3:40 am in reply to: button link option display error after copy to other language [using WPML] #1129824Hi,
The problem occurs before any modifications, and it will work fine after modifying the link options.
Does it only happen when you set the link the first time? If that’s the case, then you can just re-edit the link.
Sorry. I can’t reproduce the issue on my end. I’ll ask the rest of the team to check it.
Best regards,
IsmaelHi,
That’s the action priority and the number of variables exposed in the callback function “ava_before_page_in_footer_compile_polylang_mod”. Check the parameters in the documentation.
// https://developer.wordpress.org/reference/functions/add_action/
Thanks for the update.
Best regards,
IsmaelHi,
In this case, is it possible (withing the same CSS code) telling that:
Yes, you can include all of that in the style.css file. Let us know if you need further assistance.
Best regards,
IsmaelHi,
Yes, it’s quite odd. It seems to happen whenever the text block is moved. It’s fine when the text block remains in the same position. We have reported the issue to the team.
Thank you for the update.
Best regards,
IsmaelAugust 22, 2019 at 2:47 am in reply to: Play button overlay on video preview image goes tiny #1129816Hi,
Thank you for the update.
This should not have affected the font. Please make sure that you copied the css declaration correctly. Check if the closing curly brace exists.
Best regard
IsmaelAugust 22, 2019 at 2:38 am in reply to: Compatible Thank you Page / Google Tracking Code Plug-Ins #1129815Hi,
Thank you for the update.
1.) You can use this snippet to do a redirect after the checkout. Add it in the functions.php file and replace the URL.
add_action( 'template_redirect', 'woocommerce_redirect_after_checkout' ); function woocommerce_redirect_after_checkout() { global $wp; if ( is_checkout() && ! empty( $wp->query_vars['order-received'] ) ) { $redirect_url = 'https://yoursite/url-to-redirect-after-checkout'; wp_redirect($redirect_url ); exit; } }2.) You have to use Google Analytics, not Adwords. First, you have to create an event goal in your Google Analytics dashboard as described in the previous article. After setting that up, you need to use the “ga” or “gtag” function to trigger the event on page load.
// https://developers.google.com/analytics/devguides/collection/gtagjs/events
There are a lot of tutorials out there that should help you set this up.
// https://www.monsterinsights.com/how-to-create-a-goal-in-google-analytics-to-track-conversions/
// https://webris.org/creating-goals-out-of-events-in-google-analytics/This is beyond the scope of support, unfortunately, so we won’t be able to help you any further.
Best regards,
IsmaelHi,
Thank you for the update.
We totally forgot about that. Sorry. You can use this css code to shorten the background.
.caption_framed .slideshow_caption .avia-caption-content { display: table-cell; }Best regards,
IsmaelAugust 22, 2019 at 2:13 am in reply to: trouble with the_content(); and Advanced Layout Editor #1129813Hi,
Thank you for the update.
We set the “exec_sc_only” filter to always return true, which seems to help. However, I’m not sure if this is going to affect anything else. Just to make sure try to add a conditional function to the filter so that it is only executed on the page with the search filter.
// https://developer.wordpress.org/reference/functions/is_page/
Best regards,
IsmaelHi,
Thank you for the update.
The selector or class is a bit different for portfolio items.
.responsive .single-portfolio.postid-338 #header_meta { background-color: rgba(0, 158, 83, 0.7) !important; }Take note of the “.postid-338” selector.
Best regards,
IsmaelHi,
Thank you for the update.
Did you try the snippet above? You can add it in the functions.php file. It should increase the number of items in the AJAX search or search suggestions.
Best regards,
IsmaelHi,
You can include this code inside the css media query that we created recently.
#socket .menu { text-align: center; } #socket .sub_menu_socket li { float: none; display: inline-block; }Thank you for the update.
Best regards,
IsmaelHi,
thanks for replying, but, i don’t understand… where is the area to enter whitelisted IP addresses?
That option is not available, unfortunately. We don’t really understand why you need that. You seem to be overly complicating your development process.
Thank you for the update.
Best regards,
IsmaelAugust 21, 2019 at 6:27 am in reply to: Play button overlay on video preview image goes tiny #1129447Hi,
Thank you for the update.
This css code should adjust the style of the play icon.
#top .avia-video .av-click-to-play-overlay .avia_playpause_icon { opacity: 1; color: #ffffff; text-align: center; transform: translate(-50%, -50%); background-color: rgba(0, 0, 0, 0.5); padding: 17px 27px 7px 27px; }Best regards,
IsmaelHi,
This is not possible, unfortunately. What you can do is add an actual link with the iframe parameter, then set its visibility to hidden or the background to transparent.
Thank you for the update.
Best regards,
IsmaelHi,
It is working properly. You don’t need to add this modification.
.av-section-color-overlay + .container + .border-extra-diagonal { z-index: 0; }The z-index of the overlay is already set to 1. Setting the container’s z-index to 2 should be enough.
Best regards,
IsmaelHi,
Thank you for the update.
We adjusted the code a bit — replaced “avia_blog_post_query” with “avia_post_slide_query” because the layout is set to grid. It is working properly now.
Best regards,
IsmaelHi!
UPDATE: The upload is not working. Are you sure that the account has the correct permissions? We can access the folder but it fails when we upload the files.
UPDATE: It works now. We’ll let you know once it’s done.
UPDATE: You can now activate the beta version. Let us know if it changes anything.
Cheers!
IsmaelHi,
Thank you for the update.
Instead of adding the modification in every language, you can move it in the child theme’s style.css file. This way you won’t have to maintain 3 different source code.
Anyway, we added the following code in the Quick CSS field of each language and it didn’t disappear.
strong, b { font-size: 18px; }You’ll find it at the very bottom right above the comment.
/* WHAT ELSE ? */Best regards,
IsmaelHi,
Thank you for the update.
We are now uploading the beta version of the theme in your server. We’ll let you know once it’s done. The folder is named “enfold_latest”.
Best regards,
IsmaelAugust 21, 2019 at 5:49 am in reply to: Svg logo full width and full height of header centered above menu #1129424Hi,
Thank you for the update.
This should set the logo image to cover the header container and center align the main menu.
@media only screen and (max-width: 767px) { .responsive #top #wrap_all .av-logo-container { width: 100%; max-width: 100%; } .responsive .logo a { background: url(https://dev.latitude65.ca/wp-content/uploads/2019/08/Latitude65logo.svg) no-repeat; background-size: cover; background-position: center center; } .responsive .logo img { display: none !important; } .responsive #top #wrap_all .main_menu { left: auto; width: 100%; right: auto; } .responsive #top .av-logo-container .avia-menu { margin: 0 auto; float: none; } .responsive #top .av-main-nav .menu-item-avia-special { display: block; left: 50%; transform: translateX(-50%); } }Please don’t forget to toggle the Performance > File Compression settings after adding the modification. Or better yet, just disable it and the rest of the cache plugins temporarily while you’re building the site.
Best regards,
IsmaelHi,
Thank you for the update.
The css code doesn’t work for the other languages because the translated blog pages have a different ID. You have to replace the following selector with the actual ID of the translated blog pages.
#top.page-id-86This is the ID of the EN version:
#top.page-id-4621And the Spanish:
#top.page-id-4622Best regards,
IsmaelHey jp,
Vielen Dank, dass Sie Enfold verwenden.
Wo haben Sie der Button-Zeile Element hinzugefügt? Wir konnen es nicht auf der Seite finden.
Best regards,
IsmaelHi,
That’s a bit confusing. Are you telling us that you just missed something? Is it OK now?
Thank you for the update.
Best regards,
Ismael -
AuthorPosts
