Forum Replies Created
-
AuthorPosts
-
December 20, 2018 at 8:42 am in reply to: How to insert search form into header_posline next to phone number? #1047598
Hi,
Thanks @guenni007!
I checked the site but all I see is a blank page with red background. Please provide the new link or post the login details in the private field.
Best regards,
IsmaelHi,
Thanks for the update.
You can use this css code to increase the width of the tooltip so that it won’t get covered by the header.
.recurring-info-tooltip, .tribe-events-calendar .tribe-events-tooltip, .tribe-events-shortcode.view-week .tribe-events-tooltip, .tribe-events-week .tribe-events-tooltip { width: 500px; }Best regards,
IsmaelDecember 20, 2018 at 8:31 am in reply to: setting opacity of the main menu + logo in the middle of the menu ? #1047596Hi,
Edit the page, look for the “Header visibility and transparency” settings and set it to “Transparent & Glassy Header”.
Follow these steps to center align the logo:// https://kriesi.at/documentation/enfold/menu/#logo-centered-split-menu
Best regards,
IsmaelHi,
Thanks for the update. I don’t see the issue described in the screenshot. Is this fixed?
Best regards,
IsmaelHi,
Did you figure it out? Those characters (e817) are the symbol of an entypo fontello icon.
Best regards,
IsmaelHi,
Did you figure it out? Those characters (e817) are the symbol of a entypo fontello icon.
Best regards,
IsmaelDecember 20, 2018 at 8:13 am in reply to: Kontaktformular: Datenschutz-Anhängsel übersetzen #1047590Hi,
Thanks for the update. And we would like to apologize for the late response.
You will be able to change that text in the Enfold > Privacy and Cookies panel. Enable the “Append a privacy policy message to template builder contact forms?” option and put your own text in the “Message below template builder contact forms” field.
Best regards,
IsmaelDecember 20, 2018 at 8:13 am in reply to: Kontaktformular: Datenschutz-Anhängsel übersetzen #1047589Hi,
Thanks for the update. And we would like to apologize for the late response.
You will be able to change that text in the Enfold > Privacy and Cookies panel. Enable the “Append a privacy policy message to template builder contact forms?” option and put your own text in the “Message below template builder contact forms” field.
Best regards,
IsmaelHi,
Thank you for using Enfold.
Did you set the blog layout to “Use the advance layout builder..”? This filter might help:
// sticky posts add_filter('avia_blog_post_query', 'avia_blog_post_query_mod', 10, 2); function avia_blog_post_query_mod($query, $params) { $include = array(); $sticky = get_option( 'sticky_posts' ); $args = array( 'taxonomy' => $params['taxonomy'], 'post__not_in' => $sticky, ); $posts = get_posts( $args ); foreach($posts as $post) { $include[] = $post->ID; } $include = array_merge($sticky, $include); // convert values of the $include from string to int function sti($n) { settype($n, 'int'); return $n ; } $include = array_map("sti", $include); $query['post__in'] = $include; $query['posts_per_page'] = 6; $query['orderby'] = 'post__in'; // sort items based on the post__in value return $query; }Best regards,
IsmaelHi,
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,
Ismael -
AuthorPosts
