Forum Replies Created
-
AuthorPosts
-
Hi,
Looks like the plugin completely overrides the layout of the theme, removes all of the default class names and IDs, which also disables the default styles. It also disables the scripts. Please look at the screenshot below.
Screenshot: https://prnt.sc/1367ptv
As you can see, none of the default theme layout or structure is left. You may need to contact the plugin developers for more info about this issue.
Thank you for your understanding.
Best regards,
IsmaelMay 20, 2021 at 4:28 pm in reply to: Element Image > Advanced > Image Link Settings > Lightbox -> not works #1301428Hey ishish,
Thank you for the inquiry.
Would you like to increase the size of the lightbox image? The default thumbnail used for the lightbox is called the Large thumbnail, which can be adjusted in the Settings > Media panel. After the size adjustment, you have to upload the images again or regenerate them using a plugin.
// https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelHi!
Thank you for the update.
The font open sans is not loading on initial load because of the privacy options. The Cookie Handling > Default Cookie Behavior is set to the third option, so users have to enable the web fonts manually from the privacy modal popup window and accept the cookies first. Only then will external fonts be allowed to load. If you want to enable the fonts without user interaction, try to set the Default Cookie Behavior to the first or second option.
Cheers!
IsmaelHi!
Thank you for waiting.
The size of the product images go back to normal when we deactivate the EWWW Image Optimizer plugin. The plugin has an option called Resize Images and it seems to be affecting the product images too. You may need to use another image optimization plugin such as Shortpixel.
Best regards,
IsmaelHey bradleymayhew,
Thank you for the inquiry.
Where can we see the page with the hidden panels? What is the required class name? Please post the page URL in the private so that we could check it properly.
Best regards,
IsmaelMay 20, 2021 at 8:26 am in reply to: YITH WooCommerce Gift Cards delivery date note being saved correctly #1301326Hey Phet,
Thank you for the inquiry.
Would you mind providing a direct link to one of the gift cards? We would like to test it.
The theme is actually using the default jquery-datepicker and only applies it on element with the “av-datepicker” class name, so the plugin’s datepicker should be excluded or should not be affected by the script.
Best regards,
IsmaelHey vantagepointmg,
Thank you for the inquiry.
The issue seems to be happening for every fourth items in the dropdown. Did you add any custom css code with an nth-child selector?
We tried to login to the site but the login account above seems to be invalid. Please check the info carefully.
Best regards,
IsmaelHey omunyak,
Thank you for the inquiry.
Where can we see the issue? Please post the site or page URL in the private field. You should also disable the Performance > File Compression settings temporarily. Make sure to purge the cache afterwards.
Best regards,
IsmaelHey maryenvato,
Thank you for the inquiry.
The select options are there but the color of the text is the same as the background. Please try to add this css code to adjust the option color and the position of the select image.
#top select, #top .avia_ajax_form .select, #top .entry-content-wrapper select { -webkit-appearance: none; background-position: 100% 50% !important; } #top .entry-content-wrapper select option { color: #000000; }
Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
IsmaelHi,
@Raphael You do not have to repeat the the script for every category because the $_GET[“psort”] should already contain the category name or slug.
For example, to trigger the button for the teilhabe-an-kultur category, all you need to do is assign the category slug as the value of the psort variable.
https://siteeu/tit-6?psort=teilhabe-an-kultur
The script will automatically extract that value and trigger the teilhabe-an-arbeit_sort_button button..
<?php echo '$(".'. $_GET["psort"] .'_sort_button").trigger("click");'; ?>
.. because $_GET[“psort”] contains “teilhabe-an-kultur’.
Best regards,
IsmaelHi,
Thank you for following up.
Looks like the issue only occurs when the loaded post has been created using the Advance Layout Builder (ALB). To fix the issue temporarily, please edit the enfold/config-templatebuilder/avia-shortcodes/av-helper-masonry.php and look for this code around line 561:
$markup = avia_markup_helper( array( 'context' => 'entry_content', 'echo' => false, 'id' => $entry['ID'], 'custom_markup' => $this->atts['custom_markup'] ) ); $items .= "<div class='av-masonry-entry-content entry-content' {$markup}>{$content}</div>";
Replace it with:
$content = strip_tags($content); $markup = avia_markup_helper( array( 'context' => 'entry_content', 'echo' => false, 'id' => $entry['ID'], 'custom_markup' => $this->atts['custom_markup'] ) ); $items .= "<div class='av-masonry-entry-content entry-content' {$markup}>{$content}</div>";
This will remove all the tags in the masonry excerpt. We will forward the issue to our channel.
Another solution is to manually define the excerpt for posts that were created with the ALB.
Best regards,
IsmaelHi,
Thank you for the update.
Did you toggle the Performance > File Compression settings after adding the css code? And please make sure to purge the cache and remove the browser history.
Best regards,
IsmaelHi,
The plugin is outdated but it works properly. If you do not want to use it, then you will have to modify the functions.php file and adjust the dimension of the thumbnail manually. Around line 193, you will see this code.
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); // big images for blog and page entries $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 ); // images for fullsize pages and fullsize slider
Adjust the width and height value, then regenerate the thumbnails, or upload the images again. This plugin will help with the thumbnail regeneration.
// https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelMay 20, 2021 at 3:35 am in reply to: Enfold Latest News Widget Not Showing Excerpt And Missing From Some Pages #1301264Hi,
No problem. Regarding the excerpts, they are not displaying because the posts were built using the Advance Layout Builder. You have to edit the posts, enable the Excerpt box from Screen Options and add the summary or excerpt manually in the Excerpt field.
Best regards,
IsmaelHi,
You are welcome! Please feel free to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelMay 20, 2021 at 3:30 am in reply to: Is there a way to the ddefault header transparency for all new pages and posts #1301262Hi,
Sure. Try to add this code in the functions.php file, then refresh the page once or twice. Remove it again afterwards.
add_action("init", function() { $pages = get_pages(array("meta_key" => "header_transparency")); foreach($pages as $page) { if($page->ID == 3255) { update_post_meta($page->ID, "header_transparency", ""); } } }, 9999);
This should update the header_transparency of the page with the ID 3255. If you want to update all pages, just remove the if statement.
if($page->ID == 3255) { update_post_meta($page->ID, "header_transparency", ""); }
Replace it with:
update_post_meta($page->ID, "header_transparency", "");
IMPORTANT: Create a site backup first before using the code above.
Best regards,
IsmaelHi,
This issue usually happens when the masonry element or any element with animation that depends on the waypoint script is inserted at the very bottom of the page. Temporary workaround is to insert another element below the very last element in the page to make sure that there are enough scrollable room for waypoint. Another is to adjust waypoint’s offset parameter.
In the enfold\js\shortcodes.js, look for this function.
function activate_waypoints(container) { //activates simple css animations of the content once the user scrolls to an elements if($.fn.avia_waypoints) { if(typeof container == 'undefined'){ container = 'body';}; $('.avia_animate_when_visible', container).avia_waypoints(); $('.avia_animate_when_almost_visible', container).avia_waypoints({ offset: '80%'}); if(container == 'body') container = '.avia_desktop body'; $('.av-animated-generic', container).avia_waypoints({ offset: '95%'}); } }
Decrease the offset value to 30% or lower to trigger the animation earlier or once the element is positioned
about 30% from the top of the viewport. Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adjusting the parameter.Best regards,
IsmaelMay 20, 2021 at 3:08 am in reply to: Missing font in frontpage after clicking enfold save button #1301260Hi,
Thank you for the update.
We exported the theme options and imported it back, but we were not able to reproduce the issue or we did not encounter any errors. Please note that you do not have to click the save button when importing the theme options. It will just automatically save the options and refresh the page. (see private field)
Best regards,
IsmaelHi,
Have you tried including the post meta _av_alb_posts_elements_state in the import process that you created? It should be as simple as using the add_post_meta or the update_post_meta function.
// https://developer.wordpress.org/reference/functions/add_post_meta/
You can also create a plugin that builds the elements state or create _av_alb_posts_elements_state post meta info after the import.
Related thread: https://kriesi.at/support/topic/adding-pages-using-the-wordpress-rest-api/#post-1032812
Best regards,
IsmaelHi,
Thank you for the update.
Which of the portfolio items should display first in the widget, or which one did you modify last? Please post the login details in the private field so that we could check it properly. Make sure that the Appearance > Editor panel is accessible.
Best regards,
IsmaelHi,
If i select one of the taxonomies then its not showing all the posts, only the posts in that taxonomy.
What if you select multiple taxonomies? Are the taxonomies unique for the custom post type advertisements, or are they shared by other post types? Unfortunately, you cannot select the post type directly, so a solution is to make sure that the selected taxonomies are unique to the desired post type.
Best regards,
IsmaelMay 19, 2021 at 7:52 am in reply to: Logo center split menu – problems with reduced screens #1301145Hi,
Thank you for the update.
We adjusted the css code a bit and disabled the Performance > File Compression settings temporarily. The header now reverts back to the default layout when the screen width is less than 989px. This will still require a few adjustments but the site navigation should now be accessible on both desktop and mobile view.
This is how the site looks on our end (screen less than 989px).
Screenshot: https://prnt.sc/133svf1
Best regards,
IsmaelHi,
@filz51: This looks like a different issue. The OP did not have any issues with the sitemap, only with the blog layout. Did you translate the blog page to other languages? It is possible that those translations get included in the sitemap. Are you using a plugin for the sitemap?Please open a new thread and post the necessary details in the private field. We will close this thread for now.
Best regards,
IsmaelHi,
Thank you for the inquiry.
The tab element automatically sets its height based on the tallest tab or content. We could set the maximum height of the container, but this will leave whitespaces or gaps below the tabs with shorter content.
.tabcontainer { max-height: 500px; }
Best regards,
IsmaelMay 19, 2021 at 7:09 am in reply to: How can I upload https://fonts.googleapis.com/css locally? #1301138Hi,
Thank you for the update. You can find more information about typography in the documentation under the Quick Setup section. Please check the link below.
// https://kriesi.at/documentation/enfold/quick-setup/#typography
Best regards,
IsmaelHi,
@stefpasi: The instagram widget is displaying properly in the footer widget area when we checked the site. Is this fixed? Please feel free to open another thread if the issue persists. We will close this one for now.Best regards,
IsmaelHi,
Thank you for the inquiry.
It is possible to add the language switcher within the top bar but you have to create a secondary menu or insert it using the following function.
// Render the default language switcher (activate header meta) function ava_icl_language_selector(){ do_action('icl_language_selector'); } add_action('avia_meta_header', 'ava_icl_language_selector'); add_filter( 'avf_execute_avia_meta_header', '__return_true', 10, 1 );
Best regards,
IsmaelHey LesleyJean,
Thank you for the inquiry.
In the filter above, try to rename the font to something else (e.g., “Raleway New”, “Raleway Mod”), then select the new font name in the Enfold > General Styling > Fonts panel. You can also adjust the style of the elements in the Enfold > Advanced Styling panel.
Best regards,
IsmaelHi,
It is not a bug. This is actually the default layout of the blog posts element when the sidebar is not enabled.
To remove the line below the posts and adjust the font size of the title and the read more link, try to add this css code.
body#top.home .av-alb-blogposts.template-blog div.post_delimiter { display: none !important; } body#top.home { font-size: 14px; }
Best regards,
IsmaelHey Gian Maria,
Thank you for the inquiry.
We can increase the height of the horizontal slider on mobile view with this css.
@media only screen and (max-width: 767px) { #top .aviaccordion { height: 300px; } }
You may want to apply a custom class name or ID to the accordion element and use it in place of generic selector above.
// https://kriesi.at/documentation/enfold/add-custom-css/
Best regards,
Ismael -
AuthorPosts