Forum Replies Created
-
AuthorPosts
-
Hi,
How were you able to tell it is the CDN?
The url inside the private field of my previous reply is being fetched through CDN but it’s not loading properly. (see private field)
Best regards,
IsmaelHi,
The old Envato API has shut down, so you’ll have to update the theme manually for now. We’ll release an update for the new API on the next patch.
// https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#update-via-ftp
Best regards,
IsmaelHi,
Thanks for the update.
You can use this filter in the functions.php file to exclude the sub categories.
function array_unshift_assoc(&$arr, $key, $val) { $arr = array_reverse($arr, true); $arr[$key] = $val; $arr = array_reverse($arr, true); return $arr; } // portfolio query add_filter( 'avia_post_grid_query', 'avia_post_grid_query_mod', 1000, 2); function avia_post_grid_query_mod( $query, $params ) { $child_cats = (array) get_term_children( $params['categories'], 'portfolio_entries' ); if ( ! is_admin() ) { // exclude the posts in child categories array_unshift_assoc($query['tax_query'], 'relation', 'AND'); $query['tax_query'][] = array( 'taxonomy' => 'portfolio_entries', 'field' => 'term_id', 'terms' => array(implode(',', $child_cats)), 'operator' => 'NOT IN', ); } return $query; }
Best regards,
IsmaelHi,
The og:image property is rendered on the page’s markup when I check. Odd thing is, I can’t access the facebook debugger. We’ll get back to you once the debugger loads. (see private field)
Best regards,
IsmaelHi,
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,
We adjusted the code a bit so that you can add a preview image. Adjust the value of the “background-image” css property to your preview image url. You need to adjust the iframe’s “src” and container’s “data-original_url” attributes value as well.
<div class="avia-video avia-video-16-9 av-lazyload-video-embed" style="background-image:url('CHANGE IMAGE URL HERE');" itemprop="video" itemtype="https://schema.org/VideoObject" data-original_url="https://www.youtube.com/watch?v=G0k3kHtyoqc"> <script type="text/html" class="av-video-tmpl"> <div class='avia-iframe-wrap'> <iframe width="1500" height="844" src="https://www.youtube.com/embed/G0k3kHtyoqc?feature=oembed&autoplay=1" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe> </div> </script> <div class="av-click-to-play-overlay"> <div class="avia_playpause_icon"></div> </div> </div>
Best regards,
IsmaelHi,
The site is not loading on my end. Is that the correct url?
Best regards,
IsmaelHi,
@FZKFranziska: Please continue here: https://kriesi.at/support/topic/opening-iframe-modal-with-button-click/#post-1017672We’ll close this thread now.
Best regards,
IsmaelHi,
Thanks for the clarification. You can use the “avf_title_args” filter to modify the main title.
add_filter('avf_title_args', 'avf_title_args_events_mod', 99, 2); function avf_title_args_events_mod($args,$id) { if ( $args['title'] == get_the_title(get_the_ID()) && is_singular('tribe_events') ) { $args['title'] = 'Activiteiten'; } return $args; }
Best regards,
IsmaelOctober 5, 2018 at 6:47 am in reply to: Lighbox issue – pictures shown which do not belong to post #1018145Hi,
Sorry about that. Can we access the live site? Please make sure that the Appearance > Editor panel is accessible.
Best regards,
IsmaelHi,
Sorry for the late response.
It’s not working properly because of the “< center >” and “< br >” tags. Please use the slider’s text alignment option to center align the text and close the line break tags properly. I created a test slider and a temporary page.
Best regards,
IsmaelHi,
Did you setup a billing account on your google cloud console?
// https://console.cloud.google.com/billing
The map API requires a billing account for each projects.
// https://developers.google.com/maps/billing/understanding-cost-of-use
Best regards,
IsmaelHi,
Thank you for using Enfold.
The theme automatically wraps the elements inside a generic color section when they’re not inside one. Move the heading element inside a color section and then configure the Screen Options of that color section instead of the heading.
Best regards,
IsmaelHey Maaster,
Thank you for using Enfold.
The slide will automatically switch to the next slide once the video finished. You should not enable the video slides’ “loop” option because it will just replay the first video.
Use this code to remove the loading overlay..mejs-overlay-loading-bg-img { display: none !important; }
Best regards,
IsmaelHi,
That is the disadvantage of using these filters. Your domain’s email address is use as the “from” address to tell your mail server that the source is trustworthy. Have you tried setting up a SMTP instead of using the filters? Please ask your hosting provider if they can set your mail server to accept third party email addresses with SMTP.
Best regards,
IsmaelHi,
Thank you for using Enfold.
That is quite interesting. Try to use the str_replace function to replace a particular string with your own.
std = str_replace("<img id='pr-logo' src='".AVIA_BASE_URL."images/layout/logo_modern.png' alt=''/>", "REPLACEMENT", $avia_elements[ $index ]['std']);
Best regards,
Ismael3`Hey Alexander,
Thank you for using Enfold.
In the same panel, look for the Screen Options button and then enable the “Products” post type from there. This will give you a list of your product items.
Best regards,
IsmaelHey sitesme,
Thank you for using Enfold.
That is not possible with the sliders’ default options. You may need to modify the config-templatebuilder > aviashortcodes > postslider > postslider.php file if you want the post slider to slide instead of fade. Look for this code around line 379:
'animation' => 'fade',
Replace “fade” with “slide”.
Best regards,
IsmaelHi,
The “News” page is set as the default blog or posts page, so the “News” menu item will get tagged as the current menu item whenever a single post page is displayed. Did you apply unique categories to the “boer-piu-di-cosi” posts? You can use this filter to remove the “current-menu-item” attribute.
add_filter('walker_nav_menu_start_el', 'avf_walker_nav_menu_start_el_mod', 10, 4); function avf_walker_nav_menu_start_el_mod($item_output, $item, $depth, $args) { $indent = ( $depth ) ? str_repeat( "\t", $depth ) : ''; $blog_id = avia_get_option('blogpage'); if($depth === 0 && $blog_id && $blog_id == $item->object_id && is_singular('post')) { $classes = empty( $item->classes ) ? array() : (array) $item->classes; $class_names = $value = ''; $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) ); if($depth === 0 ) $class_names .= " menu-item-top-level menu-item-top-level-".$item->first_level_count; $class_names = ' class="'.esc_attr( $class_names ) . $column_class .'"'; $item_output = ""; $item_output .= $indent . ' <li id="menu-item-'. $item->ID . '"' . $value . $class_names .'>'; $item_output .= $args->before; $item_output .= '<a'. $attributes .'><span class="avia-bullet"></span>'; $item_output .= $args->link_before .'<span class="avia-menu-text">'. do_shortcode(apply_filters('the_title', $item->title, $item->ID)) ."</span>". $args->link_after; if($depth === 0) { if(!empty($item->description)) { $item_output .= '<span class="avia-menu-subtext">'. do_shortcode($item->description) ."</span>"; } $item_output .= '<span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span>'; } $item_output .= '</a>'; $item_output .= $args->after; $item_output .= "</li> \n"; } return $item_output; }
Best regards,
IsmaelHi,
Look for the “Add Cell” button at the bottom of the grid row element.
Best regards,
IsmaelHi,
Thanks for the update.
You can try this css code.
.page-id-985 #av_section_1 { min-height: 1031px; }
You may need to apply a Section ID to the color section in order to replace the generic id or selector “#av_section_1”.
Best regards,
IsmaelHi,
I found this thread, which seems to be related to your issue. Please try to update your WordPress installation manually and then reset the permalinks afterwards.
// https://wordpress.org/support/topic/warning-require-failed-to-open-stream-no-such-file-or-directory/
Error Related to Missing or Damaged Core Files
Try downloading WordPress again, access your server via SFTP or FTP, or a file manager in your hosting account’s control panel, and delete then replace your copies of everything except the wp-config.php file and the /wp-content/ directory with fresh copies from the download. This will effectively replace all of your core files without damaging your content and settings.
Some uploaders tend to be unreliable when overwriting files, so don’t forget to delete the original files before replacing them.Best regards,
IsmaelOctober 4, 2018 at 9:02 pm in reply to: galleries opening duplicate image on top of lightbox #1018006Hi,
Thanks for the update. I can’t reproduce the issue on my end. Do you have a screenshot?
Best regards,
IsmaelHey Nicolas,
Thank you for using Enfold.
What happens when you remove the intval function? The “get_queried_object_id” function returns an integer by default.
Best regards,
IsmaelOctober 4, 2018 at 8:51 pm in reply to: Blog dates not showing on translation page and blog notifications to subscribers #1018003Hi,
Thanks for the update. It’s been a while. I edited the postslider.php file and adjusted the date format in the Settings > General panel. The dates are displaying properly now.
Best regards,
IsmaelOctober 4, 2018 at 8:39 pm in reply to: Button onclick event problem (including tracking codes and pixels) #1018001Hi,
Cool. Glad that it’s working now. Please open a new thread if you need anything else. :)
Best regards,
IsmaelHi,
You can actually change the background and font color of the upper bar or container on the Advanced Styling panel — same with the main header container. Have you tried it? Please post the login details in the private field so that we can adjust the elements for you.
Best regards,
IsmaelHey Dawn,
Thank you for using Enfold.
Did you set the WooCommerce > Settings > Products > Column and Product Count > Product Count settings to -1? Default value should be 15. The product sorting number is based on that value.
Best regards,
IsmaelHey ezvisa,
Thank you for using Enfold.
Where can we see one your products? Please provide a link. What is the current rating code or script that you’re using?
Best regards,
IsmaelHey Yaser,
Thank you for using Enfold.
1.) The map is displaying properly when I check. Please check the docs for more info regarding the map API key.
// https://kriesi.at/documentation/enfold/google-map/
2.) You can change the footer info in the Enfold > Footer panel. Look for the “Copyright” field.
Best regards,
Ismael -
AuthorPosts