Forum Replies Created
-
AuthorPosts
-
January 28, 2017 at 6:57 am in reply to: Swap Background Image on Fullscreen Slider on Mobile #739688
Hi!
Did you adjust the url? Please provide a link to the actual page with the slider. Or try this:
@media only screen and (max-width: 767px) { .herom > ul > li:first-child { background-image: url(https://domainhere.com/wp-content/uploads/2015/02/vanish-bg3.jpg) !important; } }Change this url “http://domainhere.com”.
Cheers!
IsmaelHi!
I don’t see the login details anywhere. Please add it again in the private field. If the site was hacked, you should probably contact your hosting provider. Is there a previous installation or site in the domain?
Best regards,
IsmaelJanuary 28, 2017 at 6:41 am in reply to: Flexible Masonry Gallery: problem with the order of images #739685Hey!
Indeed the images are different in size but of a similar proportion, is that what causes the error?
Yes, probably. The isotope script miscalculates the position of the items somehow. Unfortunately, we don’t know of any fix for this yet. Please try to use images with the same size and proportion.
Cheers!
IsmaelHey!
Looks like you managed to fix this up. Did you limit the columns to only 4?
Cheers!
IsmaelHey peernet!
Thank you for using Enfold.
In the code block element, you can enable the “Escape HTML Code” option to display the actual xml codes. Unfortunately, the display or appearance is quite bland. Or you can create another shortcode.
function xml_shortcode( $atts, $content ) { $filter = array('<br>','<br />'); $content = str_replace($filter, '', $content); return "<code><pre>" . esc_html($content) . "</pre></code>"; } add_shortcode( 'avaxml', 'xml_shortcode' );In a code block, you can use this for example:
[avaxml] <?xml version="1.0" encoding="UTF-8"?> <note> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body> </note> [/avaxml]Regards,
IsmaelJanuary 28, 2017 at 5:39 am in reply to: Woocommerce Text Below the Product overwie (Categroy) #739678Hi!
Thank you for using Enfold.
You can do the suggestions there but it’s a bit complicated. Another workaround is to move the category description below the product loop.
add_action('woocommerce_before_shop_loop', 'woocommerce_before_shop_loop_mod'); function woocommerce_before_shop_loop_mod() { remove_action( 'woocommerce_before_shop_loop', 'woocommerce_taxonomy_archive_description', 11 ); } add_action( 'woocommerce_after_shop_loop', 'woocommerce_taxonomy_archive_description', 10 );Cheers!
IsmaelHey hannerinc!
Thank you for using Enfold.
Please replace the css code with this.
#top .flex_column.arrow-container { position: relative; background: #d50d0d; border: 4px solid #d50d0d; z-index: 9999; } #top .flex_column:before { display: none; } #top .flex_column.arrow-container:before { right: auto; top: 50%; content: "" !important; height: 0; width: 0; position: absolute; display: block !important; border-style: solid; border-width: 12.5px 20px 12.5px 0; border-color: transparent #d50d0d transparent transparent; left: -20px; visibility: visible !important; margin-top: -12.5px; }Cheers!
IsmaelHi!
Alright. Please adjust the code a bit.
.avia-msie .avia_mega_div .sub-menu li img { max-width: 210px; height: 165px !important; width: 210px; }The “avia-msie” class attribute will only exist on IE browsers.
Regards,
IsmaelHey Webbmekanikern!
Thank you for using Enfold.
Some of the grid row and section elements are outside the main container which breaks the responsive layout of the page. Please make sure that all elements or set of elements, specially the separators, are inside their own color sections.
Cheers!
IsmaelJanuary 28, 2017 at 4:52 am in reply to: Main menu going over Logo and Cart Icon Going behind Hamburger icon #739670Hi ChichesterDesign!
Thank you for using Enfold.
Please try to decrease the font size and the padding of the menu items for smaller screens.
@media only screen and (max-width: 1200px) and (min-width: 768px) { .responsive .main_menu ul:first-child > li > a { padding: 0 10px; font-size: 12px; } .responsive #top .cart_dropdown { position: absolute; right: 7.5%; } .responsive .main_menu { position: static; } }The css code above will also adjust the position of the cart icon.
Regards,
IsmaelHi!
The post meta info will display if you set the element’s Title and Excerpt settings to “Title and Excerpt + Read More Link”.
Regards,
IsmaelHi lech07!
Thank you for using Enfold.
1.) Are you resizing the browser in order to reproduce the issue? Please note that this video will be disabled on an actual mobile device. Did you modify the js > shorcodes.js file? Please look for the thread here.
// https://kriesi.at/support/profile/lech07/topics/
2.) Did you enable the color section’s Section Background > “Hide video on Mobile Devices?” option?
Best regards,
IsmaelHi alonarad!
Thank you for using Enfold.
1.) Please refer to the following link.
// https://kriesi.at/support/topic/rtl-portfolio-grid-2/#post-714685
2.) Could you please provide a link to the page? And a screenshot of the layout that you want.
Cheers!
IsmaelHey margiela!
Thank you for using Enfold.
1.) Are you using the Woocommerce plugin? Please try to create a variable product.
// https://docs.woocommerce.com/document/variable-product/
2.) You will need a “booking” plugin or extension.
// https://wordpress.org/plugins/woocommerce-easy-booking-system/
// https://woocommerce.com/products/woocommerce-bookings/Best regards,
IsmaelHi!
I’m sorry but I don’t understand the language. Is that the SKU field? If it is, please add this snippet in the functions.php file:
add_filter( 'woocommerce_cart_item_name', 'woocommerce_cart_item_name_sku_in_cart', 20, 3); function woocommerce_cart_item_name_sku_in_cart( $title, $cart_item, $cart_item_key ) { $sku = $cart_item['data']->get_sku(); return $sku ? $title . sprintf(" (SKU: %s)", $sku) : $title; }You might need to remove all items in the cart, refresh the page then add them again.
Cheers!
IsmaelHi!
Thank you for the update. We modified the index.php file and changed this code:
if(!empty($blogpage_id) && get_post_meta($blogpage_id, 'header', true) != 'no') { echo avia_title(array('heading'=>'strong', 'title' => $title, 'link' => $t_link, 'subtitle' => $t_sub)); }to:
echo avia_title(array('heading'=>'strong', 'title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));The title container is displaying now even if you don’t set the front and blog page in the theme options.
Cheers!
IsmaelHey!
Thank you for the update. I checked the pages above and I can’t find the vimeo link, the other “test” page does not exist. Anyway, when I added a video element, it’s not working but I can’t see any errors. Have you tried doing this without any plugins activated?
Best regards,
IsmaelHi!
That’s unfortunate. Anyway, I checked the theme options again and the code modification that we suggested previously should fix the issue. Did you remove the browser cache or re-minify the stylesheets after editing the enfold-child/css/admin-rtl.css file? Please try this one.
.rtl #avia_options_page .avia_sidebar_active .avia_options_page_content { float: none !important; }Best regards,
IsmaelHi!
Could you please provide a link to the site with the issue? There’s a lot of websites listed in this thread and we’re not sure what to check.
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. Thank you for your understanding.
Regards,
IsmaelHey ksk_schwalm_eder!
Thank you for using Enfold.
I think you should add the function inside an onclick attribute.
<a href="#" onclick="gaOptout()">Disable Google Analytics</a>Or try this:
<a href="javascript:gaOptout()">Disable Google Analytics</a>The login credentials are not working.
Cheers!
IsmaelJanuary 26, 2017 at 11:05 am in reply to: Firefox Crash (memory issue) when embedding local video into Avia text block #738832Hi lssu!
Thank you for using Enfold.
The login credentials are not working. Please check it. What do you mean by “Firefox Memory”? Is this the memory consumption in the Resource Monitor? What is the actual specs of your computer?
Best regards,
IsmaelHi Moonbeam!
Thank you for using Enfold.
It should be located in the WooCommerce > Settings > Checkout > Paypal panel. Look for the “Enable PayPal sandbox” option.
Regards,
IsmaelHey!
The “Money Prodigy” prodigy list contains a “number” field. This field is not supported by the Mailchimp Signup element. Please replace it with a text or a dropdown field. You should see this note in the Mailchimp Signup element.
Please note: This element currently only supports basic list subscription with basic form fields (text and dropdowns). Please let us know if you would like to see more advanced features.
Cheers!
IsmaelHi!
I used your API key on my local installation and it successfully loaded the list including the “accurIT Presence – Internal” and the “Newsletter” list. However, I’m not sure why it’s not working in your installation because there are no errors or any notifications. It seems to be related with ssl. Is it ok if we deactivate the plugins while we test this? Please post the FTP in the private field as well.
Best regards,
IsmaelHey!
Is there a way to incorporate the logo in the left side of the Fullwidth Submenu?
Please follow this thread.
// https://kriesi.at/support/topic/link-background-image-logo-in-full-width-sub-menu/#post-737590
Best regards,
IsmaelJanuary 26, 2017 at 10:27 am in reply to: format issue with the calendar function in the "contact form" #738820Hey michaelwalch!
Thank you for using Enfold.
What is this css modification for?
td { font-size: 13px !important; padding: 18px 16px !important; }It breaks the date picker.
Regards,
IsmaelHi Munford!
Thank you for using Enfold.
Why is the width set to 1px?
th.avia-desc-col { width: 1px; } th.avia-desc-col { width: 1px; }Please add this in the Quick CSS field.
@media only screen and (max-width: 767px) { .responsive .avia_scrollable_table .avia-data-table > thead > tr > th, .responsive .avia_scrollable_table .avia-data-table > tbody > tr > th, .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > th, .responsive .avia_scrollable_table .avia-data-table > thead > tr > td, .responsive .avia_scrollable_table .avia-data-table > tbody > tr > td, .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > td { white-space: normal !important; } .responsive .avia_scrollable_table { width: 100%; overflow-x: hidden; overflow-y: hidden; } .avia_scrollable_table .avia-table { width: auto; } }Best regards,
IsmaelHey!
Add a custom css class attribute to the columns then declare the background-image property plus the !important rule in the Quick CSS field.
@media only screen and (max-width: 989px) { .boot-box { background-image: url(IMAGE URL HERE) !important; } }This will override the inline styling.
Best regards,
IsmaelJanuary 26, 2017 at 10:12 am in reply to: Image Lightbox is not working when image is within a Grid Row #738808Hi!
This is still not working. Please activate the account.
ERROR: User has not been activated.
I created the same setup on my installation and the lightbox is working.
Cheers!
Ismael -
AuthorPosts
