Forum Replies Created
-
AuthorPosts
-
Hi,
Sorry for the delay. Please remove the previous script and use this filter instead.
add_filter('avf_postgrid_excerpt_length','avf_postgrid_excerpt_length_mod', 10, 1); function avf_postgrid_excerpt_length_mod($length) { $length = 30; return $length; }Default excerpt length value is 60.
Best regards,
IsmaelHi,
Thanks for the update.
You can apply a left margin to the main menu container.
.responsive #top #header #header_main .inner-container .main_menu { order: 0; flex-basis: auto; align-items: center; align-self: center; margin-left: 2%; }Best regards,
IsmaelHi,
Thanks for the update.
Add a full width slider and have it display on mobile devices instead of the default one. You can use the elements’ Screen Options to toggle their visibility on different screen size or device.
Best regards,
IsmaelMay 20, 2019 at 5:10 am in reply to: Large logo on header to expand into content and Meta area #1102366Hi,
Thanks for the update.
Did you remove the logo? It’s not visible in the header.
You can add this css code to adjust the height of the logo when the page is scrolled.
.header-scrolled .logo img { height: 80%; max-height: 140px !important; }Best regards,
IsmaelHi,
Thanks for the update.
You can’t embed the iframe tag in a masonry element directly. You can only designate a youtube url to a particular masonry item and have that video open inside a lightbox when you click on the item.
Best regards,
IsmaelHi,
Awesome! Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
And don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold.
Best regards,
IsmaelHi,
You should adjust this code:
.single-product-summary { overflow: hidden; width: 45%; float: left; margin-right: 5%; }Set the “float” property from left to right and remove the right margin.
.single-product-summary { overflow: hidden; width: 45%; float: right; margin-left: 5%; }Best regards,
IsmaelHi,
Thanks for the update.
That is 1.7s improvement in loading speed, which is actually huge. It may not look like it but it is. Unfortunately, site optimization is beyond the scope of support, so you may need to implement this yourself. We can only provide resources about it but we can’t help you with the actual implementation. Please follow the recommendations provided by the speed testing tool.
Best regards,
IsmaelHi,
Thanks for the update.
Did you test it using another theme? I don’t really think this is an issue with Enfold. It’s probably an issue with the debugger’s cache mechanism.
Related thread: https://woorkup.com/facebook-open-graph-debugger-cache-clearing/
The solution here might help.
// https://stackoverflow.com/questions/5776567/facebook-open-graph-not-clearing-cache
Just append the “fbrefresh=” query to the url.
Best regards,
IsmaelHi,
Thanks for the update.
You just changed the class attribute name and adjusted the css code above using that particular class attribute (center_icon_box). If you want to create space between the box and the text, add this css code.
.center_icon_box { width: 40% !important; float: left !important; margin-right: 50px; }Best regards,
IsmaelHi,
Thanks for the update. And sorry for the confusion.
In order to make it much more convenient for you, let’s try the following. Create a new page, add a full width submenu to it and take note of the page id because we’re going to use it inside a filter. After creating the page with the full width sub menu element, add this filter in the functions.php file.
add_action( 'ava_after_main_title', 'ava_after_main_title_mod' ); function ava_after_main_title_mod() { if( ! is_archive() ) return; $the_id = 4679; $post = get_post( $the_id ); $content = Avia_Builder()->compile_post_content( $post ); echo $content; }Replace the value of the “$the_id” with the actual id of the page with the sub menu element.
Best regards,
IsmaelHi,
That’s not possible, unfortunately. You have to modify the existing taxonomy or archive template files manually, or create your own.
Best regards,
IsmaelHi,
Thanks for the update.
We tested it by changing the duration value to 10000 and it worked. The sub menu container stayed visible for 10 full seconds before disappearing. Please don’t forget to toggle the Performance > File Compression settings, or purge the plugin cache after adjusting the duration value.
Did you add any custom modification for the menu?
Best regards,
IsmaelHi,
Thanks for the update.
The account doesn’t have admin rights. Please change the user role.
Did you create a development or staging area for this particular site? Please clone the site to a staging site or domain so that we can debug the issue there.
// https://www.wpbeginner.com/wp-tutorials/how-to-create-staging-environment-for-a-wordpress-site/
Best regards,
IsmaelHi,
Thanks for the update.
We have added the following css code in the Quick CSS field.
.avia-image-overlay-wrap a.avia_image .image-overlay { display: none !important; }Please don’t forget to remove the browser cache prior to checking the page.
Best regards,
IsmaelMay 20, 2019 at 3:48 am in reply to: Background FIXED so that the info is scrollable over the top of the image #1102353Hi,
You have to dequeue or deregister the original js file first, then register the new one or the script file in the child theme.
// https://developer.wordpress.org/reference/functions/wp_deregister_script/
// https://developer.wordpress.org/reference/functions/wp_register_script/Best regards,
IsmaelMay 20, 2019 at 3:44 am in reply to: Video widget large white gap – cant use facebook video #1102351Hi,
Please continue here: https://kriesi.at/support/topic/testimonials-gone-and-video-widget/
We’ll close this one for now.
Best regards,
IsmaelHi,
Thanks for the update.
This filter should help change the layout of the archive page and display the featured images back.
//change category page layout to blog single big style add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); function avia_change_category_blog_layout($layout, $context){ if($context == 'archive') $layout = 'single-big'; return $layout; }Best regards,
IsmaelHi,
Awesome! Glad it worked. Please don’t hesitate to open a new thread if you need anything else.
And if you have the time, please take a moment to review our theme and show your support https://themeforest.net/downloads
For future reference, don’t forget to bookmark the Enfold Documentation.Have a nice day!
Best regards,
IsmaelMay 17, 2019 at 1:02 pm in reply to: Blog masonry mouse over white overlay effect not working #1101782Hi,
Thanks for the update.
Sorry about that. I didn’t know that there is a new “Image Effect” option in that element or I just forgot it completely. Anyway, I checked the page and the css code for the white overlay effect is missing. Please add this css code to bring the effect back.
#top .av-hover-overlay-white.av-caption-style-overlay .av-masonry-item-with-image:hover .av-inner-masonry-content { background: rgba(255,255,255,0.35); }We’ll report the issue. Again, thank you for your patience.
Best regards,
IsmaelHi,
Thanks for the update.
Are you trying to edit the actual taxonomy or the terms page using the advance layout builder? You can only use the ALB for the posts that belong to the terms inside that taxonomy, not for the taxonomy or the terms page itself. Again, you can’t edit the term, or the taxonomy where it belongs to, using the advance layout builder. You have to edit the taxonomy, category or archive template file for that or create them manually if they don’t exist yet.
// https://developer.wordpress.org/themes/template-files-section/taxonomy-templates/
Best regards,
IsmaelHi,
Great! Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Please bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelHi,
Thanks for the update.
1.) We forgot to include this css code.
.fake-thumbnail .slide-image { display: none !important; }The small preview can be removed on the single post page, but the following css code will also affect those posts with featured image.
.single .small-preview { display: none; }2.) This is an example of the full width sub menu shortcode.
[av_submenu which_menu='center' menu='' position='center' color='main_color' sticky='true' mobile='disabled' mobile_switch='av-switch-768' mobile_submenu='' av_uid=''] [av_submenu_item title='Menu Item 1'] [av_submenu_item title='Menu Item 2'] [/av_submenu]You can wrap that around the do_shortcode function and echo it out in the archive.php file or template. You can find an example of that in the function reference page.
// https://developer.wordpress.org/reference/functions/do_shortcode/
Best regards,
IsmaelHi,
Thanks for the update.
Try to remove the “divided by 2” in the transition value.
hideSlide.avia_animate({opacity:0}, self.options.transitionSpeed/2, 'linear', fadeCallback);.. change to:
hideSlide.avia_animate({opacity:0}, self.options.transitionSpeed, 'linear', fadeCallback);Best regards,
IsmaelMay 17, 2019 at 12:34 pm in reply to: First horizontal gallery Initial Active Image moves after scrolling vertically #1101759Hi,
Is it possible to specifically hide this horizontal gallery only for firefox users?
Yes, that is possible. You can prepend the “.avia-mozilla” selector to the id or class attribute of the horizontal gallery. Example:
.avia-mozilla .av-horizontal-gallery { display: none !important; }Best regards,
IsmaelHi,
We would like to apologize for the late response.
You can remove that code completely, but we’re not sure if it’s going to break something else. Don’t forget to toggle the Performance > File Compression settings after the modification.
Best regards,
IsmaelMay 17, 2019 at 12:07 pm in reply to: Accordion not working in InternetExplorer, enfold 3.6, WP 4.5.2 (Multisite) #1101743Hi,
Alright. Please don’t to hesitate to update us if you need anything else. We’ll close this thread for now.
Have a nice day.
Best regards,
IsmaelHi,
Thanks for the update.
You need the latest version of the theme in order for that filter to work properly. Please try to update to version 4.5.7 manually via FTP.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelHi,
Thanks for the update.
Did you add any custom scripts on the “Contact” page? Please create a new thread or ticket so that we can close this one. Provide the login details in the private field.
Best regards,
IsmaelHi,
Thanks for the update.
You should add the actual iconbox shortcode inside the text block, then turn on the custom css class field so that we can target that specific text block or icon box element directly.
You can generate the iconbox shortcode from a separate post using the shortcode generator.
The content of text block should look something like this once you have included the iconbox shortcode plus the actual content that should wrap around the icon box.
[av_icon_box position='left' icon_style='' boxed='' icon='1' title='IconBox Title' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-29zeuo' custom_class='av_wrap_icon_box'] Icon Box Text [/av_icon_box] Text block content lorem ipsum dolor sit amet i am so osamu andsamu hahaIf you noticed, we added the custom_class parameter to the icon box shortcode and added the value “av_wrap_icon_box”. We can use that class attribute to change the style of the icon box.
#top .iconbox.av_wrap_icon_box { width: 50%; float: left; }Best regards,
Ismael -
AuthorPosts
