Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the info.
We could define the minimum and maximum height of the image but it might get distorted on certain screen sizes. If that is not a problem, try try this css code.
img.wp-image-3530.avia-img-lazy-loading-not-3530.avia_image { height: 50vh !important; max-height: 50vh !important; min-height: 50vh !important; }
You may need to apply a custom css class name or ID to the image element and replace the css selector above.
Best regards,
IsmaelHi,
Thank you for all the info.
We cannot be really sure what happened in the past months but according to the graph, the traffic is now coming back to normal or to what it used to be before the incident. We also checked the site today and the tracker seems to be working as it should as shown in the screenshot below. Please observe the site in the coming days or weeks and let us know if the issue happens again.
Happy holidays to both of you!
Best regards,
IsmaelHi,
Thank you for the update.
We adjusted the script in the functions.php file a bit. What we did is check for the text inside the clicked button and apply the corresponding color to the text within the target section. The modified script is below.
/**************************** * Apply Color Scheme *****************************/ function apply_color_scheme() { ?> <script> (function($) { $( '#button-row a' ).on( "click", function(e) { e.preventDefault(); var color = $(this).find(".avia_iconbox_title").text(); var c = "white"; switch (color) { case "Blanc": c = "white"; break; case "Bleu": c = "blue"; break; case "Rouge": c = "red"; break; case "Vert": c = "green"; break; default: break; } $( '#my-selection' ).css( "color", c ); $( '#my-color' ).css( "color", c ); }); })(jQuery); </script> <?php } add_action('wp_footer', 'apply_color_scheme');
Best regards,
IsmaelHi,
Thank you for the info.
We may need to access the server in order to debug the issue further. Please post the FTP login details in the private field so that we can check the site.
Best regards,
IsmaelHi,
Thank you for the info.
Which icon fonts exactly? Please provide a direct link to the font set so that we can test it on our end. We cannot open the existing zip file in the media library for some reason.
Best regards,
IsmaelHey bluestare,
Thank you for the inquiry.
It only looks like the sidebar is cut off because of this css code, which applies a background to the sidebar container.
.sidebar { background-color: #8e2851 !important; }
To fix it or to make it look like the background is completely covering the sidebar, you will have to adjust the width of the content and add a padding to the right of the sidebar container.
.container .av-content-small.units { width: 67%; } .sidebar { padding-right: 50px; }
Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
IsmaelDecember 23, 2021 at 2:41 pm in reply to: enfold menu on left no scroll on iPad (landscape format ) #1333870Hi,
Thank you for the update.
Are you testing it on an iPad Pro? Adjusting the max-width value should work on tablet with wider screens. And make sure to purge the cache or remove the browser history before testing the page.
Best regards,
IsmaelHi,
Thank you for the clarification.
In the portfolio editor, you can define a custom link by adjusting the Additional Portfolio Settings > Overwrite Portfolio Link settings to the second option (Define custom link). You can then manually define the URL in the Link portfolio item to external URL field.
Best regards,
IsmaelHi,
Thank you for the update.
As it turned out, there is already a gradient color option in the button editor. Please set the Styling > Colors > Button Colors Selection settings to the second option to display the advance options, then select the very last option in the Button Background Color settings.
Best regards,
IsmaelHey Julien,
Thank you for the inquiry.
Are the newly generated files still 12 GB in size? How many posts and pages are there in total? It might be due to the post css files, which is a dedicated stylesheet or css file for each post. You can disable this feature by adding this filter in the functions.php file.
/** * Filter to skip css file generation. * You can add logic to skip for certain pages/posts only. * * @since 4.8.6.1 * @param boolean $create * @return boolean true | false or anything else to skip generation of css file */ function custom_avf_post_css_create_file( $create ) { return false; } add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );
Best regards,
IsmaelHey wock_legacy,
Thank you for the inquiry.
Only one title will render in the post based on the selected blog style. Where can we see an example of the duplicated title? You might be referring to the default title container, which can be toggled in the Enfold > Header > Header Title and Breadcrumbs settings.
Best regards,
IsmaelDecember 23, 2021 at 1:10 pm in reply to: Blog Post Grid Display – Remove Category & Limit Excerpt Characters #1333855Hey KellyKilgallon,
Thank you for the inquiry.
We cannot find the blog posts section in the home page. Where did you place it? Please provide a direct link to the page containing the blog posts element.
Best regards,
IsmaelHey enfold,
Thank you for the inquiry.
You have to adjust the menu item URL a bit. The site refreshes because the menu item link or URL is different from the actual domain name. You can omit the domain name and use the anchor directly instead. (see private field)
Best regards,
IsmaelDecember 23, 2021 at 1:02 pm in reply to: Translate just countdown information (days, hours, minutes, seconds) #1333852Hey enfold,
Thank you for the inquiry.
Did you set the site language to Spanish? You can set it back to English in the Settings > General > Site Language options. You can also use this plugin to translate a specific text or string.
// https://wordpress.org/plugins/say-what/
Best regards,
IsmaelHey KellyKilgallon,
Thank you for the inquiry.
We could apply a minimum height to the title container with css but it will leave a line of empty space on items with shorter titles. Please try this css code.
.av-masonry-entry-title.entry-title { min-height: 38px; }
Also, please make sure to use images with the size for every masonry items.
Best regards,
IsmaelDecember 23, 2021 at 12:41 pm in reply to: How to move elements up and down to overlap them #1333846Hey AFEC,
Thank you for the inquiry.
You have to apply a custom css class name to the columns that you would like to move up so that we can style them directly. The custom css class name field is located in the elements’ Advanced > Developer Settings panel. After applying a custom css class name (e.g “av-quote-block”) to the columns, you can use this css code to pull them upwards.
.av-quote-block { margin-top: -80px; }
Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHi,
Thank you for following up.
We have found a plugin called Head Meta Data installed in your site, but whenever we try to deactivate it, the site breaks. According to the plugin description, it adds a set of meta tags in the site. Have you tried deactivating the plugin?
Best regards,
IsmaelHey klkc,
Thank you for the inquiry.
You can use this css code to adjust the font size of the portfolio title and content.
.grid-entry-title { font-size: 21px; } .grid-entry-excerpt { font-size: 16px; }
Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.
Best regards,
IsmaelHi,
Glad to know that you managed to find the latest snippet. Thanks for sharing. Please feel free to open another thread if you have more questions. We will close this thread for now.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
You can apply a custom css class name or ID to the section or element. You can then use those attributes to adjust the style of a specific element. The custom class and ID fields are located in the elements’ Advanced > Developer Settings tab.
Please check this documentation for more info.
// https://kriesi.at/documentation/enfold/add-custom-css/
Best regards,
IsmaelDecember 22, 2021 at 1:32 am in reply to: enfold menu on left no scroll on iPad (landscape format ) #1333698Hey nagex,
Thank you for the inquiry.
The sidebar or header will only stick if it is NOT taller than the browser viewport. This is why the menu is not fixed and scrolls with the content on iPad landscape mode.
You can add this css code to keep it sticky on iPad view but some of the content on the bottom part of the header might get cut off.
@media only screen and (max-width: 1024px) { .html_header_sidebar #top #header { position: fixed; } }
Best regards,
IsmaelHi,
Thank you for the info.
According to the error log, the ‘/enfold/framework/php/inc-autoconfig.php’ file does not exist, which is odd, because the theme will not load at all if that file is missing. Do you have a staging or development version of the site? There might be a plugin that runs a process in the background, which causes the error.
Best regards,
IsmaelHey Patrick,
Thank you for the inquiry.
There is no plan on including another set of font icons in the builder, unfortunately, but you can still use the fontawesome icons using html tags or shortcodes.
html:
<i class="fas fa-coffee"></i>
shortcodes:
[icon name="coffee" prefix="far"]
You have to install the plugin first.
// https://wordpress.org/plugins/font-awesome/
Best regards,
IsmaelHi,
Thank you for the update.
The hook doesn’t exist in the functions.php file, so the meta tag must have been really added by the shop plugin. Try to add this filter in the functions.php file to list all functions attached to the wp_head hook.
add_action("after_setup_theme", function() { $hook_name = 'wp_head'; global $wp_filter; echo '<pre>' . var_export($wp_filter[$hook_name], true) . '</pre>'; }, 10);
Best regards,
IsmaelHi,
Thank you for the update.
According to the info in the Enfold > Newsletter panel, the Galbusera Giuseppe Srl form still contains the Birthday text field. Are you sure that you actually remove it from the list? Please check the screenshot below.
Screenshot: https://imgur.com/Qc1d4QW
Please check this documentation for more info.
Best regards,
IsmaelHey ictsystem,
Thank you for the inquiry.
You can adjust the portfolio permalink in the Settings > Permalink panel. You can also try this plugin.
// https://wordpress.org/plugins/custom-permalinks/
Best regards,
IsmaelHey Andrew,
Thank you for the inquiry.
We created a private test page (see private field) and it seems to be displaying the Sidebar Pages widget correctly. Where can we see the issue?
Best regards,
IsmaelHi,
Thank you for the update.
This is probably due to the theme’s Performance > File Compression settings. You should disable the option temporarily while configuring the site to make sure that the changes in theme options and css modifications will take effect immediately. You should also disable the cache plugin or just make sure to purge the cache when you change or configure anything.
Best regards,
IsmaelDecember 21, 2021 at 8:11 am in reply to: After Migrate Website Enfold some Images are not visible #1333608Hey Semito,
Thank you for the inquiry.
You may need to toggle or temporarily disable the Performance > File Compression settings to reload the new stylesheets including the post css files containing the background image styles for the color sections. Make sure to purge the cache afterwards.
Best regards,
IsmaelHi,
These are some examples of the monocolored icons.
// https://www.flaticon.com/packs?type=icon&color=black&shape=outline&order_by=4
// https://www.flaticon.com/packs?type=icon&color=black&shape=fill&order_by=4
// https://www.flaticon.com/packs?type=icon&color=black&shape=hand-drawn&order_by=4These type of icons are not allowed or will not be rendered properly.
// https://www.flaticon.com/packs?type=icon&color=color&shape=outline&order_by=4
Best regards,
Ismael -
AuthorPosts