Forum Replies Created

Viewing 30 posts - 11,941 through 11,970 (of 67,591 total)
  • Author
    Posts
  • in reply to: WooCommerce Thumbnails not shown on mobile devices in cart #1339575

    Hi,

    Thank you for the access.

    We adjusted the css code in the Quick CSS field and temporarily disable the file compression settings. The cart page should now look exactly the same as the screenshot above. Please make sure to purge the cache before checking the page on mobile view.

    This is the updated code in the Quick CSS field.

    /* Kreditkartenfeld responsive */
    @media screen and (max-width: 767px) {
      .woocommerce table.shop_table thead {
        display: none;
      }
    
      .woocommerce table.shop_table td {
        display: block;
        text-align: right !important;
        border: 0px;
      }
    
      .woocommerce table.shop_table td::before {
        content: attr(data-title) ": ";
        font-weight: 700;
        float: left;
      }
    
      .woocommerce table.shop_table_responsive thead,
      .woocommerce-page table.shop_table_responsive thead {
        display: none;
      }
    
      .woocommerce table.shop_table_responsive tr td::before,
      .woocommerce-page table.shop_table_responsive tr td::before {
        content: attr(data-title) ": ";
        font-weight: 700;
        float: left;
      }
    
      .woocommerce table.shop_table_responsive tr td,
      .woocommerce-page table.shop_table_responsive tr td {
        display: block;
        text-align: right !important;
      }
    
      #top #payment div.form-row {
        padding-left: 0px !important;
      }
    
      /* Target the Credit Card */
      #stripe-card-element {
        width: 200px !important;
        margin-left: -20px;
      }
    
      /* Target the Expiry Date */
      .woocommerce-checkout-review-order #stripe-exp-element {
        background: #ffffff !important;
        margin: 5px 0px !important;
        padding: 10px 5px !important;
      }
    
      /* Target the CVC Code */
      .woocommerce-checkout-review-order #stripe-cvc-element {
        background: #ffffff !important;
        margin: 5px 0px !important;
        padding: 10px 5px !important;
        margin-left: -20px;
      }
    
      .responsive table.shop_table.cart .product-thumbnail {
        display: block !important;
      }
    
      .woocommerce .shop_table .woocommerce-cart-form__cart-item td::before {
        display: block;
      }
    
      .responsive #top table .product-name,
      .responsive #top table .product-price {
        border-color: #c4c4c4;
      }
    
      .woocommerce-cart-form__cart-item {
        border-bottom: 1px solid;
      }
    
      .woocommerce .shop_table .woocommerce-cart-form__cart-item .product-price::before,
      .woocommerce .shop_table .woocommerce-cart-form__cart-item .product-name::before {
        display: block;
      }
    
      .woocommerce .shop_table .woocommerce-cart-form__cart-item.actions::before {
        displaY: none;
      }
    }

    Best regards,
    Ismael

    Hey Bruno,

    Thank you for the inquiry.

    The font looks different in the staging site because the applied font family is set to “static” instead of “oswald”. Did you upload the font to your own server? Try to upload the font again and make sure that the font is selected in the Enfold > General Styling > Fonts panel.

    Best regards,
    Ismael

    in reply to: Wrong post title when using shortcode #1339533

    Hi,

    Thank you for the update.

    The code above is not working because $author_id does not exist. You have to assign a value to that variable or just replace this block..

    $nameid= get_the_author_meta( 'ID', $author_id); 
    $name= get_the_author_meta( 'display_name', $author_id); 
    

    .. with:

    $nameid = get_the_author_meta( 'ID' ); 
    $name = get_the_author_meta( 'display_name' ); 
    

    To get the ID of the author and assign it to $author_id, try this code.

    $author_id = get_post_field( 'post_author', get_the_ID() );
    

    Best regards,
    Ismael

    in reply to: Overwriten js files in child theme #1339532

    Hey conflock,

    Thank you for the inquiry.

    The wp_deregister_script only accepts one parameter or argument, which is the script name or handle, so the code above is invalid. You should also check the file name and its path.

    Did you copy the avia-snippet-megamenu.js and the avia-snippet-lightbox.js files in the js folder of the child theme directory? Please try to replace the code with this one.

    function ava_change_wp_enqueue_scripts_mod() {
        wp_deregister_script( 'avia-lightbox-activation' );
        wp_deregister_script( 'avia-megamenu' );
    	wp_enqueue_script( 'avia-child-lightbox-activation', get_stylesheet_directory_uri() . '/js/avia-snippet-lightbox.js', array('jquery'));
        wp_enqueue_script( 'avia-child-megamenu', get_stylesheet_directory_uri() . '/js/avia-snippet-megamenu.js', array('jquery'));
    }
    add_action( 'wp_enqueue_scripts', 'ava_change_wp_enqueue_scripts_mod', 100 );
    

    Make sure that the script files is in the child theme’s js folder.

    Best regards,
    Ismael

    Hey mocreate,

    Thank you for the inquiry.

    Have you tried using the Featured Image Slider from the Media Elements tab of the builder? You should be able to display a post as a full width slider using this element.

    Best regards,
    Ismael

    in reply to: Set Maximum Width for Specific Page #1339527

    Hi,

    It is not working because the default styling overrides the custom css.

    .responsive .container {
        max-width: 1310px;
    }
    

    Try to prepend the “.responsive” selector to the current one to make it more specific.

    Example:

    .responsive .page-id-30 .container {
        max-width: 990px;
    }
    

    Best regards,
    Ismael

    in reply to: Contact Form Not Working (Not Sending Emails) #1339526

    Hi,

    Thank you for the inquiry.

    You may need to manually specify the from address in the contact form’s Content > Backend > Your from address field or use an SMTP plugin to whitelist the messages coming from the contact form. Or use this filter in the functions.php file to apply a default from address to every contact forms.

    function avf_change_cf_from() {
        return " (Email address hidden if logged out) ";
    }
    add_filter('avf_form_from', 'avf_change_cf_from', 10);

    To make sure that the WordPress mail is working, please install the Contact Form 7 plugin temporarily, then try to send a test mail.

    Best regards,
    Ismael

    in reply to: Menu Item Not Clickable when scrolling #1339518

    Hey navindesigns,

    Thank you for the inquiry.

    You have to remove the padding of the header widget because it becomes much more taller than is necessary and covers the menu item below it. Please adjust this css.

    #top #header #header_main .widget {
        position: absolute;
        right: 100px;
        top: 10px;
        z-index: 999;
        padding: 0;
    }
    

    Best regards,
    Ismael

    in reply to: category blog article styling #1339513

    Hey Susanne,

    Thank you for the inquiry.

    You can convert the category pages to use the masonry element but you have to modify the archives.php file directly. An example of the modification can be found here.

    // https://kriesi.at/support/topic/how-to-change-category-tag-archive-etc-pages-to-look-like-avia-masonry-grid/#post-661134

    Best regards,
    Ismael

    in reply to: Woocomerce Wholesale tabel problem #1339510

    Hi,

    Unfortunately, we do not provide support for third party plugins as stated on our support policy. It is beyond the scope of support, but we try to help as much as we can. We already debugged the issue for you and explained why the quantity buttons are not displaying in the shop table. All you need to do is contact the plugin authors and forward the information that we provided above, or you can just leave it as it is, which is fine because users can still input the product quantity manually, which is how it is in a default Woocommerce installation.

    Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Grid Row background image mobile view #1339506

    Hey Diana,

    Thank you for the inquiry.

    The second cell has no intrinsic height because it has no content. This works fine on desktop view because the cell inherits the height of the first cell but it is not the case on mobile view. To fix that, you have to specify the height of the second cell manually using css.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .flex_cell.av_one_half.av-50th5r-6f4695f56b3386194828c3865ebb54be {
        min-height: 50vh;
      }
    }

    You may need to apply a unique class name or ID to the cell and replace the auto generated element ID above.

    Best regards,
    Ismael

    Hey fkm,

    Thank you for the inquiry.

    You cannot use a negative height value but you can pull or push an element on any direction by applying a negative margin value. To pull the #teamtabs container upwards for example, you can use this css code.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all #teamtabs {
        padding-top: 0 !important;
        margin-top: -10px;
      }
    }
    

    Best regards,
    Ismael

    in reply to: enfold and woocommerce problems #1339501

    Hi,

    Thank you for the update.

    We can see the issue but we are not yet sure what is causing it. The html looks correct and we do not see any kind of errors. Did you install any third party extensions for the shop page? One of the plugins might be adjusting the price for certain products.

    Best regards,
    Ismael

    in reply to: "Save entry as template" to duplicate a post #1339499

    Hi,

    Great! Glad to know that you’ve found the cause of the issue. Please feel free to open another thread if you need anything else. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Table with Widgets / Small Custom Images and Text Fields #1339498

    Hi,

    Thank you for the inquiry.

    You can use the Table element from the builder and add the icon images directly in the table cells using html.

    Example:

    <img src="IMAGE URL HERE" class="av-table-img-icon">
    

    You can then use the av-table-img-icon class name to adjust the style of the icon.

    .av-table-img-icon {
       width: 36px;
       height: 36px;
       background: yellow;
    }

    Best regards,
    Ismael

    in reply to: Private blog posts and Grid view problem for subscribers #1339494

    Hey Caiser_Souze,

    Thank you for the inquiry.

    but not in the case of the classic grid or masonry.

    Which element are you actually using? Please provide a link to the page containing the posts element so that we can check it. A link to the “classic blog layout/view” will help as well. How did you make it work in the blog overview page?

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    You can use this css code to adjust the style of the columns containing the icons on mobile view.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      #top #wrap_all .flex_column.av-kzbx94lc-0865b210f7d84bd719b709dfe2b258da, #top #wrap_all .flex_column.av-kzbx3c10-9015bc4b90fe961b12754f30ae1ac4a2 {
        width: 49%;
        float: left;
      }
    }
    

    Best regards,
    Ismael

    in reply to: Slider for 3 Testimonials #1339488

    Hey!

    We replied in the following thread which seems to have the same request: https://kriesi.at/support/topic/add-slider-for-text-blocks-for-mobile/#post-1339275

    Regards,
    Ismael

    in reply to: Alphabetical Order on Blog Post Module – Specific Page #1339485

    Hey Jad,

    Thank you for the inquiry.

    You can use the is_page conditional function to exclude the other pages and apply the changes to a specific page.

    // https://developer.wordpress.org/reference/functions/is_page/

    Example:

    
    function avia_modify_post_grid_query_asc( $query ) {
    	if(is_page(123)) {
    		$query['orderby'] = 'title';
    		$query['order'] = 'ASC';
    	}
    
    	return $query;
    }
    add_filter('avia_blog_post_query', 'avia_modify_post_grid_query_asc');
    

    The filter above will only change the query on the page with the ID 123.

    Best regards,
    Ismael

    in reply to: Masonry Blog Meta Elements #1339484

    Hi,

    The categories are there but they are underneath the image container. Try to use this css code to move it on top of the background image.

    .av-masonry-outerimage-container ul {
        position: absolute;
        z-index: 999;
        color: white;
    }
    

    Best regards,
    Ismael

    in reply to: 'Tab Section' responsive mobile problem #1339483

    Hi,

    Sorry for the delay. It’s not working correctly because the width of the tabs in the tab section element exceed the width of the browser viewport. We are not yet sure sure why that is happening, so for now, you have to use this css code to control the width of the layout tab on mobile view.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .avia-section-no-padding .av-layout-tab {
        max-width: 99vw;
      }
    }
    

    Best regards,
    Ismael

    in reply to: Jum Links / Anchors not working properly #1339482

    Hey hammerseo,

    Thank you for the inquiry.

    The scroll works when we clicked on one of the items in the table of content (TOC) but not when we directly input the URL in the address bar. Did you install any plugin that may affect the site scrolling? Please try to deactivate all of the plugins temporarily, purge the cache, then check the page again.

    Best regards,
    Ismael

    in reply to: Grid Row – Fullwidth Break Point #1339278

    Hey markus-fischer,

    Thank you for the inquiry.

    You can use this css to adjust the grid row’s Fullwidth Break Point to 1075px.

    
    @media only screen and (max-width: 1075px) {
     .responsive #top #wrap_all .av-break-at-tablet .flex_cell {
        margin: 0;
        margin-bottom: 20px;
        width: 100%;
        display: block;
      }
    }
    

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

    in reply to: Remove Space between Color Section & Image #1339277

    Hi,

    Thank you for the screenshot.

    You may need to move the content inside a color section element, then set its Layout > Margin & Padding to No Padding to remove the space below the column or below the image. If it doesn’t work, try to edit the first column in the row, enable the Row Settings > Row Layout > Equal Height Columns option, then set the Vertical Alignment settings to Bottom.

    Best regards,
    Ismael

    in reply to: Woocomerce Wholesale tabel problem #1339276

    Hi,

    You don’t need to modify the shop table or the plugin. Just ask the plugin author if the table emits or triggers a Javascript event after it loads the product items. We can then execute the avia_apply_quant_btn function after that event to create the quantity buttons.

    Best regards,
    Ismael

    in reply to: Add Slider for Text Blocks for Mobile #1339275

    Hey markus-fischer,

    Thank you for the inquiry.

    Have you tried setting the Styling > Testimonial Style to the second or third option to display the testimonial items in a slider instead of grid? You can also use the Advanced > Responsive Settings > Element Visibility options to toggle the visibility of the element on certain screen sizes.

    Best regards,
    Ismael

    in reply to: section video background – stop auto loop #1339271

    Hi,

    You should be able to use the property and function to retrieve the duration of the video and pause it on a specific time.

    // https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/duration
    // https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/pause

    Full documentation for the html5 video API is located here.

    // https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement

    Best regards,
    Ismael

    in reply to: Font not Loading on Windows #1339270

    Hey kazumakitajima,

    Thank you for the inquiry.

    How did you load the fonts, and which font format are you using? Please make sure that the font is in the following format — ttf, otf or woff.

    Best regards,
    Ismael

    in reply to: Embedding Sub Navbar element on WooCommerce #1339266

    Hi,

    Thank you for the update.

    The theme doesn’t alter the product description in any way as far as we know. You can check the enfold/config-woocommerce/config.php file to view the theme modifications for the shop plugin.

    Where can we check the issue? Please provide the product URL in the private field.

    Best regards,
    Ismael

    in reply to: "Save entry as template" to duplicate a post #1339265

    Hi Daniele,

    Sorry about that. It seems to work fine on a new post as well — link in the private field. You may need to recreate the post from scratch before attempting to save the content again as template.

    Best regards,
    Ismael

Viewing 30 posts - 11,941 through 11,970 (of 67,591 total)