Forum Replies Created
-
AuthorPosts
-
Hi,
e.g If they search for a name, I want it to fint the contact under Kontakt -> Medarbeidere.
The search starts to look for keyword relevance in the post or page title before doing search in the post content, so posts that actually contains that name or keyword will go into the results first. Searching for a specific name from a particular page content may not work as intended. You may need to re-index the search table and keywords, and adjust Minimum word length value from the default 3 characters to a longer one for a more refined search.
You could also try the SearchWP plugin. Please check the following documentation for more info.
// https://kriesi.at/documentation/enfold/search/#use-searchwp-instead-of-the-standard-search
Best regards,
IsmaelHi,
Thank you for the update.
We cannot reproduce the same issue on mobile view. What is the actual screen resolution of the device where you are testing this? This is how we see the contact form on mobile view (iPhone 6/7/8).
Screenshot: https://imgur.com/Q96neKg
Best regards,
IsmaelHi,
To override that script file, you have to override the actual element (slideshow.php) first and edit the script path or URL in the extra_assets function so that the path in the wp_enqueue_script points to the modified file instead of the default one.
function extra_assets() { //load css wp_enqueue_style( 'avia-module-slideshow', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/slideshow/slideshow.css', array( 'avia-layout' ), false ); //load js wp_enqueue_script( 'avia-module-slideshow', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/slideshow/slideshow.js', array( 'avia-shortcodes' ), false, true ); wp_enqueue_script( 'avia-module-slideshow-video', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/slideshow/slideshow-video.js', array( 'avia-shortcodes' ), false, true ); }
For more info on how to modify an existing element in the child or on how to create your own, please check the following documentation.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
Best regards,
IsmaelHi,
No problem. Please feel free to open a new thread if you have more questions. We will close this thread for now.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
2.) Which plugin have you tried to use? The following plugins should allow you to redirect a particular page to another.
// https://wordpress.org/plugins/redirection/
// https://wordpress.org/plugins/eps-301-redirects/3.) That is possible but you will have to use the Advance Layout Builder for the product items or edit the product templates manually. You could also set a custom footer page in the Enfold > Footer > Default Footer & Socket Settings. Set it to the 5th or 6th option (Select a page to display as footer and socket).
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelHi,
Glad to know that some of the issues are fixed. Please do not hesitate to open another thread if you need anything else. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHi,
As we mentioned above, you have to modify the existing animations in the theme. Unfortunately, we cannot exactly replicate the animations from the other site because of how the transitions are implemented, so you will have to use the existing animations from the theme and do your own adjustments.
To adjust the fade in effect for example, you have to modify the css > shortcodes.css file around line 784 and copy this animation or keyframes around line 748 , and place it in the Quick CSS field or in the style.css file and do your own modifications.
@-webkit-keyframes avia-fadein { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes avia-fadein { 0% { opacity: 0; } 100% { opacity: 1; } }
To adjust it even more, you have to override the default animation property.
.avia_transform .avia_start_delayed_animation.fade-in { -webkit-animation: avia-fadein 1.5s 1 ease-out; animation: avia-fadein 1.5s 1 ease-out; opacity: 1; }
You could adjust the animation duration and timing-function to achieve different variation of the effect.
// https://www.w3schools.com/css/css3_animations.asp
Best regards,
IsmaelHey NicFridge0904,
Thank you for the inquiry.
Those are the merged or compressed scripts and stylesheets. Please try to disable the Enfold > Performance > File Compression settings and disable the cache plugin temporarily, or purge the cache, then check the page again. If these steps did not help, please post the site URL and the login details in the private field so that we could check the issue further.
Best regards,
IsmaelHey acannon22,
Thank you for the inquiry.
That is possible but it will require modifications that we do not usually provide in the forum. You may need to hire a third party developer or contact or partner, Codeable.
// https://kriesi.at/contact/customization
The gallery script is in the enfold\config-templatebuilder\avia-shortcodes\gallery_horizontal\gallery_horizontal.js file.
Best regards,
IsmaelHi,
I’m not sure what you mean with remove the existing thumbnails.
Try to remove the uploaded image first from the Media > Library, before uploading it again. Or make sure that you are uploading different image each time for testing.
This is not so common because most users do not require different cropping position for the same image. This might be the first request that we encountered.
Best regards,
IsmaelHi,
Thank you for the info.
The product items show in the grid when we do not select a particular category (see private field). Can we deactivate the plugins temporarily while testing the site? Is there a staging or development version of the site?
@at-elier: We have not found the issue yet, but we will check it further and let you know.Best regards,
IsmaelHey FullPixel,
Thank you for the inquiry.
You might be able to use the aviaElementManager class to return the list of shortcodes or elements. Example:
add_action("init", function() { if( ! class_exists( 'aviaElementManager' ) ) return; $shortcodes = Avia_Builder()->element_manager()->get_checked_elements(); echo '<pre>'.var_export($shortcodes, true).'</pre>'; });
The element_manager, which is a public method of the AviaBuilder class, constructs the aviaElementManager class.
Best regards,
IsmaelJanuary 21, 2021 at 3:02 am in reply to: how to change the title and content font size and colour in blog grid layout #1274253Hi,
Sorry for the late response. You should be able to use this css code to adjust the font color and size of the post title.
#top h3.slide-entry-title a { color: #000000 !important; font-size: 16px !important; }
The previous css code that Rikard provided above should change the color of the excerpt.
.page-id-1064 .avia-content-slider .slide-entry-excerpt { color: red !important; }
We are not seeing the comment count info anymore.
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelHey elituchy,
Thank you for the inquiry.
We could adjust the border radius property of the testimonial image to remove its roundness or to display its actual shape.
.avia-testimonial-image { border-radius: 0; }
If you want to adjust the thumbnail size, use the avf_testimonials_avatar_size filter in the functions.php file.
function avf_testimonials_avatar_mod( $size, $src, $class ) { return 'square'; } add_filter('avf_testimonials_avatar_size', 'avf_testimonials_avatar_mod', 10, 3);
And make sure that the size of the testimonial image element corresponds to the actual size of the thumbnail.
.avia-slider-testimonials .avia-testimonial-meta .avia-testimonial-image { width: 180px; height: 180px; }
Best regards,
IsmaelJanuary 20, 2021 at 5:34 am in reply to: Homepage element not scaling properly with iPhones #1273900Hey Greg,
Thank you for the inquiry.
What is the actual model of the iPhone that you are using where you took the screenshot? The section looks a bit taller in that screenshot compare to the section in Android. You might be able to fix it by setting a maximum height to the color section.
@media only screen and (max-width: 767px) { #av_section_1 { max-height: 50vh; } }
You may have to replace the generic ID #av_section_1 with a custom one.
Best regards,
IsmaelJanuary 20, 2021 at 5:27 am in reply to: How to edit "Share This Entry" to "Share This Template" ? #1273898Hi,
@hamzakhankhan: Please try to follow the instructions that @Guenni007 provided above. We recommend using the avia_social_share_title filter as @Jordan recommended above, instead of modifying the template file directly.Best regards,
IsmaelHey pixeldraft,
Thank you for the inquiry.
This seems like the same issue that was reported in this thread, which is caused by the latest jQuery update.
// https://kriesi.at/support/topic/scroll-to-top-much-slower-after-wp-5-6-update/#post-1267414
To fix the issue, you have to install the jQuery Migrate Helper plugin, and set the jQuery to the legacy version.
Best regards,
IsmaelHi,
No worries. Please feel free to open a new thread if you need anything else. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
We get a security error when we try to access the page. Did you remove the cookies before you checked the page? It is possible that the cookies that disables the font is still in the browser’s local storage, so you have to remove them first.
Best regards,
IsmaelJanuary 20, 2021 at 5:09 am in reply to: View with field substitutions for table from Formidable only paints first column #1273888Hi,
Thank you for the info.
We tried to look for the form with the ID 46992 in the formidable form panel, but we did not find any. What is the actual name of the form that is supposed to display using the shortcode below? (see private field)Sorry for the questions. What should display when you use the following shorcode? It is inside the content of the Registry Workflow view.
<td>[331]</td>
And these conditionals are based on which entries?
<td style="padding-top: 1em;">[if 341 equals="Yes"] <figure class="green-circle"></figure> [/if 341]
Best regards,
IsmaelHi,
Thank you for the inquiry.
Some of the elements in the Advance Layout Builder including the Column elements contain an Advanced > Animation settings by default, which can be used to create different transition effects. You could place text, image or any builder elements inside those columns and enable the animation to create the desired transition effect.
Best regards,
IsmaelHi,
Thank you for the info.
We can now reproduce the issue but we are not yet sure why the media loads but then the slider proceeds to the next slide. Would you mind providing the WP and FTP details in the private field? We would like to check the issue further, but we might have to edit a few files and toggle some settings.
Best regards,
IsmaelHi,
Thank you for update.
For some reason, the config-events-calendar/event-mod.css is not loading properly in your site, which is why the layout of the events page is broken. Did you happen to deregister that style or do anything to disable it?
Please try to get a fresh copy of the theme from your Themeforest account, then try to override the current installation manually via FTP.
// https://kriesi.at/documentation/enfold/install-enfold-theme/#reinstall-or-update-using-ftp
Best regards,
IsmaelHi,
Sorry for the troubles. We created a private test page with a color section and applied the Youtube video to it as background, and the video plays automatically when we set the Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behavior to the first or second option. When we checked, it is set to the third option, so any external scripts including those required by media files or external services will not load without user consent.
Best regards,
IsmaelHey laboiteapixels12,
Thank you for the inquiry.
This is a known issue with the pagination and to fix it, you have to do either one of the modifications provided in the following thread.
// https://kriesi.at/support/topic/the-grid-with-products-does-not-work-pagination/#post-1254673
// https://kriesi.at/support/topic/enfold-blog-posts-and-magazine-navigation-link-to-previous-page-not-working/#post-1264664The same solution will be included in the latest version of the theme.
Best regards,
IsmaelHi,
Thank you for the info.
This is possible but we have to apply unique class names to the first and second column, and add a few css modifications. Please edit the page and the first column in the row. In Row Settings > Row Layout, make sure that the Equal Height option is enabled, and that there are no space between the columns. After that, enable the borders in the Styling > Borders > Border for both columns.
Again, edit the first column in the row, go to the Advanced > Developer Settings toggle, and apply the class name left_column_with_border in the Custom CSS Class field. Do the same steps for the second column, but use the class name right_column_with_border instead. You can now add the following css code in the Quick CSS field to remove the middle borders that separates the columns.
.left_column_with_border { border-right: 0 !important; } .right_column_with_border { border-left: 0 !important; }
Best regards,
IsmaelJanuary 20, 2021 at 3:07 am in reply to: Blog post image sizes suddenly all different sizes? #1273866Hi,
And where specifically is the setting?
As mentioned above, the Preview Image settings is inside the Blog Posts element in the page.
Looks like the designated thumbnails for the posts do not exists, so it falls back to the original image or the default size. Please correct the FTP details above so that we could check the uploads folder. (see private field)
Best regards,
IsmaelJanuary 20, 2021 at 2:57 am in reply to: New domain redirect back to existing L-page/subpages – customize header/footer? #1273865Hi,
you can select to hide the header on the page with a different design
The option is located in the pages’ Layout > Header visibility and transparency settings. Please note that this will also remove the default menu and any elements inside the header. You will then have to create your own custom header for the page using the Page Content element as suggested above.
Best regards,
IsmaelHi,
So I can put the code on text blocks to block that content.
Yes, that is the only option when using the Advance Layout Builder.
Also, is there another way to do this that you can recommend that would work with your theme?
We could modify the element and add a custom option for the plugin, but as we mentioned above this is beyond the scope of support and not something that we usually provide here. You may need to find help from third party developers or contact our partner, Codeable.
// https://kriesi.at/contact/customization
Best regards,
Ismael -
AuthorPosts