Forum Replies Created
-
AuthorPosts
-
Hi,
Awesome! Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelHi,
I see. You can use this script to automatically close the menu on scroll.
add_action('wp_footer', 'ava_custom_close_menu_on_scroll'); function ava_custom_close_menu_on_scroll(){ ?> <script type="text/javascript"> (function() { const sm = document.querySelector('.av-submenu-container'); const sn = sm.querySelector('.av-subnav-menu') const st = sm.querySelector('.mobile_menu_toggle'); const eventClick = new Event('click'); if(sm) { document.addEventListener( 'scroll', (event) => { if( sn.classList.contains('av-open-submenu') ) { st.dispatchEvent(eventClick); } }); } })(); </script> <?php }
Best regards,
IsmaelHi,
Not many users are looking for this functionality, so it’s still not in the core. In case you missed it, there’s a new element in the builder called “Search”. Maybe, you can insert that in your pages and display it mobile view only.
Best regards,
IsmaelDecember 19, 2018 at 3:21 am in reply to: ENFOLD – Changing Tab Section Navigation Positioning #1047088Hi,
Thanks for the info.
Use this css code to center align the tab title container.
.tab_titles { text-align: center; } .tab_titles .tab { float: none; display: inline-block; }
Best regards,
IsmaelHi,
1-3) You can add a custom css class selector for every element in the builder. And then use it to apply a specific style to an element.
Best regards,
IsmaelHey!
It is bad if you’re calling it on every page load. You can add it to your functions.php file. refresh the page once or twice and then remove it.
For safety purposes, create a backup first. Or do it on a dev site.Cheers!
IsmaelHi,
If it’s a template, use this filter to add it to every single post item or blog post page.
add_filter('avf_template_builder_content', 'avf_template_builder_content_render_templates', 10, 1); function avf_template_builder_content_render_templates($content) { $name = 'CTA'; $id = AviaStoragePost::get_custom_post('template_builder_snippets'); $template = get_post_meta( $id, '_avia_builder_template_cta' ); $shortcodes = str_replace('{{{'.$name.'}}}','',$template[0]); if( is_singular('post') ) { $content = $content . do_shortcode($shortcodes); } return $content; }
Best regards,
IsmaelDecember 19, 2018 at 2:27 am in reply to: Under using the ALB, how to put the post date in the single post page? #1047079Hi,
Go to the Enfold > Blog Layout panel and adjust the “Blog Layout” settings. You will see a lot of layout options there for the blog overview page.
Best regards,
IsmaelHi,
@michaelH: Thanks for the info. By the way, you can manually flush the permalinks in your functions.php file if the dashboard is not accessible.
https://codex.wordpress.org/Function_Reference/flush_rewrite_rules
Best regards,
IsmaelHi,
Yes, the latest patch should take care of that issue.
Latest additions to the core:
custom 404 page without reroute
supports ALB and Layerslider on 404
supports WPML
supports YOAST to hide special pages from sitemap (404, maintenance mode, footer)
returns 404 for users who access these pages from frontend (need edit post capability)
Maintenance Mode Page without reroute
Move logic for custom pages in own class
Improve user info for special pages
———hide special pages (404, maintenance, footerpage) from being displayed in page lists (frontend)
———Exclude special pages from search results (also ajax search)‘
Best regards,
IsmaelHi,
@tglawe: We did try to implement it for V3 but it’s not validating correctly, so it had to be downgraded back to V2, temporarily.
@Heathcliffe: You can get a copy from the github repository and upload it manually in the plugins folder.
It’s not part of the core because it will probably add another complexity for a lot of users, much like Google Maps did when the new API keys were introduced.
We’ll close this thread for now. Please feel free to open a new thread if you have more questions.Best regards,
IsmaelHi,
You can use this plugin temporarily while we check the issue:
// https://wordpress.org/plugins/instagram-feed/
Related thread: https://kriesi.at/support/topic/instagram-widget-problems/
Best regards,
IsmaelHi,
I’m not really sure how that happened. How long have you been using the widget? The filter that we’ve added in the functions.php file should have stopped the widget from regenerating those folders. You can ask your hosting provider to bulk delete those folders. I’m sure they’ll be able to do it on their end faster.
I disabled CRON in your installation temporarily to prevent it from creating more folders.
Best regards,
IsmaelHi,
I modified the code a bit to separate the sub categories from their parent category. If you want to change the style of the categories, use this:
.grid-entry-categories { font-size: 16px; color: orange; } /* child categories */ .grid-entry-categories .child { font-size: 15px; color: red; }
Best regards,
IsmaelDecember 19, 2018 at 1:17 am in reply to: Event Date in Post Slider sometimes displaying and sometimes not #1047059Hi,
Thanks for the update. Please remove those files and then follow the instructions here:
You have to add that filter first and create a folder called “shortcodes” inside your child theme directory. You can then copy any shortcode files inside.
Best regards,
IsmaelDecember 19, 2018 at 1:15 am in reply to: Header Farben Änderungen & Erweitertes Styling funktioniert nicht. #1047058December 19, 2018 at 1:14 am in reply to: Portfolio Grid Abstand / Padding / mousover effect #1047057Hi,
That option is not available for the portfolio grid element. But you can use css to make the portfolio images rounded.
.grid-image { border-radius: 100%; }
Best regards,
IsmaelDecember 19, 2018 at 1:04 am in reply to: Testimonials not displaying properly after theme update #1047056Hi,
Thanks for the update. A new patch is available now, 4.5.2. That will take care of the textarea issue.
Best regards,
IsmaelHi,
Thank you for using Enfold.
We haven’t tested the theme on that version yet. Do you have a staging site where we can see this? Did you flush the permalink or reset the .htaccess file after the upgrade?
I checked the list of the soon to be deprecated functionalities but I didn’t find anything that would affect the theme aside from the “String search” changes, but I could be wrong.
// https://wiki.php.net/rfc/deprecations_php_7_3
Best regards,
IsmaelHi,
Thank you for using Enfold.
You will able to change the font of the portfolio title in the Enfold > Advanced Styling panel. Look for the H3 heading tag in the selection and edit it.
And this css code will disable the portfolio title link in the AJAX Portfolio container:.portfolio-preview-title.entry-title a { pointer-events: none; }
Best regards,
IsmaelHi,
It loads the English version on my end as well. Is this fixed? And yes, you have to make sure that a translation for that particular page is available as @Guenni007 mentioned.
Best regards,
IsmaelDecember 18, 2018 at 12:40 am in reply to: WebM Videos not showing at Mac iOS Safari Browser #1046661Hey sonejder,
Thank you for using Enfold.
Have you tried converting the video to mp4 with H.264 compression? That format is supported by most browsers. You can also upload the video on youtube or vimeo to avoid browser compatibility issues.
Best regards,
IsmaelDecember 18, 2018 at 12:27 am in reply to: Set privacy & cookie settings in Enfold 4.4 update, now can't reply to comments #1046656Hi,
Thanks for the update. You have to upgrade the theme to version 4.5.1 to fix the issue. That fix was introduced after version 4.4.
Best regards,
IsmaelHi,
Have you tried setting the table purpose to “pricing” instead of “tabular”? You can also replace it with a different table on mobile view. Use a single column instead of two.
Best regards,
IsmaelHi,
Did you allow the comments for that particular page? Please edit the page then look for the “Discussions” panel. Tick the “Allow comments” option.
// https://codex.wordpress.org/Comments_in_WordPress#Turning_on_Comments_for_a_Single_Post_or_Page
Best regards,
IsmaelHi,
I added the modification but it’s only displaying a single category called “Aktiviter”. Are there any other categories?
Screenshot: https://imgur.com/a/X8ah4b9
Best regards,
IsmaelHi,
Did you generate a new token from your Envato account? Try to follow these steps:
// https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token
// https://kriesi.at/documentation/enfold/theme-registration/#troubleshootBest regards,
Ismael -
AuthorPosts