Forum Replies Created
-
AuthorPosts
-
Hi!
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,
IsmaelHi,
Thank you for the info.
Where can we find the News or Posts page? We didn’t find any elements that display excerpts on the home page. Please provide a direct link to the element or create a test page.
Best regards,
IsmaelHi,
Thank you for the update.
I imagine the administrator continues to see all the posts right?
When the hook above is used, only posts created by the active user are displayed, even for admin users. It will only work in the backend or dashboard.
Best regards,
IsmaelHi,
Great! Glad to know that you managed to work this out. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the info.
Instead of using the plugin, try to download the font from Google, upload it to the Enfold > Import/Export > Custom Font Manager, then select it as the body or heading font in the Enfold > General Styling > Fonts tab. For more info, please check the link below:
// https://kriesi.at/documentation/enfold/typography/#how-to-upload-custom-fonts
Best regards,
IsmaelHey tonyiatridis,
Thank you for the inquiry.
Did you set the Services page as the parent of the Outdoors page? It might be underlined because the Services page is the ancestor of the current page. You may need to deselect the page as the parent or just remove the Outdoors menu item completely from the menu.
You can also try this css code:
.current-menu-item:not(.current_page_parent) > a > .avia-menu-fx { opacity: 0; }Best regards,
IsmaelHi,
No problem! Glad we could be of help. Please feel free to open another thread should you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the info.
In the future, you can always find the latest version of WordPress here: https://wordpress.org/download/
Best regards,
IsmaelHi,
Thank you for the inquiry.
Did you override the header.php file or the footer.php file in your child theme? Please make sure to get the latest copy of the template files and redo the modifications. Also, try toggling or temporarily disabling the Enfold > Performance > File Compression settings after updating the template files.
Best regards,
IsmaelHey cuccarini,
Thank you for the inquiry.
You can use this filter in the functions.php file to display only posts created by the active user:
function av_filter_posts_by_current_user($query) { if (is_admin() && $query->is_main_query() && $query->get('post_type') === 'post' && current_user_can('edit_posts')) { $current_user_id = get_current_user_id(); $query->set('author', $current_user_id); } } add_action('pre_get_posts', 'av_filter_posts_by_current_user');Best regards,
IsmaelHi,
Thank you for the info.
We edited the functions.php file and adjusted the filter to keep the sticky posts on the front page and disable them on the category pages.
function exclude_sticky_posts_from_category_pages_filter($query) { if (is_admin()) { return $query; } if (is_front_page()) { $include = array(); $sticky = get_option('sticky_posts'); $args = array( 'post__not_in' => $sticky, 'category__in' => array(4, 31, 51, 52), ); $posts = get_posts($args); foreach ($posts as $post) { $include[] = $post->ID; } $include = array_merge($sticky, $include); $include = array_map('intval', $include); $query['post__in'] = $include; $query['orderby'] = 'post__in'; return $query; } if (is_category()) { $sticky_posts = get_option('sticky_posts'); if (!empty($sticky_posts)) { $query['post__not_in'] = $sticky_posts; } } return $query; } add_filter('avia_post_slide_query', 'exclude_sticky_posts_from_category_pages_filter');Please make sure to delete the cache before checking the pages.
Best regards,
IsmaelHi,
Thank you for the update.
Please check the privacy modal and look at tabs 3 and 4. You’ll find the same privacy toggles in both tabs. Please remove the duplicate toggles or remove the entire tab in the Enfold > Privacy & Cookies > Cookie Handling > Modal Popup Window section.
The script above removes the role attribute from the specified elements:
Header:
<header id="header" class="all_colors header_color light_bg_color av_header_top av_logo_left av_main_nav_header av_menu_right av_custom av_header_sticky av_header_shrinking av_header_stretch_disabled av_mobile_menu_phone av_header_transparency av_header_glassy av_header_searchicon_disabled av_header_unstick_top av_seperator_small_border av_bottom_nav_disabled av_alternate_logo_active" data-av_shrink_factor="50" itemscope="itemscope" itemtype="https://schema.org/WPHeader" style="margin-top: 0px;">Menu:
<nav class="main_menu" data-selectname="Velg en side" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"> <div class="avia-menu av-main-nav-wrap"> <ul role="menu" class="menu av-main-nav" id="avia-menu"> </nav>If you want to remove this manually from the template, edit the enfold/includes/helper-main-menu.php file and remove the avia_markup_helper function around line 213:
$main_nav = "<nav class='main_menu' data-selectname='" . __( 'Select a page', 'avia_framework' ) . "' " . avia_markup_helper( array( 'context' => 'nav', 'echo' => false ) ) . '>';Best regards,
IsmaelHey alessandrod44,
Thank you for the inquiry.
Yes, you can use the WPML plugin to create a multi-language website and register a different menu for each language. Please check the documentation below for more info.
// https://wpml.org/documentation/getting-started-guide/translating-menus/
Another option is Polylang: https://wordpress.org/plugins/polylang/
Best regards,
IsmaelHey Alessandro,
Thank you for the inquiry.
Please go to your Themeforest account, access the Enfold theme in the Downloads page, then download the License Certificate. You should find the valid purchase code info in the certificate. You can then use this code to register an account in the forum.
// https://kriesi.at/support/register/
Best regards,
IsmaelHi,
Thank you for the inquiry.
We can’t find any links or buttons in the section. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot.
Best regards,
IsmaelHey sunseekertours,
Thank you for the inquiry.
How did you register the Seymour One font? Did you upload the font using the Custom Font Manager? You might need to select it as the heading or body font in the Enfold > General Styling > Fonts tab.
Best regards,
IsmaelHi,
Great! Glad to know that this has been resolved. Please feel free to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelJuly 17, 2024 at 7:14 am in reply to: Strange behavior on frontpage with spacial heading and language switcher (wpml)? #1462212Hi,
Thank you for the info.
The FR language has the following custom CSS, which overrides the custom 25px bottom padding of the Special Heading element. Did you add this css code?
#main .container_wrap_first .av-special-heading { margin-top: 0px; padding-top: 12px; padding-bottom: 8px; }Best regards,
IsmaelHey Nihru,
Thank you for the inquiry.
Have you tried using the Video from the Advance Layout Builder? Please post a screenshot of the issue or provide a link to the page with the embedded videos. 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 Qgrafica_7,
Thank you for the inquiry.
The Iconbox element doesn’t include a background option by default. However, you can place it inside a Column element and apply the background to the column instead. Let us know if this works for you.
Best regards,
IsmaelHi,
Thank you for the update.
What do you mean by “selective portfolio items”? The Additional Portfolio Settings > Link portfolio item to external URL can be customized for each individual portfolio item.
Best regards,
IsmaelHi,
No problem! Glad we could be of help. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
In our previous message, we requested login credentials to access the dashboard. Please provide the details in the private field.
Best regards,
IsmaelHi,
Thank you for the update.
You can just directly apply the class name to $post_class variable that we mentioned above.
$is_guest = get_field('is_guest', $the_id); $guest_class = $is_guest ? 'is-guest' : ''; $post_class = "post-entry post-entry-{$the_id} grid-entry-overview grid-loop-{$post_loop_count} grid-parity-{$parity} {$last} {$guest_class}";You can then use the “.is-guest” selector to add the ribbon or adjust the style of the guest items.
.is-guest { /* Styles for guest users */ /* Example styles: */ color: #333; background-color: #f0f0f0; /* Add more styles here */ }Best regards,
Ismael -
AuthorPosts
