Forum Replies Created
-
AuthorPosts
-
Hi,
You might be able to use the wpautop function to automatically create paragraph tags, or to automatically convert line breaks to paragraph tags.
// https://developer.wordpress.org/reference/functions/wpautop/
Best regards,
IsmaelAugust 9, 2021 at 3:46 am in reply to: Cant find social media icons for Spotify, Apple Podcasts and Letterboxd? #1315186Hi,
@wzshop: We cannot find any video widget in the above demo. Where did you see the issue exactly?
@bsingenberger: Looks like the media element script is disabled. The videos started loading correctly again once we set the Enfold > Performance > Selbst gehostete Video und Audiofunktionen (WP-Mediaelement-Skripte) to the third option.Best regards,
IsmaelHey acscreativenew,
Thank you for update.
The title seems to be displaying correctly. This is the text in the title tag.
<title>Internal & External Chute Repair Services | Chute Cleaning & Odor Control Services in DC, MD & VA</title>Is this fixed?
Best regards,
IsmaelHi,
If the style tags are normal for the new Enfold versions, I can easily address the image tag in the footer differently. I just never encountered these style tags in older versions.
The style tags are added to improve the site performance and to separate custom element styles from the base styling. This should also improve the above-the-fold performance because the theme only has to load the custom styles of the elements that are actually added in the page.
You may need to target the image elements in the footer differently, or create separate styles for them.
Best regards,
IsmaelAugust 7, 2021 at 6:41 am in reply to: Google ReCaptcha does not work with Enfold Version: 4.7.6.4 #1314995Hi,
You may have to enable the Google ReCAPTCHA widget so that we could properly inspect issue. Please create a new thread and post the site or login details in the private field. We will close this one for now.
Best regards,
IsmaelHi,
In the avf_post_slider_entry_excerpt filter above, try to wrap the $excerpt or the $entry->post_content in a do_shortcode function. This should render the shortcodes in the default editor properly
// https://developer.wordpress.org/reference/functions/do_shortcode/
Rendering of shortcodes are not allowed by default because there is a great chance that it will break the layout of the page if not done correctly.
Best regards,
IsmaelAugust 7, 2021 at 6:33 am in reply to: how setting pagination without "?avia-element-paging=2" #1314985Hi,
Thank you for the info.
It seems to be working as expected. Did you downgrade the theme, or did you upload an old version? Please create a staging site and post the login details in the private field so that we could check the issue properly.
Best regards,
IsmaelAugust 7, 2021 at 6:31 am in reply to: Hide specific blog post categories from specific blog index pages #1314982Hi,
Thank you for following up.
The connection to the site is timing out. Is it currently down?
Hosting Server Connect Timeout HTTP 502 — Unable to Connect to the Origin ServerExample of the code with the post__not_in parameter
function ava_exclude_specific_posts($query) { if (is_page(123)) { $exclude = array(1, 3, 23, 13); $query->set( 'post__not_in', $exclude ); } } add_action('pre_get_posts', 'ava_exclude_specific_posts');You need to specify the IDs of the pages that you want to exclude in this array.
$exclude = array(1, 3, 23, 13);You will also have to adjust the value in is_page conditional function.
Best regards,
IsmaelHi,
The header design that you wanted is quite far from the default header layouts. Unfortunately, the theme does not have options for that kind of layout.
Have you tried adding the extra elements or design layouts as widgets instead of applying it as background? Please check the following documentation for more info.
// https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
You can use html in a text widget, place it in the header as described in the documentation and use css to adjust their position and style.
Best regards,
IsmaelHi,
We tested the site again but we were not able to reproduce the issue. The home page loads fine and the logo displays immediately. The 4.8.5 version is already activated when we checked the site.
Which browser are you using? Please provide a screen cast of the issue so that we can actually see the issue from your end.
Best regards,
IsmaelHi,
Thank you for the info.
Looks like the ID of the section in the EN version is different. Try to use the following URL instead. (see private field)
Best regards,
IsmaelHey!
We cannot reproduce the issue on version Enfold 4.8.6 and WP 5.8. We used one of the videos in your site for testing. Please check the screenshot below.
Screenshot: https://postimg.cc/KKzGdzTV
Do you have a staging version of the site? We would like to try and disable the plugins temporarily.
Cheers!
IsmaelHi,
The functions.php file contains the old code. You have to use this one.
// https://kriesi.at/support/topic/unique-title-and-description-on-pagination-pages/#post-1308722
We already added it in the functions.php file. We also removed the SEO title value again. Please note that the SEO title field will override the title that we set, so you should leave it as is.
Best regards,
IsmaelAugust 6, 2021 at 10:14 am in reply to: Only one picture needet – not all … / Nur ein Bild beim Anklicken anzeigen #1314793Hi,
Thank you for following up.
Did you add the code in the functions.php file? Please post the login details in the private field so that we could test the script properly. Make sure that the Appearance > Editor panel is accessible.
Best regards,
IsmaelHi,
Thank you for following up.
We enabled the privacy cookies and the consent bar, then set the Default Cookie Behavior to the first option. The videos are still playing automatically in the same page instead of opening an external URL. Please make sure to delete the cache before testing the page.
Best regards,
IsmaelAugust 6, 2021 at 10:02 am in reply to: Advanced Custom Fields Shortcode in excerpt blog post #1314788Hi,
Are you sure that the custom field is correct? We could also use the “avf_masonry_entry_content” filter to adjust the content without editing the shortcode file directly. Try to add this code in the functions.php file.
add_filter("avf_masonry_entry_content", function($content, $entry, $atts) { return do_shortcode($content); }, 10, 3);It would also be very helpful if the shortcode in question would be automatically inserted into each new post
That should be possible but it will require modifications that are beyond the scope of support. You may need to hire a third party developer to add the feature.
Best regards,
IsmaelAugust 6, 2021 at 9:57 am in reply to: Displayed Everywhere Widgets are not displayed anymore in latest Version #1314785Hi,
No problem. Glad we could be of help. Please feel free to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Is there a way to solve it with a function to put in functions.php that says something like: if the category name is CATX rename it with CATY?
That is not possible, unfortunately, You will have to add the modifications in the shortcode file directly, or you have to use Javascript. If you chose to use a Javascript solution, you might find this helpful.
// https://kriesi.at/support/topic/menu-position-on-header/#post-1312127
// https://kriesi.at/support/topic/4-8-2-onwards-woocommerce-main-shop-image-is-being-lazy-loaded/#post-1313773Best regards,
IsmaelHi,
Thank you for the info.
We cannot find the script in the functions.php file. Where did you add the function?
Best regards,
IsmaelHi,
Is that the password for the htaccess authentication? The site is asking for another authentication. We tried to use the login info above, including the new password, but it is still not working.
Best regards,
IsmaelAugust 6, 2021 at 9:36 am in reply to: How can I edit the "post slider" module into a "Netflix"lookalike post slider? #1314774Hi,
Thank you for the update.
Did you set the slider to have 5 columns? Try to adjust the value of the width property in the css code that we suggested above.
Best regards,
IsmaelHey Sebastian,
Thank you for the inquiry.
1.) You can choose the thumbnail size in the Styling > Grid Settings > Portfolio Grid Image Size settings, but you cannot select multiple kinds of thumbnails or image sizes.
2.) This is possible but you may need to modify the /config-templatebuilder/avia-shortcodes/portfolio/portfolio.js file around line 79.
imgParent.css({height:'auto'}).each(function(i) { var currentLink = $(this); setTimeout(function() { currentLink.animate({opacity:1},1500); }, (100 * i)); });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,
IsmaelHey gabiposch,
Thank you for the inquiry.
You can add your own custom html or elements inside a code or text block and use css code to adjust its style.
Example:
<div class="flex_column av_one_twelveth">Content here</div> <div class="flex_column av_ten_twelveth">Content here</div> <div class="flex_column av_one_twelveth">Content here</div>The css might look something like this.
.av_one_twelveth { width: 7%; } .av_ten_twelveth { width: 82%; }Best regards,
IsmaelHi,
Thank you for following up.
Are you referring to the slider images in the portfolio preview? We should be able to use the “avf_ajax_preview_image_size” filter to adjust the default thumbnail in the slider.
add_filter("avf_ajax_preview_image_size", function($size) { $size = "full"; return $size; }, 10, 1);Best regards,
IsmaelHey Jeannette,
Thank you for the inquiry.
Now that the style tag is the first child,
Have you tried to actually target the image element instead of the first div or container? Please post the site URL in the private field so that we can check the issue further.
Best regards,
IsmaelAHey Christie,
Thank you for the inquiry.
The filter above is not working because the background image is now applied using an internal style, which is generated by the get_element_styles function in the enfold/config-templatebuilder/avia-shortcodes/av-helper-masonry.php file. You may need to temporarily add the modification in the shortcode file instead of using the filter.
Best regards,
IsmaelAugust 5, 2021 at 9:07 am in reply to: Masonry Gallery Preloader Spining Wheel in Page Preview Mode. #1314582Hey Phet,
Thank you for the inquiry.
It might be the same issue with the loading icon that we encountered in the following thread. For some reason, the loading spinner causes the whole document to shake, or jiggle as you put it. Removing the loading icon seems to help fix the issue.
Please check the following thread.
// https://kriesi.at/support/topic/shaking-on-load-more-button-click/#post-1238460
Best regards,
IsmaelAugust 5, 2021 at 9:03 am in reply to: ENFOLD 4.8.3 + WP5.8: Import theme settings not working #1314581Hi,
Thank you for the info.
Can we have access to the site containing the version 4.5.7? We would like to export the theme settings directly from the site and test it on our own installation. We tried to re-import and re-save the theme settings in the Media > Library panel, but it is still not working. The file might be corrupted or the theme options in it are already invalid. We cannot know for sure, unfortunately.
Best regards,
IsmaelHey Greg,
Thank you for the inquiry.
How did you set it to “fixed”? The background images will revert back to “scroll” on mobile view by default. If you want to switch it back to “fixed”, try to add this css code.
.avia_mobile .avia-full-stretch { background-attachment: fixed !important; }Please do not forget to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
Ismael -
AuthorPosts
