Forum Replies Created
-
AuthorPosts
-
Hey!
The other solution is to create multiple versions of the images but it’s a bit inconvenient as we mentioned in our previous post. You can also set the background size property to “contain” but it will create gaps or spaces if the container is not equal to the background image.
#av_product_description .av-parallax-inner { background-size: contain; }The current height of the container is 263px but the background image is a bit too small (300x45px) so it will create a lot of spaces.
// https://profumidambiente.it/wp-content/uploads/2016/12/shopbanner1-300×45.png
Regards,
IsmaelDecember 16, 2016 at 5:52 am in reply to: hentry errors in google search console while using masonry gallery #725166Hey HannaVogt!
Thank you for using Enfold.
This is a related thread.
// https://kriesi.at/support/topic/masonry-gallery-hentry/#post-675196
A workaround can be found here.
// https://kriesi.at/support/topic/masonry-gallery-hentry/#post-678564
Best regards,
IsmaelHey!
Yes, it’s possible. Please adjust the code a bit.
add_filter('avf_parallax_speed','avia_change_parallax_ratio', 10, 2); function avia_change_parallax_ratio($ratio, $id){ if($id != 'av_section_4') return; $ratio = "0.3"; return $ratio; }Cheers!
IsmaelHey!
I use /wp-content/themes/feentueren/woocommerce/order/order-details.php and /wp-content/themes/feentueren/woocommerce/order/order-details.php
Please check the instructions carefully. You need to edit two template files. One is the “order-details.php file and the other is the “order-details-item.php” file. And don’t forget to remove the browser cache or hard refresh before checking the page.
Regards,
IsmaelDecember 16, 2016 at 5:37 am in reply to: Using Lato cursive font forces Lato normal to be cursive. #725156Hi Doubledog!
Thank you for using Enfold.
Yes, you can use that filter to add more options for the “Lato” font. The filter looks good. Let us know if it’s not working.
Regards,
IsmaelHi!
Thank you for using Enfold.
Adjust the bottom position of the parallax container.
@media only screen and (max-width: 1024px) { .av-parallax-inner { bottom: -50px; left: 0; } }Cheers!
IsmaelHi luis!
Thank you for using Enfold.
Are you referring to the “This is FS Parker.” section? You can set the caption or title to display on load.
@media only screen and (max-width: 1024px) { .avia_desktop.avia_transform3d .av-caption-on-hover.av-caption-style- .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content, .avia_desktop.avia_transform3d .av-caption-on-hover-hide.av-caption-style- .av-masonry-entry.av-masonry-item-with-image:hover .av-inner-masonry-content { -webkit-transform: rotateX(0deg); transform: rotateX(0deg); opacity: 1; } }P.S: Site looks awesome. Good job! :)
Regards,
IsmaelHi!
Adjust the css code that @yigit provided above.
.av-main-nav ul { width: 150px; }Cheers!
IsmaelHi!
Please add this css code to remove the border below the top bar.
#top .av_header_transparency #header_meta { border-bottom: 0; }Best regards,
IsmaelHey!
That is the default behaviour of the parent menu when you hide the sub menu items. You can find a solution or workaround in the previous thread.
// https://kriesi.at/support/topic/mobile-menu-links/#post-637296
The script will create a “go to page” link beside the parent menu item. Another workaround is to create a duplicate of the parent page.
Regards,
IsmaelHi!
Please add this css code.
#header_meta .container, #header_meta { min-height: 0; height: 0; }I tried to access the private page but the password is not working.
Best regards,
IsmaelHi!
I’m glad that you found a workaround. Please open a new thread if you encounter any issues again. Thank you!
Regards,
IsmaelHi,
I’m sorry but I’m not really sure. One workaround is to save the content as template and then delete the page. Create another then apply the saved template.
Best regards,
IsmaelHi,
Thank you for the update. Please modify the templates > order > order-details.php and the order-details-item.php file. In the order-details.php file, look for this code:
<th class="product-name"><?php _e( 'Product', 'woocommerce' ); ?></th> <th class="product-total"><?php _e( 'Total', 'woocommerce' ); ?></th>Above, those lines, add this one:
<th class="product-thumb"><?php _e( 'Image', 'woocommerce' ); ?></th>Edit the order-details-item.php, look for this code:
<tr class="<?php echo esc_attr( apply_filters( 'woocommerce_order_item_class', 'order_item', $item, $order ) ); ?>">Below, add the image markup:
<td class="product-thumb"> <?php $thumb = get_the_post_thumbnail_url($item['product_id'], 'shop_catalog'); ?> <?php if(!empty($thumb)) { echo "<img src='{$thumb}' width='80px' height='100px'/>"; } ?></td>Best regards,
IsmaelHey LbCCbeA_89,
Thank you for using Enfold.
Please decrease the height of the logo on tablet view. This will, in turn, decrease the height of the header.
@media only screen and (min-width: 768px) and (max-width: 1024px) { #top #header_main > .container, #top #header_main > .container .logo a img { height: 80px !important; line-height: 80px !important; } }Best regards,
IsmaelDecember 14, 2016 at 6:37 am in reply to: Error if you choose shop page woocommerce at home page #724123Hey Octopus4444,
Thank you for the info.
This will break the single product breadcrumbs. Please try this instead.
$front = avia_get_option('frontpage'); $shop = get_option( 'woocommerce_shop_page_id' ); if($front == $shop && is_front_page()) { $key_trail = array_keys($trail); $home = $key_trail[0]; } else { $home = $trail[0]; }Best regards,
IsmaelHi,
I’m not sure how the “non-breaking space” character fixed it but adding a normal “space” should not create a second line. Anyway, thanks for sharing.
Best regards,
IsmaelDecember 14, 2016 at 6:17 am in reply to: BUG – Grid Row and Column when choosing Equal Height #724112Hi,
// https://kriesi.at/support/topic/how-to-lower-section-on-mobile/#post-724105
I haven’t work that much with rtl sites but, if I am not mistaken, you should treat the editor as if you’re working in an LTR site. The RTL styles will only be applied in the frontend.
Best regards,
IsmaelHi!
We removed this code from the functions.php file.
add_shortcode('avia_search', 'get_search_form'); function add_custom_tooltip(){ ?> <script> jQuery(window).load(function(){ jQuery('.only-mobile-menu-search a').removeAttr('href'); }); </script> <?php } add_action('wp_footer', 'add_custom_tooltip');Regarding the search query, please refer our answer in this thread.
Cheers!
IsmaelDecember 14, 2016 at 6:13 am in reply to: Widget product search only in the product title not all the texts #724107Hi,
Thank you for the info.
Looks like you can restrict the search query. Please refer to the following links.
// https://nathaningram.com/restricting-wordpress-search-to-titles-only/
// http://stackoverflow.com/questions/9468804/make-wordpress-search-only-in-post-titleBest regards,
IsmaelHi,
I haven’t work that much with rtl sites but, if I am not mistaken, you should treat the editor as if you’re working in an LTR site. The RTL styles will only be applied in the frontend.
Best regards,
IsmaelHey bjornwallman,
Thank you for using Enfold
The display property of the overlay is set to “none” in the style.css file.
.image-overlay-inside, .image-overlay { display: none !important; }P.S: Awesome work! thumbsup
Best regards,
IsmaelHi,
Add a custom css class attribute to the pictures, use “pic1”, “pic2” and “pic3” respectively then use this script in the functions.php file.
function add_custom_script(){ ?> <script type="text/javascript"> (function($){ function a() { function a() { $('.pic1').click(function() { $('.avia-slideshow-dots a:nth-child(1)').trigger('click'); }); $('.pic2').click(function() { $('.avia-slideshow-dots a:nth-child(2)').trigger('click'); }) $('.pic3').click(function() { $('.avia-slideshow-dots a:nth-child(3)').trigger('click'); }) } a(); } a(); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_script');This script will trigger the click event for the slider dots.
Best regards,
IsmaelHi,
Edit the functions.php file in the child theme then look for the is_checkout function. It is a function from WooCommerce so it will stop working if you deactivate the plugin.
Best regards,
IsmaelHi,
banner is out of focus and it shows only a center part of it
This is an issue with the “cover” value because it stretches the image and in order to keep its aspect ratio, the edges of the image will overflow outside the container. We can set the value to 100% but it will probably distort the image.
#av_product_description .av-parallax-inner { background-size: 100% 100%; }Best regards,
IsmaelDecember 14, 2016 at 5:37 am in reply to: Advanced Layout Builder on custom post doesn't open by default #724092Hi,
Please provide the login details here so that we can check it. Is this happening on every posts?
Best regards,
IsmaelDecember 14, 2016 at 5:36 am in reply to: My custom categories do not link to their full posts #724089Hi,
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,
IsmaelHi!
My bad. I forgot to remove the “.av-masonry-item-loaded” selector in the css declaration above. This selector is added to the masonry items, one at a time, so it creates a “delay” effect. Please try the code again.
.av-masonry-entry { opacity: 1 !important; visibility: visible !important; } .avia_sortable_active .isotope { -webkit-transition: none; transition: none; }Cheers!
Ismael -
AuthorPosts
