Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the info.
We added this code to the Quick CSS field and temporarily disabled the compression settings.
#top .main_color .avia-cookie-consent-modal-buttons-wrap .avia-color-theme-color-highlight:hover { background: var(--dark1-color) !important; color: white !important; }
Best regards,
IsmaelHi,
You’re very welcome! Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelSeptember 18, 2024 at 4:34 am in reply to: Post ID no longer displaying on Post Data feature on Button Element #1467253Hey Rustum,
Thank you for the update.
Where can we check the issue? Are you using dynamic content only in fields with the orange database icon? Again, please note that the placeholder for dynamic content will only work in these fields.
Best regards,
IsmaelHi,
Thank you for the inquiry.
We get an error in the console that seems to be generated by the Accordion element. Have you tried removing this element temporarily or deactivating the plugins?
Best regards,
IsmaelHey tammiviestinta,
Thank you for the inquiry.
Have you tried deactivating the plugins temporarily? An error occurs in the admin-ajax.php file whenever we try to edit the Text Block element.
Best regards,
IsmaelHi,
Thank you for the update.
We can only target either the title or the whole content. If you want to target a specific line of text, make sure to wrap it inside a unique container or element. Example:
<p class="av-text-red">AMCHAM</p>
You can then apply the color to the av-text-red element.
.av-text-red { color: red; }
Best regards,
IsmaelSeptember 17, 2024 at 6:16 am in reply to: Need Help with Something We were able to do in the past. #1467174Hey Dzimnikov,
Thank you for the inquiry.
You might have added the shortcode of a Testmonial slider in the category description. Please try this shortcode:
[av_testimonials style='slider' columns='2' grid_style='' control_layout='av-control-default' slider_navigation='av-navigate-arrows' nav_visibility_desktop='' nav_arrow_color='' nav_arrow_bg_color='' size-name='' av-desktop-font-size-name='' av-medium-font-size-name='' av-small-font-size-name='' av-mini-font-size-name='' size-subtitle='' av-desktop-font-size-subtitle='' av-medium-font-size-subtitle='' av-small-font-size-subtitle='' av-mini-font-size-subtitle='' size-content='' av-desktop-font-size-content='' av-medium-font-size-content='' av-small-font-size-content='' av-mini-font-size-content='' font_color='' custom_title='' custom_sub='' custom_content='' animation='fade' transition_speed='' autoplay='true' interval='5' alb_description='' id='' custom_class='' template_class='' element_template='' one_element_template='' av_uid='av-m15x5rhq' sc_version='1.0' admin_preview_bg=''] [av_testimonial_single name='Name' subtitle='' check='is_empty' element_template='' src='' src_dynamic='' link='https://' linktext='' one_element_template='' av_uid='' sc_version='1.0'][/av_testimonial_single] [av_testimonial_single name='Name' subtitle='' check='is_empty' element_template='' src='' src__locked='' src_dynamic='' src_dynamic__locked='' name__locked='' subtitle__locked='' content__locked='' link='https://' link__locked='' linktext='' linktext__locked='' one_element_template='' av_uid='' sc_version='1.0'][/av_testimonial_single] [/av_testimonials]
Best regards,
IsmaelHey nahmialm,
Thank you for the inquiry.
Is this issue occurring on the front page? We saved the content of the home page as a template and applied it to a temporary page. However, after adding a few elements and updating the page, we were unable to reproduce the issue. Please check the link provided in the private field.
Best regards,
IsmaelSeptember 17, 2024 at 5:58 am in reply to: Trying to access array offset on false warnings? #1467171Hi,
Thank you for the update.
We will forward the issue to our channel and keep the thread open for updates. In the meantime, you can hide the warnings by setting WP_DEBUG_DISPLAY to false. Please refer to the link below for instructions:
// https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/#wp_debug_display
Best regards,
IsmaelSeptember 17, 2024 at 5:52 am in reply to: ERROR When changing my logo and element was disabled error #1467170Hey arthurgta,
Thank you for the inquiry.
Could you please provide a screenshot of the error? You can use platforms like Savvyify, Imgur, or Dropbox to upload and share the screenshot.
Regarding the Special Heading, make sure that the element is not disabled in Enfold > Performance > Disable Template Builder Elements. Try temporarily loading all elements or manually toggling the required ALB elements.
Best regards,
IsmaelHi,
Thank you for the update.
The colour is green which is not on brand for me
That is the default border color of valid fields. If you want to change it, please add this css code:
#top #wrap_all .valid .select, #top #wrap_all .valid .text_area, #top #wrap_all .valid .text_input { border: 1px solid orange; }
Best regards,
IsmaelHi,
Thank you for the update.
To hide the category list, toggle the Enfold > Blog Layout > Blog Meta Elements > Blog Post Category option. Let us know if this works.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Unfortunately, this is not possible. If the post navigation is set to navigate only within the same category, it cannot loop back to the first item. You can choose to enable either looping or category-specific navigation, but not both.
Best regards,
IsmaelHi,
Thank you for the update.
To adjust the order of the cells, please include the following code inside the css media query:
.av-layout-grid-container { display: flex; flex-direction: column; }
To adjust the height of the cells containing the image, please edit the cells, go to Advanced > Developer Settings and apply the value av-cell-min-height-500 to the Custom CSS Class name field. Then, include this code in the css media query:
.av-cell-min-height-500 { min-height: 500px; }
Best regards,
IsmaelHi,
Thank you for the update.
You can try the following filter in the functions.php file. Make sure to replace the image path with your own.
function avf_masonry_entry_title_mod( $the_title, $entry, $atts ) { $post_format = get_post_format( $entry['ID'] ); $icon_url = ''; switch ( $post_format ) { case 'video': $icon_url = 'path/to/video-icon.png'; break; case 'audio': $icon_url = 'path/to/audio-icon.png'; break; case 'gallery': $icon_url = 'path/to/gallery-icon.png'; break; default: $icon_url = 'path/to/default-icon.png'; break; } $the_title .= " <span class='av-masonry-icon'><img src='{$icon_url}' alt='post-format-icon' /></span>"; return $the_title; } add_filter( 'avf_masonry_entry_title', 'avf_masonry_entry_title_mod', 10, 3 );
Best regards,
IsmaelHey Vera,
Thank you for the inquiry.
This is possible only when the Styling > Masonry Settings > Size Settings is set to Perfect Grid. Please add the following css code:
@media only screen and (min-width: 2024px) { .av-masonry-entry { width: 19.9%; } }
Best regards,
IsmaelHey Heidistoerr,
Thank you for the inquiry.
We’ll forward this request to our channel and provide an update when available.
Best regards,
IsmaelHi,
Thank you for the update.
The keyword is also present in the items in the AJAX search results. Please check the private field. It’s possible that your preferred or expected post was published in the past or is not included in the initial results. Users may need to access the full search results page and use pagination to view other pages containing the keyword.
Best regards,
IsmaelHi,
Thank you for the info.
Add unique class names to the Text Block elements with the fold/unfold option, such as av-fold-unfold-tuition-fees, av-fold-unfold-preschool-fees, etc. Then, create anchor links like https://site.org/fee-structure/#tuition-fees. To automatically trigger the fold/unfold on page load when a specific anchor or hash is present, include the following script in the functions file.
function ava_script_fees_click() { ?> <script type="text/javascript"> (function ($) { $(document).ready(function () { function triggerClick(hash, container) { if (window.location.hash === hash) { $(container + ' .av-fold-button-container').trigger('click'); } } triggerClick("#tuition-fees", ".av-fold-unfold-tuition-fees"); triggerClick("#preschool-fees", ".av-fold-unfold-preschool-fees"); triggerClick("#music-together-fees", ".av-fold-unfold-music-together-fees"); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_script_fees_click', 9999);
Best regards,
IsmaelSeptember 17, 2024 at 4:29 am in reply to: Deprecated: Creation of dynamic property avia_superobject #1467158Hey Gianluca,
Thank you for the info.
We’ll forward this issue to our team and provide an update in this thread once we find a fix. In the meantime, you can hide this warning by setting WP_DEBUG_DISPLAY to false. Please check the link below for more info.
// https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/#wp_debug_display
Best regards,
IsmaelHi,
Thank you for the update.
We may need to access the site and test the modifications. Please provide the login details in the private field.
Best regards,
IsmaelHey hm.stedler,
Thank you for the inquiry.
Where did you download the fonts from? Have you tried uploading them separately to the Custom Font Manager? Please post a screenshot of the issue or provide the login details in the private field.
Best regards,
IsmaelSeptember 16, 2024 at 6:22 am in reply to: Portfolio image on single portfolio page doesn’t transfer in overall Portfolio #1467055Hi,
Great! Glad to know that you managed to figure this out. For more info about the theme, please refer to the documentation below, and feel free to open another thread if you have further questions.
// https://kriesi.at/documentation/enfold/
Have a nice day.
Best regards,
IsmaelSeptember 16, 2024 at 6:10 am in reply to: Woocommerce product page template using block editor #1467054Hi,
Thank you for the update.
Try to add this filter in the functions.php file to change the thumbnail size in the single product page:
function avf_single_product_thumbnail_size( $size ) { return 'full'; } add_filter( 'single_product_small_thumbnail_size', 'avf_single_product_thumbnail_size' );
Best regards,
IsmaelHi,
You may need to add another 1/4 column at the end of the second row to ensure the columns are the same size as those in the first row. Add this css code to shift the row slightly to the right.
#top .flex_column_table.av-20ndm-838f183c878a6c3bb0dbd9bf9fac481e { margin-left: 8%; }
Best regards,
IsmaelHi,
Try to use this css code to change the hover effect:
#top .main_color .avia-cookie-consent-modal-buttons-wrap .avia-color-theme-color-highlight:hover { color: white; background: gray; border-color: orange; }
Update the color values as needed.
Best regards,
IsmaelHey dcoatney07,
Thank you for the inquiry.
The update API is no longer valid in version 4.2.3, so you won’t be able to update the theme via dashboard. You will need to download the theme from your Themeforest account and update the theme manually via FTP this time. Please check the link below for more info.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelHi,
Thank you for the inquiry.
We tried logging in, but the account mentioned above seems to be invalid. Please check the information carefully or provide another admin account. Have you tried importing the demo manually using the XML files as suggested above?
// https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo
Best regards,
IsmaelHey ibuzaev,
Thank you for the inquiry.
The AJAX search seems to be working as expected. Please check the screenshot in the private field.
Best regards,
Ismael -
AuthorPosts