Forum Replies Created
-
AuthorPosts
-
Hey!
Thanks for the update.
Use this css code to adjust the container’s position.
#top .template-shop div.product div.summary { position: relative; } #top .onsale { top: 50px; right: auto; left: 200px;; }
Regards,
IsmaelHi,
Thanks for the update.
The header.php file in the child theme folder is outdated. You have to use the latest version of the file, which contains a few lines of code related to the lightbox option.
Best regards,
IsmaelOctober 19, 2018 at 2:11 am in reply to: Option "use as mega menu" and "Column or Rows" no more available #1023716Hi,
Thanks for the update.
I tried to login but the credentials are invalid. Did you happen to install the Popup Maker plugin? That plugin has a minor incompatibility issue with the mega menu because they are using the same editor hook. You have to disable the popup menu editor. More info in the theme docs.
// https://kriesi.at/documentation/enfold/mega-menu/#mega-menu-appears-as-a-normal-menu
Best regards,
IsmaelHi,
Thank you for the update.
1.) This css code should change the background and font color of the grid content.
.grid-entry .main_color .avia-arrow, .main_color .grid-content, .main_color .grid-content h3 { background-color: red; color: blue; }
2.) The sorting items can be targeted using their unique class attribute, which is categoryname_sort_button. Example:
.main_color .altbausanierung_sort_button { background-color: green; padding: 7px 10px; color: red !important; }
That particular css code is going to affect the “Altbausanierung” sort item.
Best regards,
IsmaelHi,
Thank you for the update.
The gallery is set to the smallest thumbnail by default, which is 100x100px. You can use this filter to adjust that size.
add_filter('woocommerce_get_image_size_thumbnail', 'woocommerce_get_image_size_thumbnail_mod', 10, 2); function woocommerce_get_image_size_thumbnail_mod($size) { $size['width'] = 300; $size['height'] = 450; $size['crop'] = 0; return $size; }
// https://themebynumbers.com/2018/04/18/how-to-override-woocommerce-image-sizes/
Best regards,
IsmaelHi,
I don’t really see much difference when I add that css code. :)
Best regards,
IsmaelHi,
the slider width is perfectly fine but the images get cropped a bit cause of the reduced canvas size.
The canvas width is actually wider than the specified value — current size is 1120px. The images have to be resized in order to keep their aspect ratio while maintaining the height of the slider canvas, which is currently set to 440px.
Try to insert the images as layers instead of setting them as slide background. Use images with the same sizes as much as possible.
Best regards,
IsmaelHi,
Thanks for the update. I can’t access the dashboard using the provided login details though. Please check it carefully.
Which of the products are showing twice or duplicated? Please provide the actual url of the shop and the product pages.Best regards,
IsmaelOctober 18, 2018 at 5:46 pm in reply to: Page footer displays different on pages and woocommerce pages #1023517Hi,
Glad that you fixed the issue. I’m not really sure why the style differs from page to page. Is this happening on every page?
Best regards,
IsmaelHi,
Thanks for the update. And sorry for the late response.
This code should move the “sale” container below the product title.
add_action('init', 'ava_move_sale_flash', 10); function ava_move_sale_flash() { remove_action('woocommerce_before_single_product_summary', 'woocommerce_show_product_sale_flash', 10); add_action('woocommerce_single_product_summary', 'woocommerce_show_product_sale_flash', 7); }
Just add it in the functions.php file.
Best regards,
IsmaelOctober 18, 2018 at 5:30 pm in reply to: Parent page link works correct but translation doesn't #1023507Hey (Email address hidden if logged out) ,
Thank you for using Enfold.
Try to update the post meta of the translated pages. This thread might help.
// https://wpml.org/forums/topic/get-translated-post-id/
Get the id of the translated pages based on the original page’s id.
$translated_id = icl_object_id($article->ID, 'portfolio', false,ICL_LANGUAGE_CODE); if( $translated_id ) { update_post_meta($translated_id, 'breadcrumb_parent', 1980); }
`
Best regards,
IsmaelHi,
Thanks for the update.
There are some scripts in the console when I check the layer slider. A plugin conflict may be one of the reasons for this issue.
To find which plugin is causing the conflict please follow these steps:
1. Go to your plugins page > Deactivate all active Plugins
2. Update WordPress and Enfold to the latest version if you have not.
3. Make sure all the plugins are updated.
4. If the problem does not persist when plugins are turned off, activate one plugin at a time and refresh until you find the plugin in conflict.We await the results of your plugin compatibility test.
Thanks for your cooperation :)
Best regards,
IsmaelHi,
Thanks for the update.
Did you translate or duplicate the images? Please refer to the following link for more info.
// https://wpml.org/documentation/getting-started-guide/media-translation/
You may also need to re-select the images in the masonry gallery.
Related thread: https://kriesi.at/support/topic/alb-elements-are-missing-in-translated-pages-wpml/#post-995955
Best regards,
IsmaelHi,
Thank you for using Enfold.
Yes, the default theme product gallery doesn’t have this option. You have to set it to the default WooCommerce gallery to enable the product variation images.
Best regards,
IsmaelHi,
Thanks for the update.
Use this css code to adjust the opacity of the burger overlay container.
.av-burger-overlay { opacity: 0.9 !important; }
Best regards,
IsmaelHi,
Thanks for the update.
Have you tried setting the background repeat option to “Stretch to fit”? That option will force the image to cover the entire container. Some parts of the image may get cut off because it has to maintain the aspect ratio or image size proportion.
Best regards,
IsmaelHey Kinga0001,
Thank you for using Enfold.
Video sliders are disabled on mobile devices by default. You have to add a fall back image in place of those videos. If you can’t see the fall back image, try to upgrade the theme to version 4.5. The latest version contains a bug fix for the sliders.
Best regards,
IsmaelHi,
Thanks for the update.
You can add these css codes to change the default color scheme of the shop section.
#bodysearchengine { background-color: #000000 !important; } #bodysearchengine div, #bodysearchengine p, #bodysearchengine select, #bodysearchengine input { color: #ffffff !important; }
Best regards,
IsmaelHi,
Thanks for the update.
You can set the Enfold > Shop Options > Header Shopping Cart Icon settings to the third option. The cart is going to be attached to the main menu.
Best regards,
IsmaelHi,
The product container is wrapped inside a “small” element or tag. Did you modify the product template? You can use this css code to bring the font size back to normal.
.single-product small { font-size: 100%; }
Best regards,
IsmaelHi,
You can adjust the h2 style in the Enfold > Advanced Styling panel. Make sure that the Performance > File Compression settings are disabled.
Best regards,
IsmaelOctober 18, 2018 at 3:29 pm in reply to: The Language Switcher is Not Displaying on the Search Page #1023390Hey NicomIT,
Thank you for using Enfold.
Did you modify the language switcher? Please post the login details in the private field. We’ll check the settings.
Best regards,
IsmaelHey almondmike_a,
Thank you for using Enfold.
There is an incompatibility issue between the megamenu and the popup maker plugin. A fix is included in the theme docs.
// https://kriesi.at/documentation/enfold/mega-menu/#mega-menu-appears-as-a-normal-menu
Best regards,
IsmaelHey 2SINN,
Thank you for using Enfold.
Is it working properly when you use a youtube or a mp4 video? I checked it on IE and I get an error, which seems to be related to vimeo. I’m not sure what it is though because there is no other info.
Access is denied. File: 166486624, Line: 1, Column: 1
Best regards,
IsmaelOctober 18, 2018 at 12:55 pm in reply to: Pinterest Button Addition to Images on Blog Posts #1023328Hey kesdeg,
Thank you for using Enfold.
Can we access the dashboard? I would like to check the pinterest script.
Where did you get the script? Please provide a reference or the documentation.Best regards,
IsmaelHey kesdeg,
Thank you for using Enfold.
Have you tried using the “Categories” widget from the Appearance > Widgets panel? The widget displays a list of post categories.
Best regards,
IsmaelHey rivandemo,
Thank you for using Enfold.
What is the current size settings? The items may not be sorted based on their slug when the images have different sizes because of how the isotope script calculates the item position. You may need to use a different size settings.
Best regards,
IsmaelOctober 18, 2018 at 12:34 pm in reply to: Fatal error updating theme – Fatal Error: Call to undefined function avia_is_bur #1023317Hi,
The frontend went down after activating the theme. Please disable the plugins and then upgrade the theme to version 4.5 before activating it.
Best regards,
IsmaelHey Rusty,
Thank you for using Enfold.
You can add this css code to change the opacity of the image.
.avia_desktop .av-hover-overlay-active .av-masonry-image-container { opacity: 1; }
And this one to remove the overlay.
#top .av-inner-masonry:hover:before { background: transparent; transition: all .5s cubic-bezier(0.63, 0.7, 0.55, 1.03); }
Best regards,
IsmaelOctober 18, 2018 at 12:06 pm in reply to: Fatal Error with nextgen plus using lightbox pro effect on mobile devices #1023310 -
AuthorPosts