Forum Replies Created

Viewing 30 posts - 15,211 through 15,240 (of 66,084 total)
  • Author
    Posts
  • in reply to: Add header to specific Woocommerce pages #1262890

    Hi,

    Thank you for the update.

    You may need to extract the actual markup or html instead of using the shortcodes because the theme closes the containers prematurely, which breaks the layout the page. This is the extracted markup from the above shortcode.

    // https://pastebin.com/MXRuBuep

    Best regards,
    Ismael

    in reply to: Mobile cart fix #1262889

    Hey El,

    Thank you for the inquiry.

    Did you set the quantity buttons to not display on smaller screens? We found this css code in the site.

    .cart_item .plus, .cart_item .minus {
    	display: none !important;
    }

    If you’d like, we could also adjust the minimum width of the product quantity column and decrease the size of the input fields so that they fit exactly inside the container.

    Please try this css code in the Quick CSS field.

    td.product-quantity {
    	min-width: 120px;
    }
    
    #top div .quantity input.plus, #top div .quantity input.minus {
    	line-height: 29px;
    	width: 30px;
    	height: 30px;
    }
    
    td {
    	font-size: 12px;
    }
    
    #top div .quantity input.qty {
    	height: 30px;
    	width: 30px;
    	line-height: 29px;
    }
    
    

    Best regards,
    Ismael

    in reply to: Widget Area in Nav (Logo Left, Nav Left, Widget Right) #1262888

    Hi,

    Thank you for the screenshot.

    We have to set the justify-content property of the inner container from space-between to start so that the elements float to the left.

    #top #header #header_main .container.av-logo-container .inner-container {
    	height: inherit;
    	position: relative !important;
    	flex-wrap: nowrap;
    	justify-content: start;
    }
    

    We can then move the phone info to the right of the container with this css code.

    .responsive #top #header #header_main .inner-container .widget {
    	right: 0;
    	position: absolute !important;
    }
    

    Best regards,
    Ismael

    in reply to: Advanced Layerslider #1262887

    Hi,

    Sorry for the delay. The images in the slider are displaying properly on our end and the layers are fading in as expected on mobile view. Did you manage to figure out the issue?

    Best regards,
    Ismael

    in reply to: Accordion re-loading page instead of opening lightbox #1262886

    Hey BelIblis,

    Thank you for the inquiry.

    The lightbox option is not working correctly because for some reason, the value of the href attribute for each item in the gallery is missing. Did you add any custom script to the site, and does it work correctly when the plugins are disabled?

    Best regards,
    Ismael

    in reply to: Slideshow overlay text size #1262885

    Hey BelIblis,

    Thank you for the inquiry.

    Looks like you have managed to adjust the font size of the slideshow caption heading to 10px and the content to 12px using the following css code.

    .slideshow_caption p {
    	hyphens: none !important;
    	width: 70vw;
    	font-size: 12px !important;
    	line-height: 110% !important;
    }
    
    .responsive #top #wrap_all .av-mini-font-size-10 {
    	font-size: 10px !important;
    }
    

    Have you tried using the Full Screen Slider element instead of the current one? This slider will have more space for the caption and other content in general.

    Best regards,
    Ismael

    in reply to: MailChimp addresses and opt in form #1262884

    Hey Michael,

    Thank you for the inquiry.

    The subscription form has to be created in your Mailchimp Account (https://mailchimp.com/) panel, the same panel where you acquire the API key. You can then show this form in the site using the Mailchimp Signup element from the theme’s Advance Layout Builder (ALB). For more info about Mailchimp integration, please check the following documentation.

    // https://kriesi.at/documentation/enfold/mailchimp-signup/#mailchimp-integration

    Best regards,
    Ismael

    Hey mmsdev,

    Thank you for the inquiry.

    The site redirects to a page that does not exist (see private field) after checking out. Did you configure the page endpoints in the Woocommerce settings? You may need to modify the checkout endpoints, specifically the order-received or thank-you page.

    // https://docs.woocommerce.com/document/woocommerce-endpoints-2-1/

    Best regards,
    Ismael

    in reply to: H3 in cookie, not expected #1262881

    Hey rvga,

    Thank you for the inquiry.

    We could change the markup of the privacy & cookie modal popup window, but we have to manually edit the enfold\includes\helper-privacy.php file and adjust this code around line 1868:

    $sc_content .= "[av_heading tag='h3' padding='10' heading='{$heading}' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' margin='10px,0,0,0'][/av_heading]";
    

    Change the tag value from h3 to something else.

    Best regards,
    Ismael

    in reply to: Invisible 301s being created av-blog-meta-category-disabled #1262579

    Hey!

    Thank you for the clarification.

    To completely remove the categories, and not just hide it using css as the theme does by default, we have to modify the includes > loop-index.php file and remove this code around 304:

    
    					if( ! empty( $cats ) )
    					{
    						$cat_output .= '<span class="blog-categories minor-meta">';
    						$cat_output .= $cats;
    						$cat_output .= '</span>';
    						$cats = '';
    					}
    

    .. and line 395:

    if( ! empty( $cats ) )
    					{
    						echo '<span class="blog-categories minor-meta">' . __( 'in','avia_framework' ) . ' ';
    						echo	$cats;
    						echo '</span><span class="text-sep text-sep-cat">/</span>';
    					}
    

    Regards,
    Ismael

    in reply to: Extra picture in catalogue #1262574

    Hi,

    Looks like you chose to use the gallery element instead of the product catalogue. By default, only one image can be added or shown in each catalogue item — and additional product images can be displayed in the actual product page. Please let us know if you need more assistance, or if we should close the thread.

    Thank you for your patience.

    Best regards,
    Ismael

    Hey sfxmedia,

    Thank you for the inquiry.

    In the shortcode_insert_button function of the new element, you have to set the is_fullwidth config or parameter to “yes”.

    // more $this-config here
    $this->config['is_fullwidth'] = 'yes';
    

    The filter avf_fwd_elements is now deprecated.

    Best regards,
    Ismael

    in reply to: Cookie concent Modal window on mobile #1262571

    Hey Fiachra,

    Thank you for the inquiry.

    This is possible but we have to modify the privacy modal or tab shortcode directly in the enfold\includes\helper-privacy.php file around line 1872.

    $sc_content .= "[av_tab_container position='sidebar_tab sidebar_tab_left' boxed='noborder_tabs' initial='1' av_uid='av-jhds1skt']";
    

    To close all tabs initially, we have to set the initial parameter of the av_tab_container shortcode to 0 or remove it completely.

    $sc_content .= "[av_tab_container position='sidebar_tab sidebar_tab_left' boxed='noborder_tabs' av_uid='av-jhds1skt']";
    

    Best regards,
    Ismael

    Hey Carsten!

    Thank you for the inquiry.

    We should be able to use the following css code to adjust the background and font color of the contact form’s response message container.

    .responsive #top .main_color .avia-form-success {
    	background-color: red;
    	color: white !important;
    }
    

    Adjust the color values as you wish, and please toggle the Performance > File Compressions settings afterwards and the remove the browser cache.

    Regards,
    Ismael

    in reply to: Video link button from Full Width Easy Slider not Clickable #1262569

    Hey!

    Thank you for the update.

    The link or button in the slide is not clickable because of the following css code.

    #top .av-video-slide {
    	pointer-events: none;
    }
    

    Please remove the custom css code, or add the following in the Quick CSS field to override it.

    #top .av-video-slide {
    	pointer-events: auto !important;
    }
    

    You may need to toggle or temporarily disable the Performance > File Compression settings afterwards.

    Regards,
    Ismael

    in reply to: Blog post image sizes suddenly all different sizes? #1262568

    Hey Illingco,

    Thank you for the inquiry.

    You should be able to set the thumbnail size in the Styling > Appearance > Preview Image Size settings of the Blog Posts element. It is also recommended to upload images with the same size to maintain the alignment of each item in the grid.

    Best regards,
    Ismael

    in reply to: Blog posts element – same settings, different result #1262566

    Hey Commun-IT,

    Thank you for the inquiry.

    Did you set the Enfold > Blog Layout > Blog Layout settings to the same option for both languages? Also, please try to edit the Blog Posts element in the page and make sure that the Content > Select Entries > Blog Style on both languages are set accordingly.

    Best regards,
    Ismael

    in reply to: parallax problem, picture size on ipad #1262565

    Hey andreas_anselm,

    Thank you for the inquiry.

    Yes, you are right. This is a known issue on iOS devices where fixed backgrounds do not work correctly when the background size property is set to cover.

    iOS has an issue preventing background-attachment: fixed from being used with background-size: cover – see details

    // https://caniuse.com/background-attachment

    To fix the issue, we could set or revert the background-attachment property back to scroll on iOS devices. Please add this css code to do so.

    @media only screen and (max-width: 989px) {
       .avia-full-stretch{
    	background-attachment: scroll !important;
       }
    }
    

    Best regards,
    Ismael

    in reply to: Google Maps doesn't load when clicking on the placeholder #1262564

    Hey FD1981,

    Thank you for the inquiry.

    Where did you add the map element? We could not find it in the home and contact page. It might not be working yet when you click on the black box because you have not accepted the privacy cookies. Does it work correctly after accepting the privacy cookies?

    Best regards,
    Ismael

    Hi,

    We could not reproduce the issue on our own installation, so it is probably an issue with a plugin or a custom script. The demo still contains an older version of the theme, which is probably why it displays the same issue.

    Is there a staging or development version of the site where we could check the issue? We would like to be able to disable the plugins while debugging the site.

    Best regards,
    Ismael

    in reply to: LayerSlider layers trasparent background #1262562

    Hey BNA1956,

    Thank you for the inquiry.

    Have you tried applying a background color directly to the text layer? You should find the option in the layer’s Styles > Background panel.

    Best regards,
    Ismael

    in reply to: Borlabs Cookie Box wird nicht angezeigt #1262559

    Hi,

    Great! Glad that you found the issue. Please do hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: problem with layout – woocommerce check out #1262558

    Hey Munford,

    Thank you for the inquiry.

    It seems to be working properly on our end — it just redirects to the quickpay payment gateway after checking out. How can we reproduce the issue? (see private field)

    Best regards,
    Ismael

    in reply to: Enfold + WooCommerce Rental Products Compatibility Issue #1262270

    Hi,

    Thank you for the info.

    Did you follow their suggestions, or add the css code that they recommended? These changes should allow the date picker to display correctly. Just add it in the Quick CSS field or in the child theme’s style.css file. And do not forget to toggle the Performance > File Compressions settings after adding the modification.

    Best regards,
    Ismael

    in reply to: Horizontal Gallery – Images Loop – Bug Twice Clicks #1262269

    Hi,

    Thank you for the update.

    Did you enable the “active item” indicator, or the zoom effect? It is true that you have to click twice before the slide moves because it has to go through the first and second item first. It looks like nothing is happening during this transition because the indicator for the active item is probably disabled, or because the zoom effect is not enabled. You have to enable the zoom effect, or find a way to add an indicator for the active item using css or a custom script.

    Best regards,
    Ismael

    in reply to: Masonry Element Sizing #1262268

    Hi,

    Have you tried defining the height of the second column manually? Thee difference in height is less than a pixel, so it is probably not noticeable. If it is, you could manually define the height of the second column using css and use css media queries to adjust the height value on different screen sizes.

    Best regards,
    Ismael

    in reply to: Enfold Schema removing Yoast's #1262266

    Hi,

    1.) The hentry markup is a type of schema added as a css class in a container that directs the search engines to the main content of the page, while CreativeWork is a schema that tells the type of the content or page. Please check the documentation for more info.

    // https://schema.org/Thing

    2.) What do you mean by site navigation elements? Did you a full width submenu element to the page?

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

    in reply to: edit portfolio categories default grid #1262265

    Hi,

    Sorry for the confusion. If you could post the WP and FTP details in the private field, we will be happy to do the necessary modifications to the template files. Please post the info in the private field.

    Best regards,
    Ismael

    in reply to: Mobile Menu – Switch with WooCommerce Shopping Cart #1262247

    Hi,

    But if your support asks for a link that is clearly placed in the private content of my first post

    We are very sorry about that. Sometimes, we tend to miss little details like that, maybe due fatigue or being engaged on another topic or thread that we are trying to solve, or both. We also acknowledge that our response time has dip a bit because of the number of inquiries that we have to tackle in the queue, but we always try to provide quality answers and as much as possible tackle every inquiries that comes in our way as long as we can handle it.

    We hope that you will continue using the theme, and that we would be able to help you better in the future in case you have questions regarding the theme. Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Issue with Masonry on mobile #1262245

    Hi,

    Thank you for the update.

    Would you mind posting the htaccess and WP login info in the private field so that we could check the element settings? For some reason, the title and caption container in the masonry items are missing so nothing shows up on hover.

    Best regards,
    Ismael

Viewing 30 posts - 15,211 through 15,240 (of 66,084 total)