Forum Replies Created

Viewing 30 posts - 13,441 through 13,470 (of 66,745 total)
  • Author
    Posts
  • in reply to: Don't show featured image in blog post #1309680

    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,
    Ismael

    Hey 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,
    Ismael

    Hey 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,
    Ismael

    in reply to: Browser Media conflict #1309673

    Hey 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,
    Ismael

    in reply to: change header in Share This Entry in post default #1309672

    Hey 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,
    Ismael

    in reply to: Bug with post slider #1309669

    Hey 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,
    Ismael

    in reply to: Change price to 'out of stock' on catalogus pages #1309668

    Hey 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,
    Ismael

    in reply to: Full screen video #1309664

    Hey 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,
    Ismael

    in reply to: Adding Social Icons to Enfold burger menu #1309661

    Hey 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,
    Ismael

    in reply to: Mobile Site Issues with responsiveness #1309658

    Hi,

    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,
    Ismael

    in reply to: Mobile device display order #1309656

    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,
    Ismael

    in reply to: Problem with google analytics #1309653

    Hi,

    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,
    Ismael

    in reply to: Envato personal token #1309648

    Hi,

    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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: Keyboard accessibility for DropDown menus #1309644

    Hi,

    You cannot use a filter but you can override the original script in your child theme. Example here:

    // https://kriesi.at/support/topic/accessibility-issues-with-main-nav-leaves-us-sites-in-danger-of-lawsuits/#post-1227464

    Best regards,
    Ismael

    Hi,


    @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,
    Ismael

    in reply to: Unique title and description on pagination pages! #1309641

    Hi,

    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,
    Ismael

    in reply to: Different navigation for a page. #1309640

    Hi,

    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,
    Ismael

    in reply to: Tag archive #1309639

    Hi,

    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,
    Ismael

    in reply to: Masonry Gallery with lightbox AND custom Vimeo link? #1309222

    Hey 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,
    Ismael

    in reply to: Envato personal token #1309221

    Hey 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 made

    So if you think that this information should be private, then you should not add your own token in the theme options.

    Best regards,
    Ismael

    in reply to: How to hide Avia_Forced_Reroute form url #1309217

    Hi,

    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,
    Ismael

    in reply to: #fb-root Issue on Portfolio Sites #1309216

    Hey 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,
    Ismael

    in reply to: enfold/ecommerce – 'mobile first' responsive? #1309215

    Hey 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,
    Ismael

    in reply to: Fix Coupon Code Not Accepted #1309214

    Hi,

    Sorry about that. We adjusted the code a bit. Please try it again.

    Best regards,
    Ismael

    in reply to: Unique title and description on pagination pages! #1309213

    Hi,

    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,
    Ismael

    in reply to: Image slider to work on auto #1309211

    Hey 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,
    Ismael

    in reply to: Tab Section problem, doesnt show full content #1309210

    Hi,

    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,
    Ismael

    Hey 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,
    Ismael

    in reply to: Problems with Contact Form #1309207

    Hey 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

Viewing 30 posts - 13,441 through 13,470 (of 66,745 total)