Forum Replies Created
-
AuthorPosts
-
Hey tammiviestinta,
Thank you for the inquiry.
Please note that background videos are disabled on mobile videos by default, which is why a Fallback Image option is available. The fallback image will display on smaller screens in place of the video.
Best regards,
IsmaelHi,
So then it seemed obvious that all that CSS could go together. Result that works:
Good to know that you found a working solution. However, not every element can be added in the Advanced Styling panel. For certain elements, you may need to apply some CSS modifications. Please feel free to reach out if you have any more questions.
Best regards,
IsmaelSeptember 7, 2023 at 6:57 am in reply to: Input fields on the same line code is not working #1418328Hi,
Glad to know that the solution is working. Please feel free to open another thread if you have inquiries about the theme.
Have a nice day.
Best regards,
IsmaelSeptember 7, 2023 at 6:54 am in reply to: Is it possible to place a button at the bottom of all blog posts? #1418327Hi,
Thank you for the update.
We may need to inspect the site in order to provide a proper solution. Please post the site URL in the private field.
Best regards,
IsmaelHey Antonio,
Thank you for the inquiry.
You can place the embed code within a Color Section and adjust the section’s container to full width. For more information, please refer to this documentation.
// https://kriesi.at/documentation/enfold/color-section/#color-section-with-100-content-width
Best regards,
IsmaelHi,
Great! Good to know that the solution worked. Please do not hesitate to open another thread if you have more inquiries about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Glad to know that this has been resolved. Let us know if you need further help with this matter and please feel free to open another thread if you have more questions about the theme.
Have a nice day
Best regards,
IsmaelSeptember 7, 2023 at 6:29 am in reply to: footer widget not visible and not editable in the backend #1418323Hi,
Let us know if the issue persists once the theme has been upgraded.
Thank you for your patience.
Best regards,
IsmaelSeptember 7, 2023 at 6:24 am in reply to: Poertfolio Raster – Square (180×180) does not work #1418322Hey simmsen,
Thank you for the inquiry.
Did you install an image compression plugin in the dev site? We may need to access the dev site in order to understand the issue better. Please provide the login details in the private field.
Best regards,
IsmaelHi,
Great! Glad to know that you have managed to find a working solution. Please feel free to open another thread when you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey Lene,
Thank you for the inquiry.
You can adjust the height of the current menu indicator using the following css code.
.avia-menu-fx { height: 4px; width: 100%; }And to add a custom social icon to the theme, please check the following documentation.
Best regards,
IsmaelHi!
Thank you for your patience.
It appears that once you activate the Theme Builder templates, the plugin automatically replaces the header.php and footer.php files. This means that you won’t be able to display the default theme header, and you have to use the Header template within the Theme Builder panel. Editing the default template files from the theme won’t help in this scenario. Unfortunately, we couldn’t find any options to retain the theme’s header.php file, as the plugin automatically overrides both the header and footer when a template is chosen in the Theme Builder.
Regards,
IsmaelSeptember 6, 2023 at 6:44 am in reply to: How to exclude current posts from related posts grid #1418241Hi,
We replied here: https://kriesi.at/support/topic/how-to-sort-custom-post-type-posts-with-custom-post-meta-field/#post-1418130
Best regards,
IsmaelSeptember 6, 2023 at 6:41 am in reply to: Is it possible to place a button at the bottom of all blog posts? #1418240Hey gatehealing,
Thank you for the inquiry.
If you are using the default editor to create the content of the posts, you can just add this code in the functions.php file to add extra elements below the post content.
add_action("ava_after_content", function() { if (is_singular('post')) { echo "<div class='av-back-to-blog-link'><a href='#'>Back to Blog</a></div>"; } }, 10);Just replace the href attribute value with the actual blog URL.
Best regards,
IsmaelHi!
Glad to know that this has been resolved. Please do not hesitate to open another thread if you have more questions about the theme.
Have a nice day.
Regards,
IsmaelHi,
Thank you for the update.
There is no dedicated option to change the style of the title in the breadcrumb container, so you may have to add a few css modifications. You can start with the following css code.
.title_container .main-title { margin: 0; font-size: 16px; position: relative; z-index: 2; min-height: 36px; line-height: 2.3em; top: 0; font-weight: 400; font-family: Open Sans; }To disable the link, we can set the pointer-events property to none.
.title_container .main-title a { pointer-events: none; }Best regards,
IsmaelHi,
Thank you for the update.
The SVG background is not displaying when we re-enabled the css code in the Quick CSS field. Unfortunately, we are not yet sure why it’s not working on the site. The modification works as expected when we tested it on our end. What happens when you add the SVG image as header background using the theme options?
Best regards,
IsmaelSeptember 6, 2023 at 5:53 am in reply to: How to sort custom post type posts with custom post meta field #1418234Hi,
Secondly even if i used your way then i have to put 9 page ids and in future if same functionality is implemented in few other pages then I have to put the page ids of those pages in the given above function.
Instead of using the is_page function, we can also check if the element queries for the post type “escorted-vacations”. This way, you won’t have to update the IDs in the array if another events page is created.
if ( in_array('escorted-vacations', $query['post_type']) ) {Best regards,
IsmaelSeptember 6, 2023 at 5:16 am in reply to: Update Enfold from to 5.6.2 – working with child theme >the footer disappears #1418233Hi,
Thank you for the info.
The account above lacks admin rights, so our ability to check the settings is limited. Is there a site backup or a restore point available? Please create a backup, then activate the latest theme version or remove the older version so we can investigate the issues properly. Another option is to clone the site to a subdomain, update the theme to the latest version, resolve any issues there, and then proceed with updating the live site.
Best regards,
IsmaelHey blizzmarketing,
Thank you for the inquiry.
Did you adjust the $placeholder and $date_format values in the filter? Please try to use the following code.
add_filter('avf_datepicker_dateformat', 'new_date_format'); function new_date_format() { $date_format = "mm / dd / yy"; return $date_format; } add_filter('avf_datepicker_date_placeholder', 'new_date_placeholder'); function new_date_placeholder() { $placeholder = "MM / DD / YY"; return $placeholder; }Best regards,
IsmaelHey Diana,
Thank you for the inquiry.
For the display of an own tablet version (iPad cross) I proceeded as follows:
Have you tried using the default Advanced > Responsive > Element Visibility settings instead of using custom css modifications to control the visibility of the elements? The visibility options should allow you to toggle the display of the element based on the screen size.
Best regards,
IsmaelHi,
No problem. Please do not hesitate to open another if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelSeptember 5, 2023 at 9:19 am in reply to: Safari Browser can’t show “Ä Ü Ö ” in mobile Version. #1418133Hi,
Thank you for the inquiry.
The characters or glyphs seem to be displaying correctly when we tested it. The font size is quite small for mobile phones, so the dots for example are not clearly visible but they are rendering properly. Have you tried increasing the font size for smaller screens?
We also noticed that the site is using a font called “Amiri”, which is intended for Arabic text. Is this intentional?
// https://fonts.google.com/specimen/Amiri
Best regards,
IsmaelSeptember 5, 2023 at 9:08 am in reply to: How to sort custom post type posts with custom post meta field #1418130Hey!
Thank you for the info.
We made some modifications to the code in the functions.php file, and it’s now functioning as intended. However, we had to change the format of the journey_start_date from “mm/dd/yyyy” to “yyyymmdd,” which is the default format recognized by WordPress.
To test these changes, we adjusted the journey_start_date for the posts “Shades of Ireland,” “Magdalen Islands & Gaspé Explorer,” and “Newfoundland & Labrador Discovery.” You can verify this by changing the “order” parameter from “ASC” to “DESC.” When you do this, you’ll notice that the mentioned posts will move to the very bottom of the list in their intended order.
add_filter('avia_post_slide_query', 'avia_post_slide_query_mod'); function avia_post_slide_query_mod( $query ) { if ( is_page(array(1132)) ) { $query['meta_key'] = 'journey_start_date'; $query['orderby'] = 'meta_value'; $query['order'] = 'ASC'; } return $query; }All you need to do now is adjust the format of the event date.
Cheers!
IsmaelSeptember 5, 2023 at 8:35 am in reply to: Omit phone number with yellow backing from showing on mobile sites. #1418126Hi,
Glad to know that this has been resolved. Please let us know us should you have any further questions.
Have a nice day.
Best regards,
IsmaelSeptember 5, 2023 at 8:35 am in reply to: footer widget not visible and not editable in the backend #1418125Hey yvino,
Thank you for the inquiry.
The footer widgets should be editable in the Appearance > Widgets panel. If you can’t find the widgets there, please provide the login details in the private field so that we can inspect the issue thoroughly.
Best regards,
IsmaelHi,
Thank you for the update.
You can start with the following css code.
#main:before { content: ""; display: block; position: absolute; top: 0; left: 0; width: 100%; height: 188px; background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M0,0 V9 Q50,6 100,9 V0 H0' fill='%230d8dc9'/><path d='M0,9 Q50,6 100,9' fill='none' stroke='%23faf18e' stroke-width='0.9'/></svg>"); background-repeat: no-repeat; background-size: cover; } .header_color .header_bg { background-color: transparent; border-color: transparent; } .html_header_top.html_header_sticky #main { padding-top: 186px; }You may need to add a few css media queries to adjust the background for different screen sizes.
Best regards,
IsmaelHi,
According to the screenshot provided, you can use the 1/2 Column elements to create a grid of four items. Afterward, you can manually insert HTML to generate an additional set of columns within either a Code Block or a Text Block. These columns will contain the image and other details shown in the screenshot. You may need to add a few CSS modifications to get everything in order.
Please kindly share the site URL in the private field so that we can provide an appropriate solution.
Best regards,
IsmaelHi,
Thank you for the update.
According to the error above, a required permission is missing for the private token. Have you tried regenerating another private token to replace the current one? You might have to update the theme manually via FTP if the error continues.
Best regards,
IsmaelHey Frans,
Thank you for the inquiry.
This is possible but you have modify one of the script files directly. Please check the following threads for more info.
// https://kriesi.at/support/topic/close-a-hot-spot-by-clicking-anywhere-away-from-it/#post-1277247
// https://kriesi.at/support/topic/image-hotspot-tooltips-with-click-again-again-2018/#post-1025216Best regards,
Ismael -
AuthorPosts
