Forum Replies Created

Viewing 30 posts - 37,381 through 37,410 (of 66,745 total)
  • Author
    Posts
  • 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!
    Ismael

    in reply to: enfold not loading at all #739687

    Hi!

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

    in reply to: Flexible Masonry Gallery: problem with the order of images #739685

    Hey!

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

    in reply to: Column Content Alignment #739682

    Hey!

    Looks like you managed to fix this up. Did you limit the columns to only 4?

    Cheers!
    Ismael

    in reply to: Need a RAW CodeBlock visual element #739681

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

    in reply to: Woocommerce Text Below the Product overwie (Categroy) #739678

    Hi!

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

    in reply to: Small arrow right side #739676

    Hey 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!
    Ismael

    in reply to: Mega menu problem in IE 11 #739675

    Hi!

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

    in reply to: Grid Rows aren't responsive #739671

    Hey 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!
    Ismael

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

    in reply to: Post slider layout #739669

    Hi!

    The post meta info will display if you set the element’s Title and Excerpt settings to “Title and Excerpt + Read More Link”.

    Regards,
    Ismael

    in reply to: Video or picture not correct in slide #739668

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

    in reply to: Portfolio Grid #739667

    Hi 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!
    Ismael

    in reply to: enfold- hotel demo #739666

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

    in reply to: Woocommerce Artikelnummer #739229

    Hi!

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

    in reply to: Title_container missing in news overview page #739216

    Hi!

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

    in reply to: Vimeo video not showing – only link #739204

    Hey!

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

    in reply to: display bug in the admin since upgrading to 3.8 #739198

    Hi!

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

    in reply to: Soporte #739194

    Hi!

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

    in reply to: Google Analytics Opt-Out Link funktioniert nicht #738833

    Hey 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!
    Ismael

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

    in reply to: changing toggle from sandbox to paypal live #738830

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

    in reply to: Email Subscription boxes not working #738827

    Hey!

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

    in reply to: Mailchimp Integration Stopped Working Again #738825

    Hi!

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

    in reply to: Section before menu #738821

    Hey!

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

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

    in reply to: mobile tables width / adjustment off #738815

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

    in reply to: mobile version edit column elements #738810

    Hey!

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

    Hi!

    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

    in reply to: Theme is showing errors during upload #738807

    Hi!

    Thank you for using Enfold.

    Did you duplicate the sliders? Please delete the ones that you’re not using and set the layers’ transition values. Right now, the transition fields are empty.

    Regards,
    Ismael

Viewing 30 posts - 37,381 through 37,410 (of 66,745 total)