Forum Replies Created
-
AuthorPosts
-
October 8, 2020 at 11:31 am in reply to: Enfold Sidebar Menu – Need it to stick to the side, but also scroll? #1251377
Hi,
Thank you for the inquiry.
The sticky option is not working as expected because of this css code.
.html_header_sidebar #top #header.av_always_sticky { position: fixed; -webkit-backface-visibility: hidden; }
This makes the header sticky at all times regardless of its height, which breaks the default behavior.
Best regards,
IsmaelHi,
@vergara : The css code above will only center align the logo and the burger menu. They will not place the logo inside the mobile menu container. Placing a logo inside a mobile menu will require a custom script. Unfortunately, this modification is beyond the scope of support.You could try adding the logo in one of the menu items using an img tag, but we are not sure if the current script will include it in the mobile menu.
// https://www.w3schools.com/tags/tag_img.asp
If you need further help, please create a new thread and post the necessary details in the private field.
Best regards,
IsmaelHi,
Why can’t it load in the same place and just go to more blog posts? Why does it need to reload the entire page?
You are probably looking for asynchronous loading which is not available in the default WordPress pagination.
Again, is there no way for the blog posts to simply slide in the same section?
This is possible with the Masonry element by setting the pagination to the load more button. Or with a third party posts plugin with an AJAX feature.
Best regards,
IsmaelHi,
Would you mind providing the login details so that we could access the site? The theme should supply a valid href when the characters used in the tab section title is non Latin such as the Arabic text. Please post the login details in the private field and make sure that the Appearance > Editor panel is accessible.
FYI, the latest version of the theme is now out, v4.7.6.4.
Best regards,
IsmaelOctober 7, 2020 at 1:37 pm in reply to: How to deal with custom post type and a relative custom archive page layout #1251152Hey Elena,
Thank you for the inquiry.
What did you change in the archive-projects.php file? Have you tried using the is_post_type_archive function to check if the current archive page shows the Project post type?
// https://developer.wordpress.org/reference/functions/is_post_type_archive/
We could also use the avf_blog_style filter to adjust the blog style of the Project archive page to blog-grid.
Best regards,
IsmaelOctober 7, 2020 at 1:37 pm in reply to: How to deal with custom post type and a relative custom archive page layout #1251150Hey Elena,
Thank you for the inquiry.
What did you change in the archive-projects.php file? Have you tried using the is_post_type_archive function to check if the current archive page shows the Project post type?
// https://developer.wordpress.org/reference/functions/is_post_type_archive/
We could also use the avf_blog_style filter to adjust the blog style of the Project archive page to blog-grid.
Best regards,
IsmaelHey jaimemerz,
Thank you for the inquiry.
We are getting this error in the console whenever we visit the page.
Uncaught ReferenceError: gtag is not defined <anonymous> https://site.com/ga-test/:109
The error is from this inline script.
<script> gtag('event', 'mainnavclick', { 'event_category' : 'signup', }); </script>
Do you intend for the link to redirect to a different page? If not, you may also need to use the e.preventDefault function so that the link does not actually open the assigned link.
// https://www.w3schools.com/jsref/event_preventdefault.asp
Best regards,
IsmaelHey ggoulet,
Thank you for the inquiry.
This option is not available out of the box, so it will require certain modifications in the theme. Unfortunately, these changes are beyond the scope of support. You may need to look for a different social sharing plugin, or hire a freelance developer to modify the default social sharing section.
Best regards,
IsmaelOctober 7, 2020 at 1:15 pm in reply to: change img logo on scrolling with no transparent header #1251142Hi,
Sorry for the late reply. Looks like you already managed to change the logo on scroll exactly as you have requested previously.
Please do not hesitate to let us know if you need anything else.
Best regards,
IsmaelHey Dave,
Thank you for the inquiry.
This is possible but it will require a lot of modifications that are beyond the scope of support. The theme modifies the product templates by adjusting the product template hooks in the config-woocommerce > config.php file. Please hire a freelance developer or contact our partner, Codeable.
Best regards,
IsmaelHey MPPcreative,
Sorry for the delay. The following css code causes the sidebar to always stick regardless of the selected header settings in the theme options.
.html_header_sidebar #top #header { position: fixed !important; width: 300px; position: absolute; min-height: 100%; border-bottom: none; }
Is the css intended for mobile view? If it is, then you have to wrap it inside a css media query.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ }
Best regards,
IsmaelHey Dave,
Thank you for the inquiry.
unfortunately the video is not playing or playing with sound.
This is because of the browsers’ autoplay policy. Autoplay is only allowed when the video is muted, or when the active visitor previously played the video and play it with sound or when the users’ Media Engagement Index threshold has been crossed. Please check the link below for more info about the policy.
// https://developers.google.com/web/updates/2017/09/autoplay-policy-changes
Best regards,
IsmaelHi,
Thank you for the inquiry.
That option is not available by default but we could use the Fullwidth Submenu element to display a supporting horizontal menu in a particular page. Have you tried that?
Best regards,
IsmaelHi,
Sorry for the delay. Would you like to remove the sidebar in the base shop page page? The default or base shop page is considered as an archive page, so we have to adjust the Enfold > Sidebar Settings > Sidebar on Archive Pages to not display the sidebar (no sidebar).
Best regards,
IsmaelHi,
Sorry for the delay. We added all the latest css modifications in the Quick CSS field.
.topKontakt a { width: 215px; border-bottom: 0; padding-bottom: 14px; display: block !important; } .av-main-nav > li { line-height: 55px; width: 162px; } .responsive #top #header #header_main .inner-container .main_menu { flex-basis: auto !important; }
This code adjusts the icons in the header and the main menu. Please check the screenshot below.
Screenshot: https://imgur.com/a/3VzajmB
Best regards,
IsmaelHi,
Thank you for the inquiry
In the latest version, the theme should convert unique characters to a valid href or link so that the tab section could still navigate to the next or previous section even when the title is non latin. Please try to update the theme to the latest version 4.7.6.4 and toggle or temporarily disable the Performance > File Compression settings.
Best regards,
IsmaelOctober 7, 2020 at 11:41 am in reply to: Possibility, to change the link of the scroll-down arrow in the fullscreen slide #1251109Hey Bernd,
Thank you for the inquiry.
This is possible but we have to modify the themes\enfold\js\avia.js file and adjust this code around line 90:
container = clicked.parents('.container_wrap:eq(0)').nextAll('.container_wrap:eq(0)');
We could change eq value in the nextAll function from 0 to 1 so that it assigns the section after the hidden one as the container.
container = clicked.parents('.container_wrap:eq(0)').nextAll('.container_wrap:eq(1)');
Unfortunately, this will only work on desktop view.
Best regards,
IsmaelHi,
Thank you for following up.
We added this css in the Quick CSS field to adjust the position of the loading icon, and prevent the page from shaking while the additional posts are loading.
.avia_loading_icon { position: fixed; width: 100%; height: 100%; z-index: 9999; top: 0; } .av-siteloader { top: 50%; transform: translateY(-50%); }
Best regards,
IsmaelOctober 7, 2020 at 11:16 am in reply to: Color section – Problem Custom wallpaper – Setting Fixed – mobile / tablet #1251101Hi,
Thank you for the inquiry.
This setting only works on a desktop.
Yes, that is true. The Parallax effect is intentionally disabled on mobile devices and iOS devices have issues displaying Fixed background when the Background Repeat is set to Stretch to Fit. You may need to set the Background Repeat settings to Scale to Fit to make the fixed effect work on iOS devices.
// https://caniuse.com/background-attachment
Chrome has an issue that occurs when using the will-change property on a selector which also has background-attachment: fixed defined. It causes the image to get cut off and gain whitespace around it.
iOS has an issue preventing background-attachment: fixed from being used with background-size: cover – see detailsBest regards,
IsmaelHey Rémi,
Thank you for the inquiry.
Yes, this should be possible but we have to modify the enfold\config-templatebuilder\avia-shortcodes\av-helper-masonry.php file. The image caption is added around line 516.
$items .= "<div class='av-masonry-entry-content entry-content' {$markup}>{$content}</div>";
We could add the description below it.
$items .= "<div class='av-masonry-entry-description' {$markup}>{$loop_content}</div>";
Best regards,
IsmaelOctober 6, 2020 at 12:47 pm in reply to: Categories not showing in "blog post slider" and "show blog posts" #1250833Hi,
Thank you for the update.
We need to modify the enfold\config-templatebuilder\avia-shortcodes\postslider\postslider.php file, and add the code around line 898 where the time info is located.
$meta .= "<time class='slide-meta-time updated' $markup>" . get_the_time( get_option( 'date_format' ), $the_id ) . '</time>';
Below that code, we could add the custom shortcode for the category.
$meta .= '<span class="slide-meta-categories">'.do_shortcode("[sc_post_category]").'</span>';
Best regards,
IsmaelHi,
The video element works when use the sample vimeo URL, so there is something different with the current video that you are using.
Could you provide a screenshot of the video settings in the Vimeo panel? Did you allow the video to be embedded on external sites?
// https://vimeo.com/blog/post/how-to-embed-your-gorgeous-videos-across-the-nets/
Best regards,
IsmaelHi,
Thank you for the inquiry.
What happens when you set the same_category parameter to false, or this line.
$settings['same_category'] = true;
Please try to set it to false.
Best regards,
IsmaelHi,
Sorry for the delay. We managed to get into the file server but we are not sure which folder contains the site. We did not find a folder named “mauibedstores”, only “mauidoors”, but we are not sure if this is the same site. Could you point us to the correct directory or site path?
Best regards,
IsmaelOctober 6, 2020 at 12:08 pm in reply to: Inline Loading of Element's CSS & JS which are used one time only #1250821Hi,
Thank you for the update
Have you tried setting the Enfold > Performance > Disabling of template builder elements to the second option? With this option enabled, the theme will only load scripts and stylesheets for elements that are actually visible in the page.
Best regards,
IsmaelHi,
@mbesh: What do you mean by “simply put the posts in a slider”? Are you referring to the post slider element?
The modification or script that we provided in the previous thread will apply an anchor to the pagination links so users will automatically get redirected to the actual section where the blog posts element is. This is only needed when the posts element is not added at the very top of the page or if it is located somewhere in the middle or at the very bottom of the page. With the script, users will not have to scroll manually again to the posts section because of the added anchor in the pagination links.
Best regards,
IsmaelHi,
Thank you for the info.
That is not how we see the section or video preview on our end. Please check the Firefox screenshot below.
Screenshot: https://imgur.com/LJVHLX7
Which browser are you using, or where are you testing the site?
Best regards,
IsmaelHi!
Thank you for the update.
The field is not really intended for embedding Facebook Pixel code, but in your case it should work. However, please note that the pixel code will also be disabled if the user chose not to accept Google Analytics tracking.
Cheers!
IsmaelOctober 6, 2020 at 11:45 am in reply to: Privacy settings: Google Tag Manager/Analytics active even after opt out? #1250810Hi,
@isee: Thank you for sharing the code. This will surely help a lot of users.Best regards,
IsmaelHey MPPcreative,
Thank you for the inquiry.
The pseudo element that contains the other social icons are missing for unknown reason. Have you tried disabling the plugins temporarily?
Did you modify any of the theme files?
For the phone icon, we could utilize one of the social icons that you are not planning to use (the VK icon for example) and change its default icon to a phone icon using the avf_default_icons filter in the functions.php file.
Usage examples:
// https://kriesi.at/support/topic/fontello-icons-not-working/#post-1193152
// https://kriesi.at/support/topic/click-to-chat/#post-1193437
// https://kriesi.at/support/topic/enfold-add-multiple-social-profile-icons/If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
Ismael -
AuthorPosts