Forum Replies Created
-
AuthorPosts
-
November 14, 2019 at 4:47 am in reply to: Need to set the mobile menu and the desktop menu in just a little bit transparency #1156625
Hey Raquel,
Thank you for the inquiry.
The modification seems to be working properly on our end. Please try to remove the browser cache and make sure the site is using the latest version of the merged files. Check the screenshot below.
Screenshot: https://imgur.com/a/qmNbso7
And don’t forget to create an account in the forum when you have the time.
// https://kriesi.at/support/register/
Best regards,
IsmaelHi,
? i Have 93GB of Media on the server out of 130GB available disk space.
Thank you for the update.
We can still reproduce the issue whenever we try to access any elements containing an image. It’s possible that the server times out when it tries to query the media library because of the number of entries in the database. The AJAX requests returns the following response.
The site is experiencing technical difficulties.
And this is the error from the log.
[14-Nov-2019 02:14:00 UTC] PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 4096 bytes) in /home/wua4p6lmxmxf/public_html/wp-includes/wp-db.php on line 1972
This means that the maximum memory allocated to PHP is only 268MB, not 4GB. This also confirms what we see in the Query Monitor plugin’s PHPinfo tab. Is the site on a shared hosting? If not, then you might be able to adjust the maximum memory limit directly from the php.ini file.
Screenshot of the PHP settings: https://imgur.com/a/cvvVoKU
Best regards,
IsmaelHi,
Thank you for the update.
We probably just wanted to eliminate the word “ALL”.
The following css code should remove the “All” sort button, but you may still see the “All” category because it is what is initially active on page load.
.all_sort_button.active_sort, .all_sort_button.active_sort + .text-sep { display: none; }
If the headline would show all used categories then one could quickly select the category of interest. That would be a useful feature to add.
This is one of the limitations of the sort buttons or filters. It can only filter items that are currently present in the page. This is also why the “empty” categories are hidden initially because the items that belongs to these categories are not accessible in the current page.
The Portfolio Grid has lost the category selection in the view and in the editor.
Did you translate the categories or taxonomies in your installation? If you haven’t done it yet, please check the documentation for more info. You will be able to select the translated categories in the portfolio grid element after the translation.
Best regards,
IsmaelNovember 14, 2019 at 3:38 am in reply to: Custom Post Types + Advanced Layout Builder + Block Editor #1156608Hey Scott,
Thank you for the inquiry.
You should use the slug/name of the custom post type and it should be lowercase and contain less than 20 characters, so the following line is technically invalid, but it will still work.
$supported_post_types[] = 'REGIONS';
It should be:
$supported_post_types[] = 'regions';
You might have to edit the custom post type settings in the CPT UI panel.
The block or Gutenberg editor should not be accessible when the advance layout builder is active, so something is not working right in your installation. Please provide the login details in the private field so that we can check it.
Best regards,
IsmaelNovember 14, 2019 at 3:32 am in reply to: set image alt tag and title in image media element #1156605Hey!
Yes but this will add it permanently.? – so it will change everywhere the image is placed.
As suggested above, you have to edit the gallery template, fetch the value of the custom field from there, then assign it as the value of the gallery item’s title or alt attribute. Adding multiple custom fields should be possible — one for each required attribute. What do you mean exactly when you say “attachment”?
Best regards,
IsmaelHi,
Thank you for the update.
Did you remove the button (image)? We are able to access the dashboard using the account above, but it doesn’t have admin rights, so we can’t edit the settings or the css code. Please set the account’s user role accordingly. We will check the thread again after.
Best regards,
IsmaelHi,
Thank you for the update.
The entry redirects to Google, but you’re probably expecting that a click on the grid item will immediately redirect to the custom link. Unfortunately, that’s not how it works. When the AJAX option is enabled, the grid item will open the AJAX preview and the custom link will only be accessible from the AJAX preview title.
<h2 class="portfolio-preview-title entry-title " itemprop="headline"><a href="http://google.com">Glass Tesserae (8th Century CE. - Modern Day)</a></h2>
Best regards,
IsmaelHi,
Thank you for the update.
Where did you add the widget? Based on the snippet that you provided above, the widget should be located above the footer but it’s not there. Did you remove it? Please add the widget back so that we can get its id and modify the css code accordingly.
Best regards,
IsmaelHi,
Sorry for the confusion. You can actually change the tab content directly from the Privacy & Cookies > Modal Popup Window Content section. Look for the Tab Content field. It is possible to add more tabs in the modal window, and you can also replace the default text in the privacy shortcodes or privacy toggles when necessary. Wrap the custom text inside the privacy shortcodes like the following example.
[av_privacy_allow_cookies]Your own text[/av_privacy_allow_cookies]
Best regards,
IsmaelNovember 14, 2019 at 2:38 am in reply to: Use custom post type wiht advanced layout builder #1156596Hi,
Thank you for the update.
You can copy the content of the template-builder.php file into the archive-team.php template, then display the content of the “equipe” page in the “team” archive by editing this code around line 69:
$content = apply_filters( 'avia_builder_precompile', get_post_meta( get_the_ID(), '_aviaLayoutBuilderCleanData', true ) );
Instead of getting the current ID, replace it with the ID of the “equipe” page.
$content = apply_filters( 'avia_builder_precompile', get_post_meta( 48, '_aviaLayoutBuilderCleanData', true ) );
The content of the “equipe” should display in the “team” archive page.
Best regards,
IsmaelHey oreely,
Thank you for the update.
What is the name/slug of the new custom post type? You may need to use the following filter to include it in the list of the builders’ supported post types. The content structuring in the post should work properly afterwards.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#alb-for-any-post-type
Best regards,
IsmaelHi,
Thank you for the update.
The columns in the #foot container looks the same across the site — they stack on top of each other. The following is a screenshot of the #foot container in the “customer-support” page.
Screenshot: https://imgur.com/a/ePa5gxF
Please make sure that the browser cache is removed or try to check the site on incognito mode.
Best regards,
IsmaelHi,
Glad to know that you were able to figure it out. Please don’t hesitate to open a new thread if you need anything else. We’ll try to be of more help next time. Thank you for your patience.
Best regards,
IsmaelNovember 13, 2019 at 12:36 pm in reply to: set image alt tag and title in image media element #1156369Hi,
Thanks @Guenni007.
You should be able to add more fields in the filter used to add the copyright field in the gallery items. It’s in the functions-enfold.php file.
if( ! function_exists( 'av_attachment_copyright_field_edit' ) ) { function av_attachment_copyright_field_edit($form_fields, $post) { $form_fields['av_copyright_field'] = array( 'label' => __('Copyright'), 'input' => 'text', 'value' => get_post_meta( $post->ID, '_avia_attachment_copyright', true ), ); return $form_fields; } add_filter( 'attachment_fields_to_edit', 'av_attachment_copyright_field_edit', null, 2 );
Add a new value in the $form_fields array. Example:
$form_fields['av_custom_field'] = array( 'label' => __('Custom Field'), 'input' => 'text', 'value' => get_post_meta( $post->ID, '_avia_attachment_custom_field', true ), );
You will then be able to get the value of the field using the get_post_meta function.
$custom = get_post_meta($attachment_entry->ID, '_avia_attachment_custom_field', true ); echo $custom;
Best regards,
IsmaelHi,
Thank you for the update.
Can we access the site with the broken layout? We would like to inspect the content of the page. Please provide the login details in the private field.
Do you think I run the shortcode parser?
Yes, you should run the parser and see if it fixes the issue.
Best regards,
IsmaelHi,
We would like to apologize for the inconvenience.
1.) Did you set the Privacy & Cookies > Default Cookie Behaviour to the second or third option? This means that the essential cookies required for the spam protection is not available on page load, so it will not work immediately. Users have to accept the cookies first and reload the page, if auto reloading is disabled, in order to use the contact form properly, or for the spam protection to function as expected. You can either set the cookie behavior to the first option in order for the spam protection to work immediately on page load without requiring the user to accept the cookies, or leave the behavior as is and enable the default captcha in the contact for added security. Another alternative is to use a different contact form with the same spam protection option.
2.) Are you having this issue on Safari browser? This thread should help fix the problem.
// https://kriesi.at/support/topic/cookie-consent-bar/#post-1146123
Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for the update.
The Enfold > Privacy & Cookies > Default Cookie Behaviour was set to the third option, so the fonts will not load unless the user manually click the privacy toggle to enable the font. We set it to the second option so that once the user accepted the cookies, the fonts will be enabled automatically. You can also set the cookie behaviour settings to the first option if you want the fonts to work automatically on page load even if the cookies have not been accepted yet.
Best regards,
IsmaelHi,
Thank you for the update.
The Raleway font was actually displayed using the regular font weight even on desktop view because that’s the only available variation. We downloaded the font from Google including some of its variations and uploaded it in the Import/Export > Custom Font Manager. It is now displaying the actual 700 font weight variation.
Best regards,
IsmaelHey jdelgadoesteban,
Thank you for the inquiry.
The following thread should lead you in the right directions.
Install and activate the Simple Image Sizes plugin, look for the “entry_with_sidebar” thumbnail in the Settings > Media panel, adjust its size, update the changes, then regenerate the thumbnails or upload the featured image again.
Best regards,
IsmaelHi,
Thank you for the update.
You can use the “icl_language_selector” action hook inside the header container to render the language switcher beside the burger menu element. Add this code in the functions.php file.
function ava_icl_language_selector(){ do_action('icl_language_selector'); } add_action('ava_main_header', 'ava_icl_language_selector');
You can then adjust its position using css.
Best regards,
IsmaelHey Rieckermann GmbH,
Thank you for the inquiry.
Have you tried setting the portfolio items’ Breadcrumb Hierarchy > Breadcrumb parent page settings? You should be able to set the Events page as the parent breadcrumb instead of the theme using the default breadcrumb trail.
Best regards,
IsmaelHi,
Thank you for the update.
but that’s not allowed acc. data protection act.
The spam protection will not work without the required cookies, so you can either disable the spam protection and use another contact form plugin, or keep it enabled and add a notification for your users directly in the contact form element or a text block, telling them that they have to consent to the cookies first before using the contact form.
Best regards,
IsmaelNovember 13, 2019 at 5:53 am in reply to: More than one Caption on a video fullscreen slider #1156280Hi,
Thank you for the update.
It’s possible to add a caption for each slide. Is that what you’re looking for? If not, try to use the layer slider and play around with the transition options. You should be able to add multiple layers, use it as a caption and configure the transition interval.
Best regards,
IsmaelHi,
Thank you for the update.
We were not able to check the contact form because the site didn’t load properly on our end. Did you install a security plugin, or block certain countries’ access to the site?
According to the following tool, the site is completely down — not just for us.
// https://downforeveryoneorjustme.com/grblindados.com.br
Please try to contact your hosting provider regarding the status of the server.
Best regards,
IsmaelNovember 13, 2019 at 5:18 am in reply to: Stop featured images cropping in single posts and thumbnails #1156268Hi,
Sorry for the delay. The thumbnail used in the blog overview page is called “square”, which has a maximum width and height of 180px — for the single post page, the “entry_with_sidebar” thumbnail is used, and it has a maximum size of 845x321px. You can adjust the thumbnails’ default size value by using the Simple Image Sizes plugin. After the plugin activation, go to the Settings > Media panel, look for the thumbnails mentioned above, adjust the size value and set the “Cropping” parameter to “No” to maintain the images’ aspect ratio. Save or update the changes, then regenerate the thumbnails or upload the images again.
// https://wordpress.org/plugins/simple-image-sizes/
Best regards,
IsmaelNovember 13, 2019 at 5:07 am in reply to: Privacy and Cookies problems after updating enfold #1156267Hey carstenstrandvad,
Thank you for the inquiry.
We deactivated the Performance > File Compression settings temporarily to regenerate the scripts needed to run the new privacy options. The consent bar now displays when you load the page. If you want to add more options, you can reconfigure the new privacy options in the Enfold > Privacy & Cookies panel.
Best regards,
IsmaelNovember 13, 2019 at 4:56 am in reply to: Layerslider behind transparent menu with standard editor #1156266Hi,
Thank you for the update.
It looks like that because the content is wrapped inside an entry-content container — the default editor uses a predefined template, which can only be adjusted by modifying the single.php and the includes > loop-index.php file. Why do you need to switch to the default editor? You can always add texts using the text block element from the advance layout builder.
Best regards,
IsmaelNovember 13, 2019 at 4:37 am in reply to: Relevanssi not showing results in the search form / on Search Page is working! #1156261Hey siteraum,
Thank you for the inquiry.
Did you add the following snippet after activating the plugin? If yes, please remove the snippet because it’s already included in the core and is no longer required.
The AJAX search seems to be working properly in the first site.
// https://imgur.com/a/z7XeBYy
Best regards,
IsmaelNovember 13, 2019 at 4:21 am in reply to: Headline Rotator Typewriter Animation Ampersand Bug #1156259Hi,
Thank you for the update.
We modified the enfold\config-templatebuilder\avia-shortcodes\headline_rotator\headline_rotator.js file to fix the issue temporarily. The html entity version of the ampersand will be replaced with its actual symbol instead, and prevent it from getting duplicated.
Line 104:
var content = _self.$next.data('av_typewriter_text') || _self.$next.html(); content = content.replace(/&/g, '&');
Best regards,
IsmaelNovember 13, 2019 at 3:49 am in reply to: First button on full width slider is scrolling the page to the bottom #1156254 -
AuthorPosts