Forum Replies Created
-
AuthorPosts
-
Hi,
Is this how you would like to sort the columns?
Screenshot: https://postimg.cc/kR70QGhM
If it is, make sure that the Equal Height option for each row is disabled, then use this css code.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .av-custom-column-order .entry-content-wrapper { display: flex; direction: ltr; flex-direction: column; } .av-custom-column-order .av_one_half:nth-child(1) { order: 1; } .av-custom-column-order .av_one_half:nth-child(2) { order: 4; } .av-custom-column-order .av_one_half:nth-child(3) { order: 5; } .av-custom-column-order .av_one_half:nth-child(4) { order: 3; } .av-custom-column-order .av_one_half:nth-child(5) { order: 2; } .av-custom-column-order .av_one_half:nth-child(6) { order: 6; } }
Best regards,
IsmaelHi,
It is still working properly on our end. Please check the screenshot below.
Screenshot: https://imgur.com/Jq9aBLa
Where do you see the error?
Best regards,
IsmaelHi,
You should create a dedicated account for each client and use that account instead to purchase the theme. Also, please note that those permissions will only be useful for someone who has basic programming knowledge and for someone who is familiar with the Envato API or APIs in general.
Best regards,
IsmaelJuly 12, 2021 at 4:16 am in reply to: CSS to force mobile devices to display sub-sub-menus to the right. #1309646Hi,
Thank you for the update.
We can use this css code to move the sub menu to the right on both desktop and mobile view.
#top .sub_menu li li ul { top: -1px; right: -169px; left: auto; }
Best regards,
IsmaelHi,
You cannot use a filter but you can override the original script in your child theme. Example here:
Best regards,
IsmaelJuly 12, 2021 at 4:07 am in reply to: Split menu, logo center, menu items far left, and far right #1309642Hi,
@fromcouch: You may have to create more css media queries to adjust he right margin value on different screen sizes. If you need further help, please feel free to open another thread. We will close this one for now.Best regards,
IsmaelHi,
We can use the avf_blog_style filter to adjust the style of the blog on archive or category pages. Please check the following thread for usage example.
// https://kriesi.at/support/topic/blog-page-post-category-and-date-not-displaying/#post-1309089
Best regards,
IsmaelHi,
Thank you the update.
Have you tried adjusting this part of the css code?
/*In the below code nth-child(x) the value of x should be half the number of total menu items*/ #top #header .av-main-nav li:nth-child(3) { /* Adjust the width of the logo */ margin-right:150px; }
And you might have adjust the name of the menu items a bit and make sure that all of them have almost the same length.
Best regards,
IsmaelHi,
Sorry for the delay. We modified the woocommerce_taxonomy_archive_description function a bit and include the taxonomy description below the title or h1 tag.
Best regards,
IsmaelHey Jan,
Thank you for the inquiry.
This option is not available by default. You have to add a value in the custom link field of the items if the custom link option is enabled, or else it will disable the link. You can add the same image URL in the custom link field if you want it to open the same image in a lightbox.
Best regards,
IsmaelHey Oliver,
Thank you for the inquiry.
Anyone that has access to the token will be able to do any of the following things.
View and search Envato sites (checked by default)
View your Envato account username
View your email address
View your account profile details
Download your purchased items
Verify purchases of your item
List purchases you’ve madeSo if you think that this information should be private, then you should not add your own token in the theme options.
Best regards,
IsmaelHi,
That is an odd connection. Why would the redirection affect the background images? Which actual solution are you referring to? There is only css. If you need further help, please feel free to open another thread.
Best regards,
IsmaelHey salai_com,
Thank you for the inquiry.
You can remove it directly from the footer.php file or template around line 297.
<div id="fb-root"></div>
But this may affect Facebook scripts if enabled.
Best regards,
IsmaelHey dan johnson,
Thank you for the inquiry.
We are not exactly sure what you meant by “mobile first”, but we can tell you that the theme automatically applies the srcset attribute to images so that the appropriate or designated image for the current screen size is used or displayed. For more info about this attribute, please check the following documentation.
// https://developer.mozilla.org/en-US/docs/Learn/HTML/Multimedia_and_embedding/Responsive_images
The following articles should also help.
// https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
Best regards,
IsmaelHi,
Sorry about that. We adjusted the code a bit. Please try it again.
Best regards,
IsmaelHi,
Thank you for the new login token.
We removed the custom SEO title field value and edited the avf_add_page_number_to_title function a bit. The page number is now included in the blog page title. This is the modified function.
/*Добавляет к Title и Description на страницах пагинации номера страниц "Страница - 2,3,4..."*/ if ( ! function_exists( 'avf_add_page_number_to_title' ) ) { function avf_add_page_number_to_title( $title ) { global $page; $paged = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1; ! empty ( $page ) && 1 < $page && $paged = $page; isset($_GET['avia-element-paging']) && $paged = $_GET['avia-element-paging']; $paged > 1 && $title .= sprintf( __( 'Page %s' ), $paged ); return $title; } add_filter( 'wpseo_metadesc', 'avf_add_page_number_to_title', 100, 1 ); add_filter( 'wpseo_title', 'avf_add_page_number_to_title', 100, 1 ); add_filter( 'avf_title_tag', 'avf_add_page_number_to_title', 100, 1 ); }
Best regards,
IsmaelHey Dave,
Thank you for the inquiry.
You can use the script that we provided in the following thread to add an autorotation for the horizontal gallery.
// https://kriesi.at/support/topic/can-the-horizontal-gallery-autoslide-the-images/#post-986834
Best regards,
IsmaelHi,
We added the custom script that we recommended above and disabled the other custom script that is supposed to adjust the height of the tab section title. The function or script name is ava_custom_script_fix.
Best regards,
IsmaelJuly 8, 2021 at 8:35 am in reply to: plus/minus buttons is gone on plugin YITH WooCommerce Request A Quote Premium #1309209Hey decode,
Thank you for the inquiry.
Would you mind providing a direct link to a product that is supposed to display the quantity buttons? We tried to check some of the products but we are not quite sure if they are supposed to have the quantity button or just the request a quote button.
Best regards,
IsmaelHey Chrisi2020,
Thank you for the inquiry.
Have you tried adjusting the from address to a domain email address? This should notify the email server to allow any emails coming from the contact form. Please check the following documentation for more info.
// https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-
Best regards,
IsmaelHi,
Great! Glad to know that this is fixed. Please do not hesitate to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
Try to use this css code to change the background color of the mobile menu container.
.html_av-overlay-side #top .av-burger-overlay-scroll { background: #ffff; }
You can adjust the font or style of the mobile menu items in the Enfold > Advanced Styling panel.
Best regards,
IsmaelHey So Evolve,
Thank you for the inquiry.
Which plugin are you currently using? You can find a few map plugins in the repository with different range of options and features.
// https://wordpress.org/plugins/tags/google-map/
Best regards,
IsmaelHey Sebastian,
Thank you for the inquiry.
What is the current masonry size settings? Please post the site details in the private field including the link to the page with the masonry element so that we could check it properly.
Best regards,
IsmaelHi,
Would you mind posting the site details? We may need to login to the dashboard and check the css code. Please post the info in the private field.
Best regards,
IsmaelHey amyteslin,
Thank you for the inquiry.
Looks like the avatar container is empty.
<span class="bbp-author-avatar"></span>
Did you disable the default avatar option, or did you modify any of the forum templates?
The following documentation and plugin might help.
// https://codex.bbpress.org/getting-started/faq/user-avatars/
// https://wordpress.org/plugins/basic-user-avatars/Best regards,
IsmaelHey Antonio,
Thank you for the inquiry.
You may need to modify the template file directly and add the noLightbox class name or attribute to the links containing the video URL. This should disable the lightbox for those links.
Best regards,
IsmaelHi,
No problem. Please feel free to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
It is possible that the form is using a different date picker script or library. You have to contact the plugin or script authors regarding this issue as it is beyond the scope of support.
Thank you for your understanding.
Best regards,
IsmaelJuly 7, 2021 at 9:24 am in reply to: Either fade out or scroll more quickly when clicking on a 100% high element #1309060Hi,
Thank you for the info.
We could decrease the duration of the scrolling animation but changing the color of the section to something else might require a custom script, which we will not be able to provide here. To adjust the duration, edit the js > avia.js file and look for this code around line 809:
duration = data.duration || 1200, easing = data.easing || 'easeInOutQuint';
Set the duration accordingly.
Best regards,
Ismael -
AuthorPosts