Forum Replies Created
-
AuthorPosts
-
Hey stuart131,
Thank you for the inquiry.
When we checked the page, the masonry items load immediately once the tiles or the items in the first row are visible in the viewport. Did you figure out the issue?
Best regards,
IsmaelHey Mitchell,
Thank you for the inquiry.
Are you trying to add it on a template? You may need to the do_shortcode function. Please check the link below for more info.
// https://developer.wordpress.org/reference/functions/do_shortcode/
Examples can be found here: https://developer.wordpress.org/reference/functions/do_shortcode/#user-contributed-notes
Best regards,
IsmaelMarch 5, 2024 at 9:18 am in reply to: Portfolio grid not working / displaying all categories / or sorting #1436344Hi,
Great! Glad to know that this has been resolved. Let us know if you have more questions.
Have a nice day.
Best regards,
IsmaelHey andrelio,
Thank you for the inquiry.
Are you referring to the Tagline field in the Settings > General panel? You can add it manually as the site description by adding this hook in the functions.php file:
function ava_custom_meta_description() { $tagline = get_bloginfo('description'); echo '<meta name="description" content="' . $tagline . '" />' . "\n"; } add_action('wp_head', 'ava_custom_meta_description');However, we recommend installing SEO plugins such as Yoast or Rank Math instead of adding it manually. Please check the link below:
// https://yoast.com/meta-descriptions/
Best regards,
IsmaelHi,
Thank you for the link.
The zip file contains svg files, which are not recognized by the Iconfont Manager. You need to obtain the zip file from Fontello or Flaticon. If you have a custom svg icon that you wish to convert to an iconfont, you can use the converter on Fontello.com before downloading the zip file.
Please check the documentation for more info: https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
Best regards,
IsmaelHey carmen,
Thank you for the inquiry.
The size of the logo is only 200x60px, surrounded by a lot of transparent space. You may need to remove the excess transparent space and upload a larger version of the logo. The theme should vertically align the image automatically. If not, we can adjust it with css.
Best regards,
IsmaelHi,
No problem! Please feel free to open another should you have further questions about the theme.
Have a nice day
Best regards,
IsmaelMarch 5, 2024 at 8:57 am in reply to: Blog Posts: “106 resources are formatted as page link” warning on SEMrush #1436338Hi,
Thank you for the inquiry.
Would you mind providing a screenshot of the issue and the link to the page in question? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:
1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
2.) Locate the option to upload a file or an image.
3.) Select the screenshot file from your computer or device and upload it to the platform.
4.) After the upload is complete, you will be provided with a shareable link or an embed code.
5.) Copy the link or code and include it in your message or response to provide us with the screenshot.Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.
Best regards,
IsmaelMarch 5, 2024 at 8:57 am in reply to: Portfolio Items instead of Portfolio Categories on main Work/Portfolio page? #1436337Hi,
Thank you for the inquiry.
Could you give us a link to the portfolio page? Are you using the Portfolio Grid element? By default, the element should display portfolio items rather than portfolio categories.
Best regards,
IsmaelHi,
Great! Glad to know that this has been fixed. Please don’t hesitate to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the link.
You can add this css code to display the default tab titles side by side, aligned with each other, and hide the alternate ones.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive .tabcontainer .tab_titles { display: block; } .responsive .tabcontainer .tab.fullsize-tab { display: none; } }Please note that this modification will affect all Tab elements in the page.
Best regards,
IsmaelHi,
Thank you for the update.
We didn’t find any layer slider on the home page. Where did you place it? You may need to tweak the cache and compression options until you find the combination that works best with your server or setup.
Best regards,
IsmaelHi,
But is it possible with hooks and filters to hide the whole element-tabs in ALB but let authors
That might be possible. Please add this code in the functions.php file:
add_filter( 'admin_body_class', function( $classes ) { $user = wp_get_current_user(); $roles = $user->roles; $roles_string = implode( ' ', $roles ); return $classes . ' ' . $roles_string; }, 10, 1);Then add this hook to hide the ALB element buttons for specific user roles.
add_action( 'admin_head', 'ava_custom_admin_css' ); function ava_custom_admin_css() { if ( current_user_can( 'administrator' ) ) { ?> <style> .administrator .avia-builder-main-wrap .shortcode_button_wrap { display: none; } </style> <?php } }The hook above will hide the buttons for administrators. If you want to hide it for authors or editors, you have to adjust the css rule a bit.
.author .avia-builder-main-wrap .shortcode_button_wrap, .editor .avia-builder-main-wrap .shortcode_button_wrap { display: none; }Best regards,
IsmaelHi,
Thank you for the update.
1-2.) You can add your own sorting tags or adjust existing ones by editing the Accordion items. Look for the Content > Toggle Sorting Tags field, right below the content editor.
Best regards,
IsmaelMarch 5, 2024 at 8:31 am in reply to: Need to replace home page slider with full wide image with text #1436330Hi,
Thank you for the update.
Have you tried using the Image element? Again, you can add captions, which will be automatically set as overlay. There’s actually no difference between a Fullwidth Slider with a single image and an Image element. Both will use the img tag with the alt and title attribute.
Best regards,
IsmaelHi,
Thank you for the update.
Sanchez from Google and for bold Sanchez Slab?
This is possible but you will have to add or register the slab font separately, then apply it to the elements manually. Please check the documentation below for more info.
// https://kriesi.at/documentation/enfold/typography/#how-to-add-google-fonts-using-css
You can also apply custom styles to some elements in the Enfold > Advanced Styling panel.
Best regards,
IsmaelHi,
Thank you for the screenshots.
You can add this CSS code to relocate the mobile menu to the right of the header.
@media only screen and (max-width: 989px) { /* Add your Mobile Styles here */ .responsive #top #wrap_all .av_mobile_menu_tablet .main_menu { top: 0; left: auto; right: 0; display: block; transform: none; } .responsive #top #wrap_all .av_mobile_menu_tablet .main_menu .av-main-nav-wrap { transform: translateX(-50%); left: auto; right: 0; translate: none; float: right; } }Best regards,
IsmaelHi,
Thank you for the update.
We adjusted the css code a bit. Please edit the css code, then try to toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.
#top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content *, #top .av-caption-style-overlay .av-masonry-item-with-image ins:before, #top #wrap_all .av-caption-style-overlay .av-masonry-item-with-image del { color: #004079; }Best regards,
IsmaelHi,
What do you mean by “transition words”? Please provide a screenshot using platforms like Savvyify, Imgur or Dropbox. Are you using the Content Analysis feature?
// https://yoast.com/research/real-time-content-analysis/
Has Rank Math been verified to work properly with Enfold,
While the AI feature of the RankMath plugin is not compatible with the Advance Layout Builder (ALB), the plugin’s analysis tool should still function properly with the builder. It should be able to check or verify that the focus keywords are included in the content created using the builder.
Best regards,
IsmaelHi,
I set them all to 13px.
The current font size is already set to 13px. Have you tried using a larger value? Please provide the login details in the private field so that we can check the settings properly.
Best regards,
IsmaelHi,
@ThorstenFB: You can add the avf_allow_drag_drop in the functions.php file. Usage example can be found here: https://kriesi.at/support/topic/alb-does-not-work-with-user-role-editor/#post-1293830Please create another thread if you need more assistance.
Best regards,
IsmaelHi,
Glad to know that you managed to make this work. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey hugogimenez,
Thank you for the inquiry.
Please note that background videos are disabled on mobile devices, which is why a static or fallback image is required. If you need to display videos on mobile devices, try to use the Video element or create sliders using the Layer Slider.
Best regards,
IsmaelMarch 4, 2024 at 9:30 am in reply to: Probleme mit Farbsektion – Hintergrundbild wird viel zu groß vergrößert #1436221Hi,
Thank you for the update.
I have created the image exactly in the proportions of the color section,
When we checked the home page on our end (with a screen resolution of 2560x1600px), the size of the Color Section is only 1400x470px, while the background image measures 2500x470px. Their proportions and sizes are significantly different because the dimension of the Color Section changes based on the screen it is viewed on.
Also, please note that when the Parallax effect is enabled, the theme automatically enlarges the image container to compensate for the effect. If you need the entire image to be visible, you can use either the Fullwidth Easy slider or the Image element.
Best regards,
IsmaelHi,
Thank you for the update.
Yes, please create a site backup or restore point, then try to temporarily disable the compression settings. Let us know if this changes anything. Did you add any css modifications to the site?
Best regards,
IsmaelHi,
Thank you for the inquiry.
consider temporarily disabling the cache plugin and turning off the theme’s file compression settings
The suggestion above is simply to confirm whether the cache plugin or compression option is causing the issue. However, since you’ve already confirmed this, there’s no need to proceed with it.
If you’ve already activated the compression option in the cache plugin, it’s not necessary to enable the theme’s compression settings since they essentially do the the same things, and enabling both could be redundant and may lead to issues, as you’ve recently experienced.
Best regards,
IsmaelHey joschro,
Thank you for the inquiry.
The Contact Form will use the default email address set in the Settings > Administration Email Address field, but you can change it by editing the element. Look for the Content > Backend > Your E-Mail Address field. You may need to scroll down a little in order to see the Backend toggle.
Best regards,
IsmaelHi,
Thank you for the update.
When we checked the site, the Facebook Pixel script loads repeatedly, up to a thousand times, which could be causing issues on mobile phones. Have you installed a plugin related to the Facebook Pixel or this script?
https://storage.googleapis.com/builder-preview/iframe/pixel.jsBest regards,
IsmaelHey David Posthuma,
Thank you for the inquiry.
Yoast analysis tool should be able to read or detect the content of the Advance Layout Builder. Are you having issues with it? If you want to try another SEO plugin that is compatible with the theme, you can check RankMath.
// https://wordpress.org/plugins/seo-by-rank-math/
Best regards,
IsmaelHey beverlystone,
Thank you for the inquiry.
The sorting buttons are not visible because there were no Sorting Tags defined for the Accordion items. We edited the items and added a few sorting tags. Please make sure to purge the cache or do a hard refresh before checking the page.
Best regards,
Ismael -
AuthorPosts
