Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the inquiry.
Edit the table where you need to apply the sort script, and apply the sortable class name in the Advanced > Developer Settings > Custom CSS Class field. Also, please note that the script will only work when Styling > Table Styling > Table Purpose is set to the second option (tabular data). Let us know how it goes.
Best regards,
IsmaelHey James,
Thank you for the inquiry.
You can add this css code to disable the animation of the masonry items and have them display immediately on load:
.av-masonry-entry { visibility: visible; opacity: 1; }Best regards,
IsmaelHey James,
Thank you for the inquiry.
You can try this script in the functions.php file:
function ava_custom_script_here() { ?> <script> (function ($) { function hideEmptyDescCols() { if ($(window).width() <= 768) { $('.avia-desc-col').each(function() { if ($(this).is(':empty')) { $(this).hide(); } }); } } $(document).ready(function () { hideEmptyDescCols(); $(window).resize(hideEmptyDescCols); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script_here');Best regards,
IsmaelHi,
Thank you for the update.
with the “old” version of enfold, the slider automatically received an ID (fullscreen_slider_1). After the Update, the ID is gone….
You can manually apply the ID in the elements’ Advanced > Developer Settings > Custom ID Attribute field. You can also apply Custom CSS Class names or add a description to the element.
Best regards,
IsmaelJuly 22, 2024 at 8:05 am in reply to: Padding conflict in the Menu between COLOURED button and OUTLINE (?) Button #1462642Hi,
Thank you for the update.
To temporarily fix the overlap issue, please add this css code:
.av_seperator_small_border .av-main-nav > li > a > .avia-menu-text { margin-left: 0; } .av_seperator_small_border .av-main-nav > li:not(.av-menu-button) > a > .avia-menu-text { margin-left: -13px; }And to change the font, please go to the Enfold > Advanced Styling panel and edit the Main Menu > Main Menu Links element.
Best regards,
IsmaelJuly 22, 2024 at 7:54 am in reply to: How to add Structured data with Enfold without a plugin #1462641Hi,
Thank you for the inquiry.
Using the hook as provided in the previous thread and manually adding the data to the template file are the same. Where did you get the structured data JSON code, or how do you structure it?
Best regards,
IsmaelJuly 22, 2024 at 7:50 am in reply to: Magazine Content Element: Place the “title” above the “categories” #1462640Hi,
Thank you for the inquiry.
As suggested above, try to use this avf_magazine_header_content filter in the functions.php file:
function avf_reorder_magazine_header_content($header_content, $entry) { $header_content = array( 'time' => $header_content['time'], 'author' => $header_content['author'], 'title' => $header_content['title'], 'cats' => $header_content['cats'], 'tags' => $header_content['tags'], ); return $header_content; } add_filter('avf_magazine_header_content', 'avf_reorder_magazine_header_content', 10, 2);Best regards,
IsmaelJuly 19, 2024 at 8:14 am in reply to: “Patterned” repetition of overlay area after decreasing browser view #1462465Hey reqonsult,
Thank you for the inquiry.
We can only reproduce the issue when zooming out the browser to 50% on a 2560x1440px screen resolution, which is equivalent to a resolution of 5K. Most users use 4K monitors at most. If you find this issue troublesome, you can add this css code.
#top div .av-section-color-overlay { background-repeat: no-repeat !important; background-size: cover !important; }Best regards,
IsmaelHey napsteris,
Thank you for the inquiry.
Would you mind providing a screenshot of the issue and a direct link to the checkout page? 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,
IsmaelHey strumpumpel,
Thank you for the inquiry.
is in mobile device check in the browser deeper as in my live iphone 11 phone.
What do you mean by “deeper”? Are you trying to adjust the position of the burger menu? If so, you can try this css code:
span.av-hamburger.av-hamburger--spin.av-js-hamburger { top: -5px; position: relative; }Best regards,
IsmaelJuly 19, 2024 at 7:44 am in reply to: WordPress upload error: The uploaded file is not a compatible plugin. #1462462Hey dataminegroup,
Thank you for the inquiry.
Did you extract the enfold.zip file from the package before uploading it? Please check the links below for more information on how to properly install and update the theme.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
// https://kriesi.at/documentation/enfold/install-enfold-theme/#back-up-your-work
// https://kriesi.at/archives/the-complete-guide-to-updating-enfoldBest regards,
IsmaelHi,
For the portfolio post type, you have to add this filter in the functions.php file to enable the Page Attributes > Order field.
/* Change portfolio post type settings */ function avf_portfolio_cpt_args_mod($args) { $args['supports'][] = 'page-attributes'; return $args; } add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod');Best regards,
IsmaelHi,
Thank you for the inquiry.
The plugin allows you to configure the title and meta for each post type in the Rank Math SEO > Titles & Meta panel. In version 6.0, Enfold added two custom post types called alb_elements and alb_custom_layout. If you want to remove these tabs, you can add the following code to your functions.php file:
add_filter( 'rank_math/settings/title', function( $tabs) { unset($tabs['post-type-alb_elements']); unset($tabs['post-type-alb_custom_layout']); return $tabs; });Best regards,
IsmaelHi,
Thank you for the update.
Can we get it to work the other way around where services is not underlined and outdoors is?
Try to replace the modification with this css code:
.current-menu-parent > a > .avia-menu-fx { opacity: 0; }Best regards,
IsmaelHey Jak73,
Thank you for the inquiry.
Yes, you may need to manually create this using html and a few css modifications. Please start with this html code in a text or code block element:
<div class="navigation"> <button class="nav-button left-arrow">←</button> <button class="nav-button close-button">×</button> <button class="nav-button right-arrow">→</button></div>Then add this css code:
.navigation { display: flex; justify-content: center; align-items: center; } .nav-button { background-color: #fff; border: 1px solid #ccc; padding: 10px; margin: 0 5px; cursor: pointer; font-size: 16px; } .nav-button:hover { background-color: #f0f0f0; } .left-arrow, .right-arrow { font-size: 18px; } .close-button { font-size: 20px; }Best regards,
IsmaelHey isynergy,
Thank you for the inquiry.
This is possible, but you have to directly modify the /enfold/includes/loop-index.php file and add this code around line 504:
$featured_image = get_the_post_thumbnail($the_id, 'thumbnail', array('class' => 'read-more-thumbnail')); echo '<div class="featured-image-container">' . $featured_image . '</div>';Above this code:
echo $close_header;Then, add this css code to move the image to the right.
.featured-image-container { float: right; }Best regards,
Ismael3Hi,
Thank you for the info.
Looks like the font is already selected for the main menu in the Enfold > Advanced Styling panel. Is that correct?
.main_menu .avia-menu-text { font-family: 'Seymour One' !important; }Best regards,
IsmaelHi,
Great! Let us know if you have more questions.
Have a nice day.
Best regards,
IsmaelHey Dameon,
Thank you for the inquiry.
You may need to set the Enfold > Shop Options > Product gallery settings to the second option (Woocommerce 3.0 gallery). Let us know if this helps.
Best regards,
IsmaelHi,
There’s no ETA yet, but we’ll forward this thread to our channel. It will probably be added in the next patch. If not, you will have to try the suggestion above.
Best regards,
IsmaelHi,
No problem! Let us know if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
We also added the text “Test Test Test” to the field, and it updated successfully. Where did you set this text to display, or where do you want it to display?
Best regards,
IsmaelHi!
We added the words “Test Test Test” to the field, and it updated successfully. It remains there when we update the page. However, if you’re referring to the search results, please note that it might take a while before they are updated. Simply change the description and allow some time, possibly days or even months, for the changes to take effect.
Cheers!
IsmaelHi,
Thank you for the update.
Looks like you’re referring to the Meta Description field. This is not an excerpt or part of the frontend. It will only change this part of the document.
<meta property="og:description" content="Réservez dès maintenant votre guide francophone ou Français à Tokyo pour une visite guidée originale, personnalisée et privée." class="yoast-seo-meta-tag">Please provide a screenshot of the element that you’d like to change in the frontend, or the element where you need to display custom text. You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot.
Best regards,
IsmaelHey lauragrashoff,
Thank you for the inquiry.
This is possible, but we don’t recommend it because we won’t have any control over the visibility of the items, so all pages will display in the element. If you want to try it, just add this code in the functions.php file.
add_theme_support('add_avia_builder_post_type_option');Edit the Blog Posts element, set the Content > Select Entries > Content To Display to the second option, then select Pages in the Select Post Type list.
Best regards,
IsmaelHi,
Thank you for the screenshots.
We temporarily added this code to fix the issue.
.responsive #top .avia-section .container { z-index: 2; } .responsive #top .avia-section .av-section-color-overlay { z-index: 1; position: absolute; }We’ll forward this thread to our channel.
Best regards,
IsmaelHi,
Thank you for the update.
Where do you intend to display the excerpt? By default, you cannot assign excerpts to pages. We also didn’t find any post elements on the above page. Are you using the Blog Posts element?
Best regards,
IsmaelJuly 18, 2024 at 8:32 am in reply to: Can’t Get Rid of “Welcome to Enfold 6.0.1” Banner Notification #1462356Hey Lance,
Thank you for the inquiry.
We don’t see the same notification on our end. Have you tried purging the cache? Please provide the login details in the private field so that we can check the issue.
Best regards,
IsmaelHey Ivana,
Thank you for the inquiry.
The icon is not yet available but you can manually add it by uploading this zip file to the Enfold > Import/Export > Iconfont Manager.
// https://1drv.ms/u/s!AjjTfXSRbKTvguM8owBR5qH5aci6dw?e=ylqhfA
Then add this code in the functions.php file:
// Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['threads'] = array('font' => 'threads', '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['Threads'] = 'threads'; return $icons; } add_filter('avf_social_icons_options', 'avia_add_custom_social_icon', 10, 1);You should now be able to add the new social icon from the Enfold > Social Profiles panel. Please check the links below for more info:
// https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
// https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-optionsBest regards,
Ismael -
AuthorPosts
