Forum Replies Created
-
AuthorPosts
-
November 7, 2024 at 6:07 am in reply to: pdf-embedder page=# doesn’t work if Frontpage is set #1470807
Hi,
Thank you for the update.
Please provide the login details in the private field so that we can check the issue further. In the meantime, try to contact the plugin developer for additional assistance.
Best regards,
IsmaelHey MysticMimi,
Thank you for the inquiry.
1.) There is no option for this by default, but you can try this code in the functions.php fil:
add_filter('avia_post_slide_query', 'avia_post_slide_query_mod'); function avia_post_slide_query_mod($query) { $query['orderby'] = 'date'; $query['order'] = 'DESC'; return $query; }2.) We discussed this here: https://kriesi.at/support/topic/trying-to-build-blog-with-grid-layout/#post-1470721
Best regards,
IsmaelHey Frank Scheuber,
Thank you for the inquiry.
The featured images seem to be displaying correctly on the category page (see private field). Did you manage to resolve this?
To properly open a thread here in the forum, please register an account using your purchase code at the following link:
// https://kriesi.at/support/register/
Once registered, you can open a new thread or ticket using this form: https://kriesi.at/support/forum/enfold/#new-post
Best regards,
IsmaelHi,
Thank you for the update.
There are many Enfold sites using the W3Total Cache plugin, so we don’t think this is the issue. Please keep the plugins disabled for now while working on the site, or as previously suggested, try cloning the site to a server with a standard WordPress setup without the redirects and additional configurations.
Best regards,
IsmaelHey glodesign,
Thank you for the inquiry.
The product filter only works on the default shop and archive pages; unfortunately, it’s not designed to work within the product grid element.
To adjust the options in the dropdown, you can add this filter in the functions.php file:
function avf_custom_wc_product_order_dropdown($product_order) { return [ 'default' => __( 'Default', 'avia_framework' ), 'price' => __( 'Price', 'avia_framework' ), ]; } add_filter('avf_wc_product_order_dropdown_frontend', 'avf_custom_wc_product_order_dropdown');Best regards,
IsmaelHi,
Thank you for the update.
We would like to apply the css modification, but the login details provided seem to be invalid. Please verify the info or provide another admin account.
Best regards,
IsmaelHi,
Thank you for the update.
The customization you described would require extensive time and theme modifications, which aren’t covered by our support. Unfortunately, we didn’t find any plugin that have this functionality. If this functionality is essential, you might consider hiring a freelancer through our customization page.
If you have any other questions or need further assistance, please let us know.
Best regards,
IsmaelNovember 7, 2024 at 4:50 am in reply to: header logo element causing high LCP relative to everything else #1470799Hi!
Thank you for the update/
A high LCP score is often caused by large images, which is why preloading helped in this case. While render-blocking resources can also delay it by slowing down image loading, they don’t directly affect the LCP score. Could you provide links to pages with high LCP scores?
Cheers!
IsmaelHi,
Thank you for the update.
1.) To display a read more link, edit the Blog Posts element, then set the Define Blog Grid Layout to Title + Excerpt and Read More Link.
2.) And to display the excerpt, make sure that the posts are created using the default editor. If the Advance Layout Builder is active, you have to define the excerpt manually.
3.) To move the meta info after the headline, try to add this script in the functions.php file:
function ava_custom_move_slide_meta_script() { ?> <script> (function($) { $(document).ready(function() { $('.avia-content-slider-inner .slide-entry-wrap .slide-entry').each(function() { var $entry = $(this); var $meta = $entry.find('.slide-meta'); var $title = $entry.find('.slide-entry-title'); if ($meta.length && $title.length) { $meta.insertAfter($title); } }); }); }(jQuery)); </script> <?php } add_action('wp_footer', 'ava_custom_move_slide_meta_script', 99);If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelHi,
Thank you for the update.
Inside the bulletin board I
What do you mean by “bulletin board”? You need to edit the functions.php file in Appearance > Theme File Editor or via FTP. Unfortunately, we cannot center-align the current widget title because of its position in the document, so you’ll need to add the hook above.
Best regards,
IsmaelHi!
@guenn007i: I think he’s using the default editor.
Enfold Child > Blog Layout > Blog Layout > Use Advanced Layout Editor to build your own (but I cannot use ALE once I’m in there because I use the ALE for my Pages, so I’m forced to use the Default Editor for each post . . . I still do not understand why I cannot use ALE on both, but I know that it breaks something)
// https://kriesi.at/support/topic/append-all-blog-posts-with-updated-mm-dd-yyyy/#post-1470539
Regards,
IsmaelHi,
We’ll keep the thread open; please feel free to update us here if you need further assistance.
Best regards,
IsmaelHi,
Enabling the Debug Mode (Backend Only) option should not cause issues with the update. It will simply display the actual shortcode of the elements below the builder.
Best regards,
IsmaelHey koomo,
Thank you for the inquiry.
Have you tried adjusting the color values in the Enfold > Theme Options > Transparency Options? Look for the Transparency Menu Color and Transparency Menu Color On Hover settings.
Best regards,
IsmaelHey HelloWorld99,
Thank you for the inquiry.
Have you tried adjusting the colors of the menu items in the Enfold > General Styling > Logo Area tab? You can also change this in the Enfold > Advanced Styling panel. Another option is to disable the transparent header in the page’s Layout > Title Bar Settings.
Best regards,
IsmaelHi,
Thank you for the update.
We’ve zipped the files separately because they are different fonts. You will need to upload them to the Custom Font Manager one at a time (see the private field).
Best regards,
IsmaelHi,
Thank you for the update.
You can add this css code to remove the bottom margin of the logo:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #top .logo, #top .logo a { margin-bottom: 0 !important; } }Best regards,
IsmaelNovember 6, 2024 at 6:22 am in reply to: pdf-embedder page=# doesn’t work if Frontpage is set #1470733Hey Nancy,
Thank you for the inquiry.
We don’t see any issues at the moment. Please try selecting a front page again so we can check the issue.
Best regards,
IsmaelHi,
wait . . . is this latest stuff for me? ie should I try that last block of code?
@gatehealing: Sorry for the confusion. For single post, you may have to directly modify the includes > loop-index.php or use this filter in the functions.php file.add_filter('avf_post_metadata_array', function($meta, $context) { global $post; if($context == 'loop-index') { $updated_date = get_the_modified_date('F j, Y', $post->ID); $meta['updated_date'] = '<span class="blog-updated-date minor-meta">Updated on: ' . $updated_date . '</span>'; } return $meta; }, 10, 2);Best regards,
IsmaelHi!
Please continue here: https://kriesi.at/support/topic/need-code-to-put-button-right-under-the-menu/
Cheers!
IsmaelHi,
@Guenni007: If I understand correctly, he wanted to convert the sorting buttons into a dropdown. Thanks for sharing, anyway.Best regards,
IsmaelNovember 6, 2024 at 5:55 am in reply to: header logo element causing high LCP relative to everything else #1470729Hi,
Thank you for the update.
The diagnostic part of the LCP is indeed the logo
Did you try preloading the images? It seems that LCP is no longer an issue when we checked the site again today. Please review the screenshot in the private field.
Best regards,
IsmaelHi,
Thank you for the inquiry.
You can use this css code to move the button up closer to the header:
@media only screen and (min-width: 768px) { /* Add your Desktop Styles here */ #top .avia-button-wrap.av-232tvi-166076b32a0c965820e82261d552fa95-wrap { top: -150px; position: relative; } }Best regards,
IsmaelHey benjamins132,
Thank you for the inquiry.
We recommend using the Advanced Layout Builder for especially for pages, as it provides more styling options and flexibility for creating advanced layouts. The post appears to be displaying correctly, and the lightbox is working as expected. Could you share a screenshot of the styling issue? You can upload it using platforms like Savvyify, Imgur, or Dropbox.
Best regards,
IsmaelHi,
Thank you for the info.
You may also need to activate the layout metabox for the the glossary post type using the avf_metabox_layout_post_types filter:
add_filter('avf_metabox_layout_post_types', 'avf_metabox_layout_post_types_mod', 10, 1); function avf_metabox_layout_post_types_mod( array $supported_post_types ) { $supported_post_types[] = 'your-cpt'; return $supported_post_types; }Make sure to replace “your-cpt” with the glossary post type slug.
Best regards,
IsmaelHi,
Thank you for the update.
Have you tried deactivating the plugins temporarily? It’s also possible that the custom server setup is affecting the installation. Is there any way you can clone the site to a temporary domain with a standard WordPress setup?
Best regards,
IsmaelHi,
Thank you for the update.
We’re unable to download the zipfile for some reason. As suggested above, you may need to implement it as a shortcode, as a custom plugin or directly include the PHP files in your child theme. Unfortunately, this type of customization is beyond the scope of our support. Consider hiring a freelancer to assist with the customization. You can find freelancers who specialize in theme customization on our customization page.
If you have any other questions or need further assistance, please feel free to let us know.
Best regards,
IsmaelHey MysticMimi,
Thank you for the inquiry.
To activate the Advanced Layout Builder (ALB) for the blog page, go to Enfold > Blog Layout > Blog Layout and select the last option, ‘Use the Advanced Layout Builder…’. This will allow you to edit the blog page using the ALB.
Best regards,
IsmaelHey Monika,
Thank you for the inquiry.
Could you provide an example of what you’re trying to do? What should happen when you add the class name “scrollsnap”? If you want the color section to snap to a fixed position and only display when the user scrolls down, you may need to create a custom script or use a plugin. This feature is not available out of the box
Best regards,
IsmaelHey Mariarita,
Thank you for the inquiry.
Instead of adding the heading “CON IL PATROCINIO DI:” in a text widget, try to use this code in the functions.php file:
function avia_before_footer_columns_mod() { echo '<div class="av-custom-footer-heading" style="text-align: center; padding: 20px 0;">'; echo 'CON IL PATROCINIO DI:'; echo '</div>'; } add_action( 'avia_before_footer_columns', 'avia_before_footer_columns_mod' );To remove the hyphen, edit the widgets then adjust the value in the Widget Title field.
Best regards,
Ismael -
AuthorPosts
