Forum Replies Created
-
AuthorPosts
-
Hey evas49,
Thank you for the inquiry.
That is actually the correct breadcrumb trail for the post if the page containing the masonry element is not assigned as the main blog page. If you want the breadcrumb to link back to the masonry page, try to set it as blog page in the Enfold > Theme Options panel.
We can use the avia_breadcrumbs_trail filter to adjust the breadcrumb but we recommend setting the masonry page as blog page instead.
Usage example of the avia_breadcrumbs_trail filter below.
add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 ); function avia_breadcrumbs_trail_mod( $trail, $args ) { // remove duplicate events trail if ( is_singular('post') { unset ($trail[1]); } return $trail; }Best regards,
IsmaelHi,
Thank you for the info.
The css code below should adjust the position of the dots on smaller screens.
@media only screen and (max-width: 768px) { .avia-image-container.av-67cea-136ddc8b145abc744c886b5819885f00, .avia-image-container.av-4hwii-ef140ae0612800d65a56956f82b14b3f, .avia-image-container.av-2ofye-558b2f838626b4d4afd94927f17a28e6{ position: relative; top: -75px; left: -40px; } }We are using the unique class name of the image elements in the css rule above, but the class names can be replaced with custom ones if necessary. Please check this documentation.
// https://kriesi.at/documentation/enfold/add-custom-css/
Best regards,
Ismael`August 8, 2022 at 3:05 am in reply to: BUG: Google ReCaptcha element is going underneath the content #1361034Hi,
but also with the other elements.
Would you mind providing links to the elements or pages? The idea above is to increase the z-index of the section with the ID #aanmeldformulier and the column containing the contact form to ensure sure that they are higher in the stack order or that they are above the other elements or sections in the page. Applying the same style or css to the rest of the elements displaying the same issue should help.
Best regards,
IsmaelAugust 8, 2022 at 2:57 am in reply to: How to use layout architekt with the events calendar to style event page? #1361032Hey Katja,
Thank you for the inquiry.
We could apply a background to the event pages manually using this css code.
.single-tribe_events div#main { background: url(https://kschira.de/shanti/wp-content/uploads/shantidevi-hintergrundbild-1.jpg) !important; }And to apply the same transparent background to the header, please add this css.
.single-tribe_events .header_bg { background-color: transparent; opacity: 0; filter: alpha(opacity=0); }You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelAugust 5, 2022 at 11:31 am in reply to: Background image on color sections gone after cloning #1360769Hi,
We may need to access the site in order to check the issue properly. Please provide the login details in the private field and make sure that the Appearance > Theme File Editor panel is accessible. If you have a cache plugin, try to keep the “Delete Old CSS And JS Files” disabled.
Thank you for your patience.
Best regards,
IsmaelAugust 5, 2022 at 11:20 am in reply to: Improve Re-captcha behavior with regards to cookie consent. #1360766Hi,
Thank you for the update.
Can you post the current snippet or code? You may need to adjust it a bit to something like this.
Let us know if the changes work.Best regards,
IsmaelAugust 5, 2022 at 11:05 am in reply to: Imported posts and the grid layout theme look has changed. #1360762Hey gb,
Thank you for the inquiry.
An audio format post has to contain an audio shortcode using mp3 for example.
[audio mp3="http://www.archive.org/download/music.mp3" preload="auto"][/audio]This audio shortcode will display in the location of the featured image or post preview. Can you confirm that the imported posts contain audio shortcodes?
Best regards,
IsmaelHey!
Thank you for the info @Guenni007.
I tested the filter on my end and it seems to break the layout of the post, pushing the image outside of the big-preview container.
code from: https://kriesi.at/support/topic/remove-link-from-featured-image-2/
function av_remove_featured_image_link(){ if(is_single()){ echo get_the_post_thumbnail( $current_post['the_id'], 'featured' ); } } add_filter('avf_post_featured_image_link','av_remove_featured_image_link');I adjusted the code a bit.
function av_remove_featured_image_link($image) { if (is_single()) { $image = get_the_post_thumbnail( $current_post['the_id'], 'featured' ); } return $image; } add_filter('avf_post_featured_image_link','av_remove_featured_image_link', 10, 1);This returns the same markup or image which still contains a link as expected. This is due to this markup in the loop-index.php file.
iif( $slider ) { if( $link_lightbox ) { $slider = '<a ' . $lightbox_attr . ' ' . $featured_img_title . '>' . $slider . '</a>'; } else { $slider = '<a href="' . $link . '" ' . $featured_img_title . '>' . $slider . '</a>'; } } if( $slider ) { echo '<div class="big-preview ' . $blog_style . '" ' . avia_markup_helper( array( 'context' => 'image', 'echo' => false ) ) . '>' . $slider . '</div>'; }We can slightly edit the code above to remove the link completely,
iif( $slider ) if( $slider ) { echo '<div class="big-preview ' . $blog_style . '" ' . avia_markup_helper( array( 'context' => 'image', 'echo' => false ) ) . '>' . $slider . '</div>'; }Or just use the css suggestion above.
Best regards,
IsmaelHey Tim,
Thank you for the inquiry.
Not sure how the modification above affects the private posts but setting the hide_empty parameter to false will only force empty categories to display in the av-sort-by-term container. This is where the category sort buttons are located.
// https://developer.wordpress.org/reference/functions/get_terms/
To display private posts, you may need to adjust the post_status parameter in the masonry query.
// https://developer.wordpress.org/reference/classes/wp_query/#status-parameters
You can use the avia_masonry_entries_query filter for this.
Best regards,
IsmaelHey Dzimnikov,
Thank you for the inquiry.
– You cannot insert the URL directly using an Image element if that is what you are looking for. What you can do instead is use a text or code block and manually insert an img tag and use the URL as its src value.
Example:
<img src="https://link.com/to/custom/url.jpg" />– This is not available by default but you can hire someone to create a script that calculates the current pricing based on certain factors. Unfortunately, this is beyond the scope of support.
Best regards,
IsmaelHi,
We tried to modify the script again but the dashboard is not loading for some reason, might be due to our connection. In the script that we provided above, please look for this line of code..
tab = $('.av-section-tab-title[href='+ hash +']'),.., then replace it with:
tab = $('.av-section-tab-title[data-av-deeplink-tabs='+ hash +']'),This should select the tab section containing a data-av-deeplink-tabs attribute with the corresponding hash.
Best regards,
IsmaelHey Frans,
Thank you for the inquiry.
Are you trying to create a carousel type of slideshow where it skips one item at a time instead of the whole set of slides? Currently, this will work if the slide only contains a single column, at least with the current implementation of the slider script. It is not going to work for slides with multiple columns such as the content slider.
You may need to hire a freelance developer to help you modify the enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.js file and the config-templatebuilder/avia-shortcodes/contentslider/contentslider.php template. You can also contact our partner Codeable for this kind of customization.
// https://kriesi.at/contact/customization
Best regards,
IsmaelHey dadisk8,
Thank you for the inquiry.
We can use the avia_layout_filter to adjust the layout of the archive or category pages. Please add this code in the functions.php file.
add_filter('avia_layout_filter', 'avia_change_post_layout', 10, 2); function avia_change_post_layout($layout, $post_id) { if( is_archive() && is_category() ){ $layout['current'] = $layout['fullsize']; $layout['current']['main'] = 'fullsize'; } return $layout; }This should set the archives pages to have a full layout and remove the sidebar.
Best regards,
IsmaelHey blaircomm1,
Thank you for the inquiry.
You can try the following css code to adjust the fullwidth breakpoint of the columns (1/2). Please add it in the Quick CSS field.
@media only screen and (max-width: 1200px) { /* Add your Mobile Styles here */ .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column.av_one_half, .responsive #top #wrap_all .av-flex-cells .no_margin { margin: 0; margin-bottom: 20px; width: 100%; } }Best regards,
IsmaelHey Jan,
Thank you for the inquiry.
There might be an issue with the merged scripts. Please try to toggle or disable the Enfold > Performance > File Compression settings and temporarily disable the cache plugin, then refresh the dashboard. Let us know if that works. If not, please provide the login details in the private field so that we can check the issue further.
Best regards,
IsmaelHey evas49,
Thank you for the inquiry.
Where can we see the issue? Please provide a link to the blog posts so that we can check the issue properly.
The title of the blog posts are displaying correctly on our end. Did you install an SEO plugin such as Yoast? It is possible that the SEO plugin is adjusting the title.
Best regards,
IsmaelAugust 5, 2022 at 5:44 am in reply to: Improve Re-captcha behavior with regards to cookie consent. #1360723Hi,
Thank you for the update.
You can use this shortcode to create a link or button that will open the modal popup window.
If you need a link that will open the privacy policy page directly, use this shortcode instead: [ av_privacy_link ] (without spaces before curly brackets)
Best regards,
IsmaelHey evas49,
Thank you for the inquiry.
Are you using the Blog Posts element? Which blog style did you choose? Please provide a link to the site so that we can check the elements properly.
You can try this css code to disable the link of the featured image (big preview).
.big-preview.single-big a { pointer-events: none; }Best regards,
IsmaelAugust 5, 2022 at 5:28 am in reply to: Fatal error after theme update – allowed memory size….. #1360721Hi,
Looks like PHP is looking for the extension imagick.so but it doesn’t exist in your server. Please contact your hosting provider and ask them to check the PHP configuration. You can forward the error above. They may need to reinstall the imagick.so extension or disable it by editing the php.ini file.
Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for the info.
Is there a staging version of the site? We don’t want to accidentally break the site while editing the code.
Another solution is to extract the actual html of the slideshow and the layer slider and replace the shortcode. This solution works on our end.
This is an example of the fullwidth slider’s html.
$output .= ' <div id="full_slider_1" class="avia-fullwidth-slider main_color avia-shadow container_wrap fullsize"> <div class="avia-slideshow av-41ebxqf-8e1d42e67b1a6175203854efa82b817e avia-slideshow-no scaling av_slideshow_full avia-slide-slider av-slideshow-ui av-control-default av-slideshow-manual av-loop-once av-loop-manual-endless avia-slideshow-1" data-slideshow-options="{"animation":"slide","autoplay":false,"loop_autoplay":"once","interval":5,"loop_manual":"manual-endless","autoplay_stopper":false,"noNavigation":false,"bg_slider":false,"keep_padding":false,"hoverpause":false,"show_slide_delay":0}" itemprop="image" itemscope="itemscope" itemtype="https://schema.org/ImageObject"> <ul class="avia-slideshow-inner " style="padding: 0px; height: 366px;"> <li class="avia-slideshow-slide av-41ebxqf-8e1d42e67b1a6175203854efa82b817e__0 av-single-slide slide-1 slide-odd next-active-slide active-slide" style="visibility: visible; opacity: 1; transition: none 0s ease 0s; transform: translateZ(0px);"> <div data-rel="slideshow-1" class="avia-slide-wrap "><img class="wp-image-3345 avia-img-lazy-loading-not-3345" src="http://site.com/wp-content/uploads/2022/07/teahub.io-spaceship-wallpaper-631136.jpg" width="2560" height="1440" title="teahub.io-spaceship-wallpaper-631136" alt="A new home world. Test our faith." itemprop="thumbnailUrl" srcset="http://site.com/wp-content/uploads/2022/07/teahub.io-spaceship-wallpaper-631136.jpg 2560w, http://site.com/wp-content/uploads/2022/07/teahub.io-spaceship-wallpaper-631136-300x169.jpg 300w, http://site.com/wp-content/uploads/2022/07/teahub.io-spaceship-wallpaper-631136-1030x579.jpg 1030w, http://site.com/wp-content/uploads/2022/07/teahub.io-spaceship-wallpaper-631136-768x432.jpg 768w, http://site.com/wp-content/uploads/2022/07/teahub.io-spaceship-wallpaper-631136-1536x864.jpg 1536w, http://site.com/wp-content/uploads/2022/07/teahub.io-spaceship-wallpaper-631136-2048x1152.jpg 2048w, http://site.com/wp-content/uploads/2022/07/teahub.io-spaceship-wallpaper-631136-1500x844.jpg 1500w, http://site.com/wp-content/uploads/2022/07/teahub.io-spaceship-wallpaper-631136-705x397.jpg 705w" sizes="(max-width: 2560px) 100vw, 2560px" style="left: 0px;"></div></li> </ul> </div> </div> ';Best regards,
IsmaelHey Keith,
Thank you for the inquiry.
Have you tried installing a security plugin such as Sucuri or Wordfence? The plugin should help block the source of the unwanted emails and improve the overall security of the site.
// https://wordpress.org/plugins/sucuri-scanner/
// https://wordpress.org/plugins/wordfence/If the issue persists, try to use different contact forms from plugins like Contact Form 7 or WPForms.
Best regards,
IsmaelAugust 4, 2022 at 8:34 am in reply to: Background image on color sections gone after cloning #1360578Hi,
Thank you for the inquiry.
You may need toggle or temporarily disable the Enfold > Performance > File Compression settings while editing the site. This is to ensure that the dynamic stylesheets are regenerated when something changes in the site. You should also disable the cache and minification plugin temporarily.
Best regards,
IsmaelHi,
The script is not working because there are no elements in the page with the ID #nebenbuehne1link. The script will only work if the href attribute of the tab section title is the same as the URL hash or anchor, or when there is a an element with an ID that is the same as the URL hash.
You may need to adjust the anchor link or make sure that there is an element in the page with an ID that is the same as the URL hash.
Example:
<div id="nebenbuehne1link">Test</div>Best regards,
IsmaelHi,
Thank you for the update.
so maybe have a look at the upper part.
I just tried it the the header_slider acf fieldYes, we actually modified the fullwidth slideshow shortcode and combined the output. Please enable the Appearance > Theme File Editor panel and provide the login details in the private field. We will try to check the issue further.
Best regards,
IsmaelAugust 4, 2022 at 7:34 am in reply to: Fatal error after theme update – allowed memory size….. #1360574Hi,
Thank you for the update.
Looks like an issue with font size switcher. Is this only happening in the home page? Please try to edit the home page and update it or edit the elements inside the page and resave them.
To hide the warnings/errors temporarily, please edit the wp-config.php file and set the WP_DEBUG_DISPLAY constant to false.
// https://wordpress.org/support/article/debugging-in-wordpress/#wp_debug_display
Best regards,
IsmaelHi,
Thank you for the update.
We were able to reproduce the issue on an iPhone emulator. The number in the input field is faded because the opacity of the input field is set to 0.4. To fix the issue, we have to set the opacity of the quantity input element back to 1.
Please add this css code in the Quick CSS field.
#mainContainer div.qty input { opacity: 1 !important; }You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelAugust 4, 2022 at 7:21 am in reply to: Enfold's Product Grid filtered by WooCommerce attributes #1360571Hi,
This option is not yet available, unfortunately. You may need to look for a plugin or hire a freelance developer to add the option for you. Please contact our partner Codeable in the link below.
// https://kriesi.at/contact/customization
If you have more questions about the theme, please let us know in a different thread. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the inquiry.
@mistermagoo8691: Please check the test page above and follow the recommendations.@@Guenni007: Thank you for the info and the test page!
Best regards,
IsmaelHey Mountain,
Thank you for the inquiry.
The color of the text in the input field is already set to black when we checked. Did you add this css code?
#mainContainer input.count { width: 40px !important; margin: 0px 5px; font-size: 1.2rem !important; color: #000!important; }Best regards,
Ismael -
AuthorPosts
