Forum Replies Created
-
AuthorPosts
-
February 28, 2024 at 9:07 am in reply to: Custom Social Icons via Enfold options, extend script #1435688
Hey phil-0071,
Thank you for the inquiry
You can duplicate this line to create another icon. Simply add it below the existing one:
$icons['Icon Label'] = 'icon_name';To assign an icon to the new social icon, simply duplicate this line similarly above.
$icons['icon_name'] = array( 'font' =>'fontello', 'icon' => 'ue800');If you want to add 3 icons, for example, the filter should look something like this:
// Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['icon_name'] = array( 'font' =>'fontello', 'icon' => 'ue800'); $icons['another_icon_name'] = array( 'font' =>'fontello', 'icon' => 'ue800'); $icons['new_icon_name'] = array( 'font' =>'fontello', 'icon' => 'ue800'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); // Add new icon as an option for social icons function avia_add_custom_social_icon($icons) { $icons['Icon Label'] = 'icon_name'; $icons['Another Icon Label'] = 'another_icon_name'; $icons['New Icon Label'] = 'new_icon_name'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);Make sure to update the value of the “icon” attribute.
$icons['new_icon_name'] = array( 'font' =>'fontello', 'icon' => 'ue800');Best regards,
IsmaelFebruary 28, 2024 at 8:55 am in reply to: Lazy loading disabled but images still not loading #1435684Hi,
Glad to hear that the modification helped. However, we are not able to replicate the same issue on our end, suggesting it might be specific to your installation. This could be due to a modification or custom scripts. If you encounter more issues, please don’t hesitate to open another thread.
Have a nice day.
Best regards,
IsmaelFebruary 28, 2024 at 8:52 am in reply to: Masonry Gallery Overlay Color Different on Desktop Vs. Mobile #1435682Hi,
Please refer to: https://kriesi.at/support/topic/add-margin-to-bottom-of-blog-grid-layout-on-mobile-view/#post-1435681
Best regards,
IsmaelFebruary 28, 2024 at 8:52 am in reply to: Add Margin To Bottom of Blog Grid Layout on Mobile View #1435681Hi,
Thank you for the update.
We’ve checked the modifications in the Quick CSS field and noticed that one of your css media queries is missing a closing tag or curly brace, which renders the rest of the css rules invalid.
/* MASONRY GALLERY FONT SIZE AND COLOR */ @media only screen and (min-width: 768px) {We didn’t try to adjust it because we are not sure which modifications are meant for desktop and which are intended for other screen sizes. Also, please make sure to remove duplicate css media queries such as
@media only screen and (max-width: 767px) {You only require one instance of this per stylesheet.
Best regards,
IsmaelFebruary 28, 2024 at 8:44 am in reply to: Code disappear from blocks of code when saving page #1435680Hey Eric,
Thank you for the inquiry.
What code are you trying to add to the Code Block element? Please post the code on pastebin.com. Also, please note that script or input tags can cause issues with the layout builder, so it’s not recommended to add them directly to the editor.
Best regards,
IsmaelHi,
So my iPhone 12 has a screen width of 1170px in portrait mode so only the Desktop mode will work.
You might be referring to the phone’s screen resolution. However, the actual viewport size of an iPhone 12 is only 390px × 844px, so it can only contain or display images in full with the same aspect ratio. But as I mentioned above, the images in the slider are set as backgrounds, so the size of slider will not be dependent on the size of the slider images. If you need a slider that resizes based on the dimensions of the slider images, try to replace the Fullscreen Slider with the Fullwidth Slider, or use the Image element.
Best regards,
IsmaelHey jeel147,
Thank you for the inquiry.
The arrows will display posts or items that are adjacent to the current post based on the date they were published. Unfortunately, there is no option to adjust this, and you cannot sort the items manually. You can hide the arrows by adjusting the Enfold > Blog Layout > Single Post Options > Single Post Navigation settings.
Best regards,
IsmaelFebruary 28, 2024 at 8:25 am in reply to: Advanced Layer Slider: slide transitions not working #1435677Hey annevoelkel,
Thank you for the inquiry.
The transition seems to be working as expected when we tested it on the default layer slider demo. Please provide the login details in the private field so that we can check the layer slider settings.
Best regards,
IsmaelHi,
Thank you for the inquiry.
As mentioned by @Guenni007 above, this is the default behavior of the logo link when clicked. If you’re on a different page, the site will have to reload in order to redirect to the home page.
Best regards,
IsmaelHey Dejan,
Thank you for the inquiry.
You can add this css code to adjust the maximum width of the elements in the custom post type.
#top.awsm_job_openings-template-default.single-awsm_job_openings .fullsize .template-blog .post .entry-content-wrapper, #top.awsm_job_openings-template-default.single-awsm_job_openings .fullsize .template-blog .post .entry-content-wrapper .entry-content-header, #top.awsm_job_openings-template-default.single-awsm_job_openings .fullsize .template-blog .post .entry-content-wrapper .entry-content, #top.awsm_job_openings-template-default.single-awsm_job_openings .fullsize .template-blog .post .entry-content-wrapper > *, #top.awsm_job_openings-template-default.single-awsm_job_openings .fullsize .template-blog .post .entry-content-wrapper .entry-content-header .post-title { max-width: 1310px; }Best regards,
IsmaelHey Dave,
Thank you for the inquiry.
Make sure that a page is selected as shop page in the Woocommerce > Settings > Products panel, go to the Appearance > Customize > Woocommerce > Product Catalog tab, then set the Shop page display settings to Show categories and products. To display the subcategories, set the Category display settings to Show subcategories & products.
Best regards,
IsmaelFebruary 27, 2024 at 8:57 am in reply to: Page uploads every time an anchor text is clicked on #1435547Hey tcampaner,
Thank you for the inquiry.
Try editing the menu items and replace the absolute URL (https://site.ro/#about-us) with just the anchor (#about-us). Let us know if this helps.
Best regards,
IsmaelHi,
1-2.) You can display the product category title and breadcrumb by adjusting the Enfold > Header > Header Layout > Header Title and Breadcrumbs settings. However, if you prefer to customize the template yourself, you can create a copy of the wp-content/plugins/woocommerce/templates/taxonomy-product-cat.php file, or you can use the following hook in the functions.php file:
add_action('woocommerce_before_main_content', function() { if(is_product_category()) { echo "<h3>" . woocommerce_page_title(false) . "</h3>"; } }, 30);3.) The builder is deactivated for the default shop page by default, but you can enable it by adding the following filter in the functions.php file. However, please note that there are limitations when using the ALB, and other shop or product features may not work when the layout builder is active.
add_theme_support( 'avia_custom_shop_page' );Best regards,
IsmaelHi,
Thanks for the follow up.
You can display the title and breadcrumb by adjusting the Enfold > Header > Header Layout > Header Title and Breadcrumbs settings. Set it to the first option to display the title and breadcrumbs.
Or edit the enfold/taxonomy-portfolio_entries.php file and look for this code:
<div class="category-term-description"> <?php echo term_description(); ?></div>Replace it with:
<div class="category-term-description"> <h3><?php echo single_term_title(); ?></h3> <?php echo term_description(); ?></div>Best regards,
IsmaelHey WorldinColor,
Thank you for the inquiry.
The section in the demo appears tall due to the content or columns inside it. On your test page, it seems that the color sections are empty except for a single Special Heading element. If you want to increase the height of the section without adding more content, you can adjust the Layout > Section Height > Section Minimum Height settings.
Best regards,
IsmaelFebruary 27, 2024 at 8:08 am in reply to: Masonry Gallery Overlay Color Different on Desktop Vs. Mobile #1435542Hey imagestudios,
Thank you for the inquiry.
Please add this css code to adjust the color of the masonry overlay on mobile view.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content { background: rgba(0, 87, 130, 0.7); } }If you have an existing css media query for a breakpoint (max-width: 767px), you can just copy the css rule above and place it within the existing media query.
Best regards,
IsmaelFebruary 27, 2024 at 8:06 am in reply to: Add Margin To Bottom of Blog Grid Layout on Mobile View #1435541Hey imagestudios,
Thank you for the inquiry.
You can try this css code to increase the margin between each article or post entry on mobile view.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top #wrap_all .flex_column.slide-entry { margin-bottom: 64px; } }Best regards,
IsmaelHi,
Thank you for renewing your support license.
Please note that the images in the slider are set as background, so the dimensions of the slider will not depend on the size and aspect ratio of the images. What we recommend is to add another slider below the current one and upload images that are specifically resized for mobile view. You can then toggle the visibility of both sliders by adjusting the options in the Advanced > Responsive > Element Visibility settings. Essentially, you’ll have two sliders: one for desktop view and another for smaller screens.
Best regards,
IsmaelHey ashleyknow,
Thank you for the inquiry.
When did you receive the email? The link might have expired and is no longer available. The current price for support renewal is now set at $41.13, when we checked. You might want to contact Themeforest for more information about the discount.
Best regards,
IsmaelHey peoplexbrand,
Thank you for the inquiry.
Did you install a cache and image compression plugin? Please follow the steps provided in the following links to further improve the loading speed of the site.
// https://gtmetrix.com/wordpress-optimization-guide.html
// https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslowBest regards,
IsmaelHey danielhastings,
Thank you for the inquiry.
Did you add HTML tags to the page? Please make sure that all tags are properly closed to avoid breaking the layout of the builder and potentially causing missing content.
You can also save the content of the page as a template, then try removing one element at a time and updating the page each time to identify the cause or the element that is causing the issue.
Best regards,
IsmaelHey schwabino,
Thank you for the inquiry.
The page seems to be slightly slow when we checked it, possibly due to the number of video or iframe elements. You might want to consider creating dedicated pages for each video category instead of piling them all up on a single page. The video element loads the same iframe tag compared to the default video embedding, so using a plugin or loading it differently may not really affect the performance.
If you don’t want to create dedicated pages for each category, an alternative option is to use a Masonry Gallery or Gallery element. You can place the video URL in the Custom Link field, then set the Advanced > Link Settings > Image Link settings to Use custom link. This will open the videos in a lightbox or popup modal.
Best regards,
IsmaelFebruary 27, 2024 at 7:28 am in reply to: Removing Horizontal line – Special Heading (Elegant Centered and Default Styles) #1435531Hi,
Thank you for the update.
Your css code should have worked. Where did you add it? Please try to move the modification in the Enfold > General Styling > Quick CSS field, then temporarily disable the Enfold > Performance > File Compression settings.
#top .acme-av-special-heading .special-heading-border { display: none !important; }Best regards,
IsmaelHi,
Thank you for the inquiry.
Would you mind posting the css code using Pastebin.com? We will check to see if there is any invalid css code that is causing the layout to break. You can also verify it yourself using the following tool.
// https://www.cssportal.com/css-validator/
Best regards,
IsmaelHi,
Thank you for the info.
Edit the cells with the background image, navigate to Advanced > Developer Settings toggle, and in the Custom CSS Name field, enter the name “av-mobile-column-background”. Then, you can apply the following css code to adjust the size of the background image on mobile view.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top #wrap_all .flex_cell.av-mobile-column-background { height: 200px; min-height: 200px; background-size: contain !important; padding: 0 !important; } }Best regards,
IsmaelFebruary 27, 2024 at 7:14 am in reply to: Lazy loading disabled but images still not loading #1435528Hey mgyura,
Thank you for the inquiry.
We were able to reproduce the issue but we are not yet sure what is causing it. Have you tried adding more content below the gallery? Yu can also use this css code to disable the animation entirely.
.avia_transform .avia-gallery-animate .avia-gallery-thumb img.avia_start_animation { animation: none; } .avia_transform .avia-gallery-animate .avia-gallery-thumb img { opacity: 1; transform: scale(1); }Did you install another compression or lazy loading plugin?
Best regards,
IsmaelHi,
No problem! Glad we could be of help. Please let us know if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey GUMC-Rosier,
Thank you for the inquiry.
Can you reproduce the issue when using a different theme? Please clone the site to a staging environment, then provide the CSV file so that we can check the issue further.
Best regards,
IsmaelHey Qgrafica_7,
Thank you for the inquiry.
1.) Have you tried using the Layer Slider element? Add a Video layer or element, then enable the Background Video option in the Layer Settings > Video Audio > Media Options panel.
2.) Would you mind providing a screenshot of the issue? You can adjust the style of the title in the Enfold > Advanced Styling panel.
Best regards,
IsmaelFebruary 27, 2024 at 7:02 am in reply to: page updating fails and past revisions fail to load #1435524 -
AuthorPosts
