Forum Replies Created
-
AuthorPosts
-
Hey Charlotte,
Thank you for the inquiry.
Edit the post and look for the Layout > Featured Image settings. You should be able to show/hide the featured image by adjusting the settings.
Best regards,
IsmaelJuly 12, 2021 at 6:13 am in reply to: creating a 2nd page causes issues with layer slider on main page #1309679Hey Marcel,
Thank you for the inquiry.
The “allaboutme” page does not exist. Did you remove it? Please provide a screenshot of the layout issue so that we can understand it better.
Best regards,
IsmaelJuly 12, 2021 at 5:35 am in reply to: Imported Google font not working on iPhone or desktop Safari #1309677Hey tiffanytnttobol,
Thank you for the inquiry.
How do you load the font? Looks like you did not select the font from the Enfold > General Styling > Fonts panel. Try to disable the cache and minification plugin, then test the page again on Safari.
Best regards,
IsmaelHey Colin,
Thank you for the inquiry.
We cannot reproduce the issue on Safari. The pdf file opens in a new tab when we clicked any of the images in the Free eGuides section.
Screenshot: https://postimg.cc/crt5jQyg
Best regards,
IsmaelHey laptophobo,
Thank you for the inquiry.
You can actually use a filter to adjust the heading tag to something else.
function avf_customize_heading_settings_mod( array $args, $context, array $extra_args = array() ) { if( $context == 'avia_social_media_icons') { $args['heading'] = 'h1'; } return $args; } add_filter( 'avf_customize_heading_settings', 'avf_customize_heading_settings_mod', 10, 3 );Best regards,
IsmaelHey kemsei,
Thank you for the inquiry.
The post meta info including the date will only display if the post has an excerpt. Make sure to add an excerpt to the posts manually if it is not available to make sure that the date will display.
Best regards,
IsmaelHey Jillian,
Thank you for the inquiry.
You can try this filter in the functions.php file to add an “out of stock” text when the product is not available.
function wcs_stock_text_shop_page() { global $product; $availability = $product->get_availability(); if ( $availability['availability'] == 'Out of stock') { echo apply_filters( 'woocommerce_stock_html', '<p class="stock ' . esc_attr( $availability['class'] ) . '">' . esc_html( $availability['availability'] ) . '</p>', $availability['availability'] ); } } add_action( 'woocommerce_after_shop_loop_item_title', 'wcs_stock_text_shop_page', 25 );Best regards,
IsmaelHey Groeier!,
Thank you for the inquiry.
You can actually override the original script by creating a copy of it in your child theme. Just follow the instructions that we provided in the following thread.
// https://kriesi.at/support/topic/play-video-in-fullscreen/#post-1239084
Best regards,
IsmaelHey Frank,
Thank you for the inquiry.
You can add this script in the functions.php file to create a copy of the social icons on mobile view.
// move social icons inside icon or mobile menu function ava_custom_script_mod_social() { ?> <script> (function($) { $(document).ready(function() { var burger_wrap = $('.av-burger-menu-main a'); var social = $('.social_bookmarks'); $(burger_wrap).on('avia_burger_list_created', function() { setTimeout(() => { social.appendTo('#av-burger-menu-ul').addClass("mobile_social_bookmarks"); }, 150); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script_mod_social', 10000);Make sure that the social icons are actually enabled in the Enfold > Header > Extra Elements panel.
Best regards,
IsmaelHi,
Yes, please provide a screenshot of the mobile view layout. You can use tools like imgur or dropbox. Did you add the custom class name in the appropriate field?
Best regards,
IsmaelHi,
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,
Ismael -
AuthorPosts
