Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the inquiry.
You can use the following filter to add a new social icon into the list.
However, as the LINE icon isn’t included by default, you’ll need to retrieve an SVG version of the icon and convert it to a font icon using Fontello. Afterward, you can upload it to the theme using the Iconfont Manager. Please refer to the documentation below for detailed instructions.
// https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
// https://vimeo.com/75743285Best regards,
IsmaelHey condonp,
Thank you for the inquiry.
You can add this filter in the functions.php file to replace the default image overlay icon.
function avf_default_icons_mod($icons) { $icons['ov_image'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue83d'); return $icons; } add_filter('avf_default_icons','avf_default_icons_mod', 10, 1);Best regards,
IsmaelHi,
Thank you for the update.
Did you remove the widget? We can’t find it in the header. To reposition the widget, try adjusting the left or right values in the css rule above.
#text-4 { position: absolute; left: auto; right: 50px; }Best regards,
IsmaelHey Roman,
Thank you for the inquiry.
We are not yet sure what is causing the issue but you can temporarily fix it by editing the enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.js file, look for this code around line 191.
if( new_items.length > data.items )Replace it with:
if( new_items.length > data.items || new_items.length == data.items)Please make sure to temporarily disable the Enfold > Performance > File Compression settings after doing the modification.
Best regards,
IsmaelDecember 14, 2023 at 5:09 am in reply to: enfold does not work properly. After update everything is gone. #1428047Hi,
There is a Private Content field just below the main editor. You can place the login details there.
Best regards,
IsmaelHey dlott,
Thank you for the inquiry.
We can’t find the same errors on the front end, and the provided account details didn’t work when we attempted to log in. Would you mind providing another admin account so that we can check the issue further?
Best regards,
IsmaelDecember 14, 2023 at 4:50 am in reply to: PHP 8 Causes Styling To Break On “Share This” & Related Posts Sections? #1428045Hey dlott,
Thank you for the inquiry.
We tried logging in to the site but the account above seems to be invalid. Please check the login info carefully, or provide a screenshot of the issue. In the meantime, please try to toggle or temporarily disable the Enfold > Performance > File Compression settings and see if it helps.
Best regards,
IsmaelDecember 11, 2023 at 11:01 am in reply to: enfold does not work properly. After update everything is gone. #1427759Hey Faatje79,
Thank you for the inquiry.
Did you add any html tags or scripts to the page? Please make sure that there are no invalid tags in the page, and that all tags are closed properly. Invalid tags could break the layout of the page and result in missing content after updating.
Best regards,
IsmaelHi,
Thank you for the update.
It might be an issue with the Enfold Performance > File Compression settings. We disabled the compression settings temporarily. Let us know if the issue persists.
Best regards,
IsmaelHi,
Thank you for the update.
You don’t need to buy a new license. Just download the latest version of the theme from your Themeforest account, then update the theme manually via FTP as suggested above. Please check the documentation below for more information on how to update the theme manually via FTP.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelHey maryenvato,
Thank you for the inquiry.
The blog or news page is always included in the breadcrumb by default when viewing a single post, but you can remove it by adding this filter in the functions.php file.
function avia_breadcrumbs_trail_mod($trail) { // remove news trail if ( is_singular( 'post' ) ) { unset($trail[1]); } return $trail; } add_filter('avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 1);Best regards,
IsmaelDecember 11, 2023 at 10:39 am in reply to: Missing or wrong type of fields in WPML translation editor #1427751Hi,
Alright! Let us know if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
I can‘t see the author‘s name and category too.
If you have enabled the Advanced Layout Builder, you have to add this information manually using the available elements in the builder or as a custom shortcode. To display the author, for example, you can use this shortcode in a Text or Code Block.
[sc_post_author]Then add this code in the functions.php to define the shortcode.
function post_author_shortcode(){ if(!is_singular()) return; $author_id = get_queried_object()->post_author; $displayname = get_the_author_meta('display_name', $author_id); return $displayname; } add_shortcode( 'sc_post_author', 'post_author_shortcode' );If you need to display the default elements of the posts, we recommend using the default or classic editor instead of the Advanced Layout Builder.
Best regards,
IsmaelDecember 11, 2023 at 6:16 am in reply to: How to get rid of curved arrow on linked images, and allow image title to show #1427742Hey gatehealing,
Thank you for the inquiry.
You can add this css code to remove the image overlay and allow the title tooltip to display on hover.
.avia-image-overlay-wrap a.avia_image .image-overlay { display: none !important; }Best regards,
IsmaelHi,
No problem! Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey schweg33,
Thank you for the inquiry.
You can add this css code to apply a minimum height to the iconbox content.
.flex_column_table.av-kh47oq-ebd8296e864cdb607dd998afec3917c9 .flex_column .iconbox .iconbox_content { min-height: 270px; } @media screen and (max-height: 1024px) { .flex_column_table.av-kh47oq-ebd8296e864cdb607dd998afec3917c9 .flex_column .iconbox .iconbox_content { min-height: 300px; } }Best regards,
IsmaelHi,
Thank you for the screenshot.
We may need to access your server in order to check the issue further. Please create a staging or development version of the site and post the S/FTP details in the private field.
Best regards,
IsmaelDecember 8, 2023 at 10:46 am in reply to: Test page with solution now in Google Search results – please delete test page #1427545December 8, 2023 at 4:02 am in reply to: How to change the words “Beiträge” and “Portfolio Einträge” #1427526Hey cheffe,
Thank you for the inquiry.
You can use this filter to adjust the labels of the portfolio post type.
add_action( 'after_setup_theme', 'init_reg_portfolio' ); function init_reg_portfolio() { add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod', 50, 1); } function avf_portfolio_cpt_args_mod($args) { $labels = array( 'name' => _x( 'Portfolio Items', 'post type general name','avia_framework' ), 'singular_name' => _x( 'Portfolio Entry', 'post type singular name','avia_framework' ), 'add_new' => _x( 'Add New', 'portfolio', 'avia_framework' ), 'add_new_item' => __( 'Add New Portfolio Entry', 'avia_framework' ), 'edit_item' => __( 'Edit Portfolio Entry', 'avia_framework' ), 'new_item' => __( 'New Portfolio Entry', 'avia_framework' ), 'view_item' => __( 'View Portfolio Entry', 'avia_framework' ), 'search_items' => __( 'Search Portfolio Entries', 'avia_framework' ), 'not_found' => __( 'No Portfolio Entries found', 'avia_framework' ), 'not_found_in_trash' => __( 'No Portfolio Entries found in Trash', 'avia_framework' ), 'parent_item_colon' => '' ); $args['labels'] = $labels; return $args; }And to adjust the default post, try this code.
function ava_post_menu_label() { global $menu; global $submenu; $menu[5][0] = 'News'; $submenu['edit.php'][5][0] = 'News'; $submenu['edit.php'][10][0] = 'Add News'; echo ''; } function ava_post_object_label() { global $wp_post_types; $labels = &$wp_post_types['post']->labels; $labels->name = 'News'; $labels->singular_name = 'Article'; $labels->add_new = 'Add Article'; $labels->add_new_item = 'Add Article'; $labels->edit_item = 'Edit Article'; $labels->new_item = 'Article'; $labels->view_item = 'View Article'; $labels->search_items = 'Search News'; $labels->not_found = 'No News found'; $labels->not_found_in_trash = 'No News found in Trash'; $labels->name_admin_bar = 'Add Article'; } add_action( 'init', 'ava_post_object_label' ); add_action( 'admin_menu', 'ava_post_menu_label' );Best regards,
IsmaelDecember 8, 2023 at 3:44 am in reply to: Missing or wrong type of fields in WPML translation editor #1427525Hi,
Thank you for the update.
Yes, this is normal. The element ID or class name cannot be changed for each language. You will have to use the same anchor for every language.
Best regards,
IsmaelHi,
Thank you for the info.
The S/FTP account seems to be invalid. Please try to edit the wp-config.php file, then add this code around line 66.
define( 'DISALLOW_FILE_EDIT', false );Just below this line.
$table_prefix = 'wp_';Best regards,
IsmaelHey marjolein sileon,
Thank you for your interest in the theme.
The Advance Layout Builder is not available for custom post types that are not included in the theme by default, but it can be enabled manually with a filter. Please check the documentation below.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#alb-for-any-post-type
Also, please note that integrating custom fields to the builder elements may require some extra modifications.
Best regards,
IsmaelDecember 8, 2023 at 3:20 am in reply to: Test page with solution now in Google Search results – please delete test page #1427522Hey CJGVD,
Thank you for the inquiry.
Did you install an SEO plugin such as Yoast? You can set the robots meta tag of the page to “noindex” to prevent crawlers from including it in the search results. Please check the links below.
// https://yoast.com/help/how-do-i-noindex-urls/#single
// https://yoast.com/wordpress-noindex-post/Please note that deleting the page or setting it to noindex will not immediately remove the page from search results. It may take some time before the search results get updated.
Best regards,
IsmaelHey Lene,
Thank you for the inquiry.
How did you duplicate the page? Did you use a plugin? Instead of duplicating the page, try to save the builder content as template, delete the old page, then apply the template to a new page.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#templates
The link with visible codes is an RSS feed URL, automatically generated by WordPress. However, instead of displaying XML code, it shows HTML tags of the page, which is incorrect. If you want to disable it, add this code in the functions.php file.
/** * Display a custom message instead of the RSS Feeds. * * @return void */ function wpcode_snippet_disable_feed() { wp_die( sprintf( // Translators: Placeholders for the homepage link. esc_html__( 'No feed available, please visit our %1$shomepage%2$s!' ), ' <a href="' . esc_url( home_url( '/' ) ) . '">', '</a>' ) ); } // Replace all feeds with the message above. add_action( 'do_feed_rdf', 'wpcode_snippet_disable_feed', 1 ); add_action( 'do_feed_rss', 'wpcode_snippet_disable_feed', 1 ); add_action( 'do_feed_rss2', 'wpcode_snippet_disable_feed', 1 ); add_action( 'do_feed_atom', 'wpcode_snippet_disable_feed', 1 ); add_action( 'do_feed_rss2_comments', 'wpcode_snippet_disable_feed', 1 ); add_action( 'do_feed_atom_comments', 'wpcode_snippet_disable_feed', 1 ); // Remove links to feed from the header. remove_action( 'wp_head', 'feed_links_extra', 3 ); remove_action( 'wp_head', 'feed_links', 2 );Best regards,
IsmaelHey Michael,
Thank you for the inquiry.
You can adjust this in the Enfold > Shop Options > Header Account Icon settings. Select the first option to hide the account icon.
Best regards,
IsmaelHi,
Thank you for the inquiry.
If you don’t have a child theme, you can’t follow the first suggestion above. If you prefer the second option, edit the functions.php file and add the code below the line mentioned above. This will enable the debug mode and allow you to extract the builder shortcodes from the shortcodes field.
//set builder mode to debug add_action('avia_builder_mode', "builder_set_debug"); function builder_set_debug() { return "debug"; }Place it below this code around line 46.
if( isset( $avia_config['use_child_theme_functions_only'] ) ) { return; }After that, edit one of the pages with the timeline element and extract the timeline shortcode from the shortcodes field. The shortcodes field should be located right below the Advanced Layout Builder. You can then copy and paste this shortcode into a Text or Code Block element.
Best regards,
IsmaelHi,
Thank you for the info.
To hide the label when an input field is active, please add this css code.
.wc-block-components-form .wc-block-components-text-input .is-active label, .wc-block-components-text-input.is-active label { opacity: 0; }You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings afterward.
Best regards,
IsmaelHey jb84,
Thank you for the inquiry.
This option is not available in the default sliders, but you should be able to recreate a similar slider using the Layer Slider element. Please check the links below.
// https://layerslider.com/sliders/
// https://layerslider.com/sliders/product-showcase-light/Best regards,
IsmaelHey KCMRfm,
Thank you for the inquiry.
This is possible but you may need to modify the themes/enfold/config-templatebuilder/avia-shortcodes/timeline/timeline.php shortcode file directly or override it in your child theme. Please check the documentation below for more info on how to override a builder element.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
You can add the custom shortcode around line 1363.
$output .= $timeline_items_html;Another option is to extract the actual shortcode of the timeline element, place it in a Text or Code Block element and wrap it with your custom shortcode. In order to extract the shortcodes from the builder, you have to set the builder to debug mode first.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
Best regards,
Ismael -
AuthorPosts
