Forum Replies Created
-
AuthorPosts
-
Hi,
But then i saw that the main menu/navigation on my site was also gone
You might have removed database entries for the menu items. Did you check the name of searched entries?
Where did you get the RSS script? Please place the script on pastebin.com and post the link in the private field.
Best regards,
IsmaelHi,
The page with the portfolio are still loading properly on our end. Do you notice any difference (device specs, connectivity etc) between the phones where the portfolio works and the phones where it does not?
Does it work correctly when the NitroPack plugin is disabled? We noticed this grecaptcha error, which occurs in the minified file generated by the nitro plugin.
(index):1 GET https://www.google.com/recaptcha/api.js?render=KKEY&ver=3.0 net::ERR_ABORTED 400 nitro-min-d41d8cd98f00b204e9800998ecf8427e.index.js:1 Uncaught ReferenceError: grecaptcha is not defined at HTMLDocument.<anonymous> (nitro-min-d41d8cd98f00b204e9800998ecf8427e.index.js:1) at HTMLDocument.value ((index):1) at HTMLDocument.value ((index):1) at D ((index):1)The only recommendation that we can think of is to reduce the number of items using a pagination.
Best regards,
IsmaelHi,
You have to include the code that we added above to assign a value to the $permalinks array. Place it within the init_reg_portfolio function, right after this line.
add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod', 50, 1);Example:
add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod', 50, 1); $permalinks = get_option('avia_permalink_settings'); if(!$permalinks) $permalinks = array(); $permalinks['portfolio_permalink_base'] = empty($permalinks['portfolio_permalink_base']) ? __('portfolio-item', 'avia_framework') : $permalinks['portfolio_permalink_base']; $permalinks['portfolio_entries_taxonomy_base'] = empty($permalinks['portfolio_entries_taxonomy_base']) ? __('portfolio_entries', 'avia_framework') : $permalinks['portfolio_entries_taxonomy_base'];Best regards,
IsmaelSeptember 2, 2021 at 7:35 am in reply to: Lighthouse – performance / render-blocking resources / minimize main-thread work #1319439Hey ThiloKiefer,
Thank you for the inquiry.
We could manually add the defer attribute to the jQuery script, but doing so might cause unexpected results such as elements not rendering properly because the scripts that are supposed to make them work are loaded last. You could also use Autoptimize and Async Javascript plugin to asynchronously load scripts while parsing the HTML and execute them once the scripts are fully loaded, which is a better way to prevent render-blocking resources. For more info, please check the documentation.
// https://speedy.site/configure-async-javascript-plugin-settings/
// https://wpblogging.in/site-optimization/autoptimize-wordpress-plugin/You have to disable the Enfold > Performance > File Compression settings if you chose to use the plugin.
Best regards,
IsmaelHey brouge,
Thank you for the inquiry.
The autorespond email will be automatically sent to the email address provided the user. If you want to change the from address in the autoresponder email however, go to the contact form’s Content > Backend section or toggle and adjust the email address in the Autoresponder from email address field.
Best regards,
IsmaelHey Tobias777G,
Thank you for the inquiry.
You can use the following css code to adjust the font size of the table cells and adjust the color of the first row.
.avia-table td, .avia-table tr { font-size: 18px; } .avia-table .avia-heading-row { background: #719430 !important; color: #ffffff !important; }However, please note that this modification will affect all table elements in the site, and if you want to only apply the changes to the specific tables above, you have to apply a custom name or ID to the elements and use those names to define a custom css rule for the them. For more info, please check the following documentation.
// https://kriesi.at/documentation/enfold/add-custom-css/
Best regards,
IsmaelSeptember 1, 2021 at 12:52 pm in reply to: Events Calendar Pro Featured Image Size In Single Events #1319340Hi,
@ashlandwebsites: Glad to know that you got what you are looking for! Thanks to @millertimesites. Please feel free to open another thread if you need anything else.Have a nice day.
Best regards,
IsmaelHey emilconsor,
Thank you for the inquiry.
Are there any errors when you try to use the compile_post_content function? We are not sure how the plugin loads the search-filter template but the following code might work.
require_once( get_template_directory() . '/config-templatebuilder/avia-template-builder/php/class-template-builder.php' ); global $post; $builder = Avia_Builder(); $builder->compile_post_content($post);Best regards,
IsmaelHey w_archer,
Thank you for the inquiry.
Try to use the get_the_terms function instead and run the returned results in a loop. You can go over the items one at a time, check for the name of the current item and do something with it. An example can be found in the documentation.
// https://developer.wordpress.org/reference/functions/get_the_terms/
Best regards,
IsmaelHi,
Glad to know that it now runs or looks exactly as expected. Thanks to @Guenni007. Please do not hesitate to open a different thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
The video is working correctly but it is not visible because the layer’s visibility settings are disabled on all devices.
As mentioned previously, we already edited the visibility options of the video layer and it is now displaying properly on mobile screens. Please check the screenshots below.
Screenshots:
Best regards,
IsmaelSeptember 1, 2021 at 6:28 am in reply to: CSS to hide Blog-Latest News on top of Single Blog posts? #1319285Hi,
Thank you for the inquiry.
Yes, the css code should work. The title and breadcrumbs can also be removed by adjusting the Enfold > Header > Header Layout > Header Title and Breadcrumbs settings.
Best regards,
IsmaelHey TT2495,
Thank you for the inquiry.
Looks like you have added the h1 tag manually in the content editor. We tried to check the link above but the page does not exist. Please provide a valid URL so that we could check the page and inspect the title.
Best regards,
IsmaelHey sunilskrishnan,
Thank you for the inquiry.
You can apply a custom css class name or ID to the builder elements and use it to define a css rule for sections or elements that should have the shadow or that should have a custom style. The css fields are located in the elements’ Advanced > Developer Settings toggle.
// https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support
Best regards,
IsmaelHey Eleina_Shinn,
Thank you for the inquiry.
In the Appearance > Menu editor, you can add a custom menu item and enable the Button Style option from the Menu Style settings. This should create a menu item that looks like button, but you will have to use additional css code to insert an icon.
#menu-item-755 a:before { font-family: 'entypo-fontello'; width: 10px; height: 10px; display: block; position: absolute; color: white; content: ""; }The css code above will apply the search icon to the menu item with the ID 755. You can also insert a widget in the header instead of a custom menu item.
// https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
IsmaelHi,
Great! Glad to know that you have found a working solution. Please do not hesitate to open a different thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHey Lana,
Thank you for the inquiry.
Do you update the theme in the dasboard (Enfold > Theme Updates)? Try to edit the enfold/functions-enfold.php, look for the avia_mailchimp_widget function and this code around line 2219:
function __construct() { //Constructor $widget_ops = array('classname' => 'avia_mailchimp_widget', 'description' => 'A widget that displays a Mailchimp newsletter signup form' ); parent::__construct( 'avia_mailchimp_widget', THEMENAME.' Mailchimp Newsletter Signup', $widget_ops ); }Replace it temporarily with:
function __construct() { $theme = wp_get_theme(); //Constructor $widget_ops = array('classname' => 'avia_mailchimp_widget', 'description' => 'A widget that displays a Mailchimp newsletter signup form' ); parent::__construct( 'avia_mailchimp_widget', $theme->name.' Mailchimp Newsletter Signup', $widget_ops ); }Let us know if the error still occurs.
Best regards,
IsmaelHey kardnas,
Thank you for the inquiry.
Yes, you can install the plugin and create a shop page with the current demo. The demo does not have preconfigured options for shop pages or for the plugin, so you will have to configure it manually.
Best regards,
IsmaelSeptember 1, 2021 at 4:03 am in reply to: Enfold Ankerlinks / Sprungmarken funktionieren nicht #1319259Hey Johannes,
Thank you for the inquiry.
We checked the home page but we cannot find the button using the #kontaktaufnahme anchor. Where did you add the button? Did you try to include the complete or absolute URL plus the anchor?
Example.
https://site.com/page/#kontaktaufnahme |OR| https://site.com/#kontaktaufnahmeUsing just the anchor may not work if you are on a different page without the anchor destination or without an element with the named anchor.
Best regards,
IsmaelHey steridhh,
Thank you for the inquiry.
That is the post navigation and it can be disabled in the Enfold > Blog Layout > Single Post Navigation settings. You can also use this filter in the functions.php file.
add_filter("avf_post_nav_settings", function($settings) { $settings['skip_output'] = true; return $settings. }, 10, 1);Best regards,
IsmaelHi,
Thank you for the update.
The issue only occurs when the excerpt is enabled or when the Captions > Element Title and Excerpt settings is set to the first option. We selected the second option temporarily to disable the excerpt and only display the title.
Did you modify the masonry element to display the post content instead of the post excerpt?
Best regards,
IsmaelHey Hoernchen089,
Thank you for the inquiry.
The theme contains basic schema structure for blog posts or articles, images, breadcrumbs and other elements. The option is enabled by default but it can be toggled from the Enfold > SEO Support > Automated Schema.org HTML Markup settings. For more complex structure (e.g recipes, books etc), you will have to install a plugin or extend the existing structure in the theme.
Best regards,
IsmaelHey Soehnke,
Thank you for the inquiry.
According to the documentation, you can set the gestureHandling parameter of the map to “greedy” to allow any gestures (e.g touch, pan, pinch, scroll). Unfortunately, the documentation did not specify if this will also include the mousewheel.
Try to add this script in the functions.php file.
function ava_custom_script_map_params(){ ?> <script> window.addEventListener('DOMContentLoaded', () => { window.av_google_map.av_gmap_0.gestureHandling = "greedy"; window.av_google_map.av_gmap_0.scrollwheel = true; }); </script> <?php } add_action('wp_footer', 'ava_custom_script_map_params', 9999);Default value of the gestureHandling parameter is “cooperative”.
UPDATE: There is actually a scrollwheel option. We added it above and set it to true.
Best regards,
IsmaelHi,
Great! Please feel free to open another thread if you need anything else. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHey agiledynamicss,
Thank you for the inquiry.
You can use the following filter in the functions.php file to change the heading to h4.
function avf_avf_customize_heading_settings_mod( array $args, $context, array $extra_args = array()) { if( $context == 'avia_magazine' ){ $args['heading'] = 'h4'; } return $args; } add_filter( 'avf_customize_heading_settings', 'avf_avf_customize_heading_settings_mod', 10, 3 );You may need to insert additional css code or apply the previous css from the h3 tag to keep the style of the heading.
Best regards,
IsmaelSeptember 1, 2021 at 3:02 am in reply to: [av_three_fifth first] appearing on a pages I'm trying to edit #1319247Hey jnrdavo,
Thank you for the inquiry.
That is the block editor shortcode field. You have to upgrade the theme from version 4.5.1 to the latest version, 4.8.6.1, and remove the unused themes to avoid conflict. After the theme update, make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings. This should remove the shortcode field from the Advance Layout Builder and help fix any theme-related issue the site might have.
Best regards,
IsmaelHey Guenter,
Thank you for the inquiry.
The ID is probably added to differentiate the custom animation of an element from other elements that are also using the sonar effect. This is required in cases where two or more elements are using the same sonar/pulsate option but with different color, duration and overall effect.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Did you modify the av-helper-masonry.php file or override the masonry templates in the child theme? The following thread might help clarify and fix the issue.
// https://kriesi.at/support/topic/masonry-custom-image-source/#post-1314600
// https://kriesi.at/support/topic/theme-upgrade-causes-shortcodes-av-helper-masonry-php-to-crash-site/#post-1313296If you are using the avf_masonry_loop_prepare filter, you might have to apply the attachment value to the attachment_overlay as shown in the thread above.
$content['attachment'] = !empty( $content['thumb_ID'] ) ? wp_get_attachment_image_src( $content['thumb_ID'], $img_size ) : ''; $content['attachment_overlay'] = $content['attachment'];Best regards,
IsmaelHey thrivecommunities,
Thank you for the inquiry.
The slider is not displaying correctly when the theme is active because the page’s Page Attributes > Template defaults to Slider Revolution Blank Template. We tried changing it to the theme’s default template, but it reverts back to the 4th option after updating the page. Did you set any settings for this or add any modifications to auto assign the template?
FYI, you have to add the slider using Advance Layout Builder > Plugin Additions > Revolution Slider element. You can use the shortcodes but you have to adjust the template manually.
Best regards,
Ismael -
AuthorPosts
