Forum Replies Created
-
AuthorPosts
-
Hi,
It works fine in the AJAX preview as well. Please check the screenshot below.
Screenshot: https://postimg.cc/fJ9bVQgz
Best regards,
IsmaelHey destserengeti,
Thank you for the inquiry.
Try to add this filter in the functions.php file to change the default text or label.
function avf_new_toggle_sort_first_label($output){ return __( 'All Itineraries', 'avia_framework' ); } add_filter('avf_toggle_sort_first_label','avf_new_toggle_sort_first_label', 10, 1);
Best regards,
IsmaelHi,
The form is not resizing correctly or it does not inherit the size of the tab container because the recaptcha container has an inline width property with a value that is greater than that of the parent container. Try to insert this code inside the css media query to resize the recaptcha container and force it to inherit the maximum width of the tab content.
.av-recaptcha-area div, .av-recatpcha-area iframe { width: 100%!important; max-width: 100% !important; }
Best regards,
IsmaelJuly 22, 2021 at 7:09 am in reply to: Inline Loading of Element's CSS & JS which are used one time only #1311346Hi,
Unfortunately, this is not yet included in the list. You can install plugins like Autoptimize, which works quite well with the theme’s file compression settings. If you have other questions, please feel free to open a new thread.
Best regards,
IsmaelHey tsmalling,
Thank you for the inquiry.
We should be able to use the avia_breadcrumbs_trail filter to adjust the home page link in the breadcrumb. Example:
function avia_adjust_breadcrumb($trail) { $trail[0] = '<a href="https://site.com/new-home" title="My Site" rel="home" class="trail-begin">New Home</a>'; return $trail; } add_filter('avia_breadcrumbs_trail', 'avia_adjust_breadcrumb', 50, 1);
Just replace the href attribute value with the actual link to the page.
Best regards,
IsmaelHey web6s,
Thank you for the inquiry.
We should also remove the left padding of the sidebar container. Try to include this inside the css media query.
.sidebar_left .content { padding-left: 0; }
Best regards,
IsmaelHi,
Great! Glad to know that the issue is solved. Please feel free to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
It might not have changed yet because the stylesheets or css files are minified. Please disable the css minification or compression temporarily, then purge the cache. If it is not working, use this css code.
.main_color strong { color: #000000; }
Best regards,
IsmaelHey kamporo,
Thank you for the inquiry.
The second level submenu is not displaying because you have set the parent menu as mega menu. We disabled the mega menu option for the Σπόροι menu item. The sub menu is now displaying.
Did you adjust the style of the mega menu?
Best regards,
IsmaelHey lauragrashoff,
Thank you for the inquiry.
You may have to set the Enfold > Main Menu > General > Menu Items for mobile settings to the second option to allow the menu to switch to mobile icon when the screen width is less than 990px.
Did you add this css code?
.container { width: 80%; }
This limits the width of the container on smaller screens.
Best regards,
IsmaelJuly 21, 2021 at 12:38 pm in reply to: Displayed Everywhere Widgets are not displayed anymore in latest Version #1311121Hi,
Thank you for the info.
The widgets are still displayed when we activated the child theme. Is this only happening on a specific page? (see private field)
Best regards,
IsmaelJuly 21, 2021 at 12:32 pm in reply to: Creating vertical space between menu item and first sub-menu item #1311118Hi,
Thank you for the info.
You can use this css code to move the sub menu item down.
#top .sub_menu li li ul { top: 40px; }
If you want to only adjust the “Member’s Only” sub menu, use this css code instead.
#top .sub_menu li #menu-item-6339 ul { top: 40px; }
Best regards,
IsmaelHey empiread201,
Thank you for the inquiry.
When adding an item to a menu, the item should be added immediately to the menu without changing its name to “Pending”, so this is a bit odd. Have you tried disabling the plugins temporarily? You should also update the plugins to the latest versions.
Best regards,
IsmaelHi,
Thank you for the info.
Can we deactivate the plugins temporarily? We tried to disable the title tag that is being set by the theme, but it did not help. The title of the page remains.
Best regards,
IsmaelHey Xaver-1,
Thank you for the inquiry.
You can apply a Tab Symbol for each tab. Just edit one of the tabs, and you should see the settings right after the Tab Title.
Best regards,
IsmaelJuly 21, 2021 at 7:52 am in reply to: Responsive Best Practice / Full width Colour Sections With Images #1311048Hey psipi,
Thank you for the inquiry.
You can actually hide the section on mobile view and display another section with a background image that is actually resized for smaller screens. To do that, edit the current color section, go to the Advanced > Responsive Settings panel and toggle the appropriate check boxes. You would want this section to be displayed on desktop view or larger screens only. You can then add the other section, apply the background image, insert a larger logo and have it display on mobile view only.
Best regards,
IsmaelHey hollabrunn,
Thank you for the inquiry.
It is possible that the plugin cannot locate the menu because it is inside another container with the ID “header_main_alternate”. Where can we see the issue? Please post the site URL in the private field.
Best regards,
IsmaelHi,
The info there is generated from the template files, or because of a plugin. Try to disable all plugins, see if it persists.
Is this only happening on the tag pages? It might be coming from enfold > tag.php file and you might have to remove it manually.
Best regards,
IsmaelHey Jonah,
Thank you for your interest in the theme.
You can see an example of the submenu on another demo. It should be the same as when you start adding sub menu items in the band demo.
// https://kriesi.at/themes/enfold-2017/
And you can still add other pages on a one page site if necessary.
Best regards,
IsmaelJuly 21, 2021 at 7:31 am in reply to: Disable lightbox on image that links to external site in a new window #1311040Hey Amazingdominik,
Thank you for the inquiry.
Try to edit the video or image element, then add the “noLightbox” class name in the Advanced > Developer Settings > Custom Class field. This should prevent the lightbox from activating.
Best regards,
IsmaelHi,
Thank you for the update.
You can set the image as the menu item’s background. This css should work.
#menu-item-4857 { text-indent: -9999px; background-image: url("https://site.com/image_url.jpg"); }
Just replace the value with the actual image URL. You may also have to adjust the style a bit including the background-size property afterwards.
Best regards,
IsmaelHi,
In Enfold you have a term description in the h1 tag of the parallax banner and this is very wrong.
I believe we already adjusted this previously, but for some reason it was reverted back to h1. We edited the functions.php file again.
$output .= "<h1>".get_the_archive_title()."</h1>"; if(false) $output .= "".$description."";
Please note that this is already a modified parallax banner based on your previous requests. By default, the theme only renders the description in the parallax banner, not the title.
Unfortunately, we are still not sure why the custom shortcode is not working. You will have to hire a freelance developer for further modifications.
Best regards,
IsmaelHi,
Awesome! Glad to know that the issue is fixed. Please feel to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelJuly 21, 2021 at 5:49 am in reply to: A few queries – responsive menu, header content alignment, cookie consent bar #1311016Hey premcemgums,
Thank you for the inquiry.
1-2) The logo and the mobile menu are correctly aligned and we do not see the “line across the first character” on mobile view. Would you mind providing a screenshot of the issue?
3.) You can use this css code to adjust the space between the text and the buttons.
@media only screen and (max-width: 989px) { .responsive #top .avia_cookie_text { margin-bottom: 20px !important; } }
Best regards,
IsmaelHi,
Try to replace the max-width value in the css media query from 767px to 480px. Look for this part in the css code that we previously added.
(max-width: 767px)
Replace it with:
(max-width: 480px)
Best regards,
IsmaelHi,
@GROSSfanz @volmering Try to install a security plugin first like Sucuri or Wordfence and observe if it helps lessen the spam mails. And again, enabling Google ReCAPTCHA should also help but if it does not meet your privacy requirements, then you might have to replace the default contact form with another. Unfortunately, you will have to replace the contact forms manually.
Best regards,
IsmaelHey tsays,
Thank you for the inquiry.
It is not possible to use the Advance Layout Builder to modify the archive pages (tag and category), but you can add the markup of the builder elements directly in the template files. You will have to edit the archive.php and tag.php file in order to do that.
For example, this is the markup of the first color section in your blog page.
// https://pastebin.com/YA5Nr9qN
Unfortunately, this kind of modification is beyond the scope of support. You may need to hire a freelance developer or contact our partner, Codeable.
Best regards,
IsmaelHi,
It is also possible to add custom fields to taxonomy terms.
// https://developer.wordpress.org/reference/functions/add_term_meta/
If you want to use a plugin, this might help.
// https://www.advancedcustomfields.com/resources/adding-fields-taxonomy-term/
You can then modify the archive template and fetch the value of the custom field and place it as the source of the embedded video.
Best regards,
IsmaelHi,
Thank you for the update.
We could use the following filter to add a “read more” text inside the masonry items’ content container, instead of the previous script.
add_filter("avf_masonry_entry_content", function($content) { $content .= "<span>Read more</span>"; return $content; }, 10, 1);
Best regards,
IsmaelHi,
Sorry for the late response. The analytics script ran correctly when we visited the site. Did you disable the theme’s privacy options just recently? It is possible that one of the privacy options is preventing the analytics script from running because it is set to block external scripts on page load. You may need to set the Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behavior to the first or second option to immediately allow external services on page load.
Best regards,
Ismael -
AuthorPosts