Forum Replies Created
-
AuthorPosts
-
December 7, 2020 at 8:16 am in reply to: Widget Area in Nav (Logo Left, Nav Left, Widget Right) #1265405
Hi,
You are welcome! If you want to move the menu to the right instead, try to set the justify-content property from start to end to move the contents to the end or to the right of the flex contaner
#top #header #header_main .container.av-logo-container .inner-container { height: inherit; position: relative !important; flex-wrap: nowrap; justify-content: end; }
Best regards,
IsmaelHi,
Thank you for the update.
How did you set the initial value to 6? We might have to adjust the value of the data-quantity attribute of the add_to_cart_button button or element on page load.
Something like this..jQuery(document).ready(function() { var add_to_cart_button = jQuery( ".add_to_cart_button" ); add_to_cart_button.data( "quantity", 6 ); });
Best regards,
IsmaelHi,
Good to hear! Glad that you are now able to modify the email templates. Please feel free to open a new thread should you need anything else. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
You have to edit the contact form element in the advance layout builder and manually select the type of spam protection in the Content > Security > Contact Form Captcha settings. Right now, it is set to the second option or the numeric captcha question instead of Google ReCAPTCHA.
Best regards,
IsmaelHi,
Yes, that is fine. Please leave the modification for now, or post the WP and FTP details in the private field if you would like us to try and override the av_privacy_class class in the child theme, but we do not recommend this because there might be some changes in that class in future.
Thank you for your patience.
Best regards,
IsmaelHi,
Sorry for the delay. We could attach an event listener to the menu item so that when it is clicked, the corresponding portfolio item will open.
// https://api.jquery.com/click/
// https://www.w3schools.com/jquery/event_on.aspWe could use this function to open the portfolio item, or dispatch a click event based on the menu item that was clicked.
// https://api.jquery.com/trigger/
Best regards,
IsmaelHi,
Thank you for the update.
We added an invalid value to the white-space property above. Please look for this css code above.
.responsive .avia_scrollable_table .avia-data-table > thead > tr > th, .responsive .avia_scrollable_table .avia-data-table > tbody > tr > th, .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > th, .responsive .avia_scrollable_table .avia-data-table > thead > tr > td, .responsive .avia_scrollable_table .avia-data-table > tbody > tr > td, .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > td { white-space: wrap; }
Adjust the value of the white-space property from “wrap” to “normal”.
.responsive .avia_scrollable_table .avia-data-table > thead > tr > th, .responsive .avia_scrollable_table .avia-data-table > tbody > tr > th, .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > th, .responsive .avia_scrollable_table .avia-data-table > thead > tr > td, .responsive .avia_scrollable_table .avia-data-table > tbody > tr > td, .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > td { white-space: normal; }
And as suggested above, we could decrease the size of the text in the cells so that they do not overflow outside the cells.
Best regards,
IsmaelHi,
Thank you for the inquiry.
We tried to login to the dashboard but got temporary locked out. The login info seems to be invalid or something. Please check the info carefully so that we could login and check the site.
Best regards,
IsmaelHi,
Yes, we understand your concern. You might want to refrain from using the element as a product catalogue. One solution is to create a page that displays all the available categories in the shop so that the users will be well aware of the available product group. This option is actually available when using the Woocommerce plugin.
Thank you for your patience.
Best regards,
IsmaelHey GabrielSenn,
Thank you for the inquiry.
For some reason, the position of the caption_wrap is off — it is outside the image container. If it is possible to add custom class name to the MetaSlider layers, we could use the noHover class name to disable the image overlay effect.
Best regards,
IsmaelDecember 7, 2020 at 4:06 am in reply to: How to put commas to separate taxonomies from different groups of taxonomies #1265369Hi,
In WordPress, category and taxonomy are the same thing. Are you referring to the terms inside the categories or taxonomies? If so, you may need to get the WP_Term object or info based on the term ID. You can then check the taxonomy info of the current item and compare it against the taxonomy of the previous term. If the taxonomy of the current item is the same as the previous one, then we will not render a comma.
You will find the category loop in includes > loop-index.php file around line 285.if( ! empty( $taxonomies ) ) { foreach( $taxonomies as $taxonomy ) { if( ! in_array( $taxonomy, $excluded_taxonomies ) ) { $cats .= get_the_term_list( $the_id, $taxonomy, '', ', ', '' ) . ' '; } } }
You may need to replace get_the_term_list with get_the_terms function to get a full list of the WP_Terms.UPDATE: Please ignore my message above, just try to edit the includes > loop-index.php file and around line 291, try to place a comma right after every set of terms.
$cats .= get_the_term_list( $the_id, $taxonomy, '', ', ', '' ) . ', ';
Best regards,
IsmaelHey Rubén,
Thank you for the inquiry.
The theme is not yet compatible with AMP or does not contain AMP html or markup. Installing AMP extensions may not work completely with the theme because the plugin will not be able to convert all markup or html to the AMP version due to certain restrictions and limitations.
Please check the documentation below for the list of allowed and prohibited html tags.
// https://amp.dev/documentation/guides-and-tutorials/learn/spec/amphtml/?format=websites
Best regards,
IsmaelHey namgyal,
Thank you for the inquiry.
Unfortunately, handing out unlicensed copy of the theme is not allowed unless, if I am not mistaken, you have bought the extended license and that you have made a customized product out of the theme. The single license can only be used on a single site or domain.
Please check the license documentation for more info.
// https://themeforest.net/licenses/terms/extended
Best regards,
IsmaelHey solf,
Thank you for the inquiry.
The theme does not have that feature by default, but you might be able to do it using the Layer Slider plugin’s play-by-scroll option. Unfortunately, that option is only available in the premium version of the layer slider plugin.
// https://layerslider.kreaturamedia.com/sliders/play-by-scroll/
Best regards,
IsmaelHi,
Thank you for the update.
That would not be possible, unfortunately. As suggested above, the solution is to resize the image so that it has the same size or dimension as the rest of the images in the slider. You will then have to upload it again.
Best regards,
IsmaelDecember 4, 2020 at 2:59 pm in reply to: Easy slider : Issue on safari (unintended space before content under slider) #1265021Hey Maike,
Thank you for the inquiry.
Are you referring to the fullwidth submenu element below the slider and/or the first section? I will ask the team to check the site on Safari. Please wait for their response.
Best regards,
IsmaelHi,
Thank you for the update.
1.) The text and the banner image in the slides are resizing properly when we check the site on a device emulation as shown in the screenshot below.
Screenshot: https://imgur.com/a/EbszEMA
How would you like the slider to resize or adjust on mobile view?
2.) That is the default layout of the slider on mobile view. The slider navigation is hidden by default but we could use the following css code to display it back on smaller screens.
@media only screen and (max-width: 767px) { .responsive #top .avia-slideshow-controls a { display: block; } }
You could also display another slider or element with different configuration or settings in place of the current one using the elements’ Advanced > Responsive > Element Visibility settings. This option allows you to toggle the visibility of the elements in different screen sizes.
Best regards,
IsmaelHi,
The Content Height is only available when the Tab Position is set to Display tabs above content. If you need further help, please do no hesitate to open a new thread. We will close this one for now.
Best regards,
IsmaelHi,
Thank you for the update.
1.) Yes, the child theme should be activated, else the modification or the template changes for the portfolio archive page that we just did will not work. Please note that after activating the child theme, you have to import the parent theme options to keep the current layout and configuration of the site. For more info, please check the documentation below regarding child theme installation or activation.
// https://kriesi.at/documentation/enfold/child-theme/
Just to be safe, please create a site backup or a restore point before activating the child theme so that we could revert back to a previous version in case anything goes wrong.
2.) It is up to the developer or the site owner to update the child theme version if they want, but it is not necessary.
Best regards,
IsmaelHi,
Thank you for coming back.
1.) We have to modify the includes > loop-index.php file and add the author image beside the name manually. Please edit the file and look for this code around line 409.
echo '<span class="blog-author minor-meta">' . __( 'by','avia_framework' ) . ' '; echo '<span class="entry-author-link" ' . avia_markup_helper( array( 'context' => 'author_name', 'echo' => false ) ) . '>'; echo '<span class="author"><span class="fn">'; the_author_posts_link(); echo '</span></span>'; echo '</span>'; echo '</span>';
Below that code, add the following snippet to render the author image.
$gravatar = ''; $pf_link = get_post_format_link( $post_format ); if( $post_format == 'standard' ) { $author_name = apply_filters( 'avf_author_name', get_the_author_meta( 'display_name', $post->post_author ), $post->post_author ); $author_email = apply_filters( 'avf_author_email', get_the_author_meta('email', $post->post_author), $post->post_author ); $gravatar_alt = esc_html( $author_name ); $gravatar = get_avatar( $author_email, '81', 'blank', $gravatar_alt ); $pf_link = get_author_posts_url( $post->post_author ); } $author_image= "<a href='{$pf_link}' class='post-author-format-type'><span class='rounded-container'>" . $gravatar . $icon . '</span></a>'; echo $author_image;
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,
Thank you for the inquiry.
The site is still using an older version of the theme, v.4.7.4. You may need to upgrade it to v4.7.6.4. Please post the FTP and WP login details in the private field if the issue persists after the update.
Best regards,
IsmaelDecember 4, 2020 at 5:12 am in reply to: Special Characters in a code block – unable to use suggested replacement #1264938Hi,
Current issue remains:
Navigating to edit-mode of the published page is breaking back-end and does show edit-mode in non-workable way.Do you mean that you cannot edit the text block after adding the style? Please post the style or code that you are trying to add to the code block using pastebin so that we could test it on our own installation.
Best regards,
IsmaelHi,
Sorry about that. We forgot to include this css code.
table.shop_table .woocommerce-cart-form__cart-item.cart_item { height: 100%; }
This is how the table should look after adding the css code above.
Screenshot: https://imgur.com/UBCGGFv
Best regards,
IsmaelHi,
Did you remove the cache before checking the page? Or try to check the site again on incognito mode.
If it is not working, try this one instead.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .av-caption-on-hover .av-masonry-item-with-image.av-masonry-entry:hover .av-inner-masonry-content { display: none !important; } }
Best regards,
IsmaelHi,
Thank you for the update.
Would you like to adjust the position of the stars inside the review container? Please try this code in the Quick CSS field.
div .star-rating, div #reviews #comments ol.commentlist li .comment-text .star-rating { top: 10px; position: relative; }
Adjust the top position as you wish.
Best regards,
IsmaelHi,
Thank you for the update.
We are not really sure why it gets converted, but we might be able to work around the issue by adding a placeholder to the title field, then convert that placeholder to the actual symbol in the front end using javascript.
// https://www.w3schools.com/jsref/jsref_replace.asp
Best regards,
IsmaelHi,
Sorry for the delay. This might be due to the new Enfold > Privacy & Cookies option, which is not available on version 4.4.1. Have you tried disabling the option temporarily? You should also disable the Performance > File Compression settings temporarily to regenerate the scripts and stylesheets.
Best regards,
IsmaelHey dnweil,
Thank you for the inquiry.
Which browser are you using, and in which OS? We successfully created an event post without encountering any error. Please check the event link in the private field.
How can we reproduce the issue?
Best regards,
IsmaelHi,
Thank you for the info.
We are not really sure if this is going to help, but the following script should completely remove the hidden slider from the pagem and hopefully allow the waypoint script to correctly calculate the position of the images.
// remove hidden ls function ava_script_events_container() { if ( wp_script_is( 'avia-default', 'registered' ) ) { wp_add_inline_script( 'avia-default', "(function($) { $(document).ready(function() { $('.ls-forcehide').remove(); }); })(jQuery);" ); } } add_action( 'wp_enqueue_scripts', 'ava_script_events_container', 9999);
Please add it in the functions.php file.
Best regards,
IsmaelHi,
I found this function in another support post at Enfold.
Which function did you add, and where did you get it? Please provide the link to the previous thread so that we could test the snippet. We might have to adjust the initial value of the data-quantity attribute to make this work properly.
Best regards,
Ismael -
AuthorPosts