Forum Replies Created

Viewing 30 posts - 22,261 through 22,290 (of 66,745 total)
  • Author
    Posts
  • in reply to: Product Images not Appearing on Safari #1107592

    Hi,

    Thank you for the update.

    You can try this css code.

    .avia-safari #top .template-shop .images a img {
        opacity: 1 !important;
    }

    We just added the !important rule to override the inline style. Please don’t forget to toggle the Performance > File Compression settings after adding the code.

    Best regards,
    Ismael

    in reply to: Indexing problem 404 Error #1107456

    Hi,

    Thank you for the update.

    Did you set the non-existing or 404 pages to redirect to your home page? Please try to unset that option as @cg recommended. It’s the Theme Options > Custom Error 404 Page settings.

    Best regards,
    Ismael

    in reply to: Enfold – Woocommerce #1107450

    Hi,

    Thanks for the update.

    You can change the default product image size in the Appearance > Customize > Woocommerce panel. Look for the Product Images > Thumbnail width field. The default thumbnail size is set to 300px.

    Best regards,
    Ismael

    in reply to: Problema. POST filter catagory #1107441

    Hi,

    Thank you for the update.

    Do you want to display the posts from the sub category? You shouldn’t select the parent category Event then.

    Best regards,
    Ismael

    Hi,

    Alright. Please continue in the next thread. Have a nice day.

    Best regards,
    Ismael

    Hi,

    We would like to apologize for the late response.

    This is probably an issue with another plugin, which is using the the “handler_display_post_states” improperly. The following thread should help.

    // https://kriesi.at/support/topic/error-enfold-with-plugin-salon-booking-wordpress-plugin/#post-1066225

    Best regards,
    Ismael

    in reply to: auction plugin compatibility with Enfold #1107431

    Hi!

    Thank you for the update.

    We put the following css code in the Quick CSS field.

    #top .woocommerce-ordering {
        position: absolute;
        right: 0;
        margin: 0;
        z-index: 20;
        top: 0;
        margin-top: 0;
        width: 25%;
        width: 200px;
        left: auto;
    }
    
    #top.woocommerce-page .woocommerce-ordering select {
        width: 100%;
    }

    Adjust the position value as you wish.

    Best regards,
    Ismael

    in reply to: Slight delay in slider image loading #1107367

    Hi,

    Awesome! Glad to hear that it’s now loading faster. You should consider optimizing the site even more when you have the time.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow

    I’ll keep checking periodically to see if it happens again. Any thoughts on why the mobile Load More button wasn’t working today, or is that a question for a new thread?

    Yes, please open a new thread for that issue if it happens again. We’ll close this thread now.

    Best regards,
    Ismael

    in reply to: Cant change widgets or menu #1107364

    Hi,

    Thank you for the info.

    We deactivate the debug mode for now to hide the error. You should forward that to the plugin developers because that could cause errors or affect other functionality in non-obvious ways. Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Google-Map-Problem: Too many requests at once… #1107362

    Hi,

    Glad it’s fixed.

    The google cloud documentation should give you more idea how billing account works.

    // https://cloud.google.com/billing/docs/how-to/view-linked

    Best regards,
    Ismael

    in reply to: Event Tracking Social Media Links #1107361

    Hi,

    Sorry for the confusion.

    You can try this script in the functions.php file to trigger the corresponding gtag function when one of the social icons is clicked.

    add_action('wp_footer', 'ava_social_gtag');
    function ava_social_gtag(){
    ?>
    <script type="text/javascript">
        (function($) {  
            $('.social_bookmarks_facebook a').on('click', function() {
                gtag('event', 'Click', { 'event_category': 'Facebook' })
            });
    
            $('.social_bookmarks_mail a').on('click', function() {
                gtag('event', 'Click', { 'event_category': 'Mail' })
            });
    
            $('.social_bookmarks_tel a').on('click', function() {
                gtag('event', 'Click', { 'event_category': 'Telephone' })
            });
        })(jQuery);
    </script>
    <?php
    }

    Best regards,
    Ismael

    in reply to: French Translation #1107359

    Hi,

    Which text are you trying to translate? Can you give us a link to the actual pages where the text are?

    You can use the following plugin to translate the strings or text manually if they are not translated, yet.

    // https://wordpress.org/plugins/loco-translate/

    Please note that we only rely on other users to translate the theme to their own languages for obvious reasons, so there are translations that are partially incomplete.

    Best regards,
    Ismael

    in reply to: auction plugin compatibility with Enfold #1107358

    Hi,

    Thank you for the update.

    We can’t find the “auction” page, unfortunately. Did you add it in the home page? Please add the actual url to the page or provide a screenshot of the section.

    Best regards,
    Ismael

    Hi,

    The navigation will not display when there is a full width element in the page. You have to use this filter to re-enable it.

    add_filter('avf_post_nav_settings','avf_post_nav_settings_mod', 10, 1);
    function avf_post_nav_settings_mod($settings){
    	$settings['is_fullwidth'] = false;
    	return $settings;
    }

    Add it in the functions.php file. If you want to display posts from the same category, use this instead.

    add_filter('avf_post_nav_settings','avf_post_nav_settings_mod', 10, 1);
    function avf_post_nav_settings_mod($settings){
    	$settings['same_category'] = true;
    	$settings['is_fullwidth'] = false;
    	return $settings;
    }
    

    Best regards,
    Ismael

    in reply to: Volle Breite Untermenü | submenu #1107340

    Hi,

    The sticky option of the fullwidth sub menu will be disabled when the hamburger menu is active. That is the default behavior set in the config-templabuilder > aviashortcodes > menu > menu.js file.

    /**
    * If we have burger menu active we ignore sticking submenus
    */
    if( burger_menu.is(":visible") )
    {
       this.css({top: 'auto', position: 'absolute'}); fixed = false;
       return;
    }

    Best regards,
    Ismael

    in reply to: Display problems on sharing links on pages #1107339

    Hi,

    There are templates that have “Featured pages” (attached photo, private content). You can extract the (partial) content of a page on another page.

    That may be possible with the Page Content element, but you have to use the ALB for the page with the “Featured Pages” content. That element will display the content of the selected page.

    Have we corrected the iframe issue? Please open a new thread for additional inquiries.

    Best regards,
    Ismael

    in reply to: Backend Template Not saving #1107183

    Hi,

    Thank you for the update.

    The following markup breaks the template.

    <strong>Crown Prince Walkingstick</strong>< font size="3"> <!--- this is invalid
    <font size="3"><font color="#939598">Calligraphy and Special Requests
    12 October 2018</font>
    

    You forgot to close the font tag. Please rectify it by adding a closing tag.

    Best regards,
    Ismael

    in reply to: Nested shortcodes – no content shown #1107180

    Hi,

    Thank you for the update.

    Have you tried doing it using the layer slider? You can add the shortcodes inside a layer. Unfortunately, adding the page content element inside a slider is not possible at the moment. That feature will require modifications that are beyond the scope of support. You may need to hire a freelance developer or contact our partner, Codeable, for customization.

    // https://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: Content box moved up on the home page #1107148

    Hey Joe,

    Thank you for using Enfold.

    Use this css code to pull the column or box upward.

    #av_section_1 .flex_column.av_three_fifth.av-animated-generic.fade-in.flex_column_div.avia-link-column.av-column-link.avia-link-column-hover.avia-builder-el-2.el_after_av_one_fifth.el_before_av_one_fifth.avia_start_animation.avia_start_delayed_animation {
        top: -200px;
    }

    Please turn on the Custom CSS Class field so that you can apply a more specific css selector.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#turn-on-custom-css-class-field-for-all-alb-elements

    Best regards,
    Ismael

    in reply to: change flags to letters in language switch WPML #1107145

    Hi,

    Thank you for the update.

    The css code is in the English > General Styling > Quick CSS field. You have to move it to the Italian > General Styling > Quick CSS field or in the child theme’s style.css file. Please don’t forget to purge the cache after moving the code.

    Best regards,
    Ismael

    in reply to: Internet Explorer 11 compatability #1107138

    Hey Gudi,

    Thank you for using Enfold.

    We found the following error in one of the scripts.

    Object doesn't support property or method 'includes'
    

    The function is not supported by or compatible with IE.

    // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes#Browser_compatibility

    Please edit the js > shortcodes.js file, look for this code around line 501:

    // -------------------------------------------------------------------------------------------
    // Section Height Helper
    // -------------------------------------------------------------------------------------------
    

    Above that code, add this polyfill for the function.

    // https://tc39.github.io/ecma262/#sec-array.prototype.includes
    if (!Array.prototype.includes) {
    	Object.defineProperty(Array.prototype, 'includes', {
    	  value: function(valueToFind, fromIndex) {
    
    		if (this == null) {
    		  throw new TypeError('"this" is null or not defined');
    		}
    
    		// 1. Let O be ? ToObject(this value).
    		var o = Object(this);
    
    		// 2. Let len be ? ToLength(? Get(O, "length")).
    		var len = o.length >>> 0;
    
    		// 3. If len is 0, return false.
    		if (len === 0) {
    		  return false;
    		}
    
    		// 4. Let n be ? ToInteger(fromIndex).
    		//    (If fromIndex is undefined, this step produces the value 0.)
    		var n = fromIndex | 0;
    
    		// 5. If n ≥ 0, then
    		//  a. Let k be n.
    		// 6. Else n < 0,
    		//  a. Let k be len + n.
    		//  b. If k < 0, let k be 0.
    		var k = Math.max(n >= 0 ? n : len - Math.abs(n), 0);
    
    		function sameValueZero(x, y) {
    		  return x === y || (typeof x === 'number' && typeof y === 'number' && isNaN(x) && isNaN(y));
    		}
    
    		// 7. Repeat, while k < len
    		while (k < len) {
    		  // a. Let elementK be the result of ? Get(O, ! ToString(k)).
    		  // b. If SameValueZero(valueToFind, elementK) is true, return true.
    		  if (sameValueZero(o[k], valueToFind)) {
    			return true;
    		  }
    		  // c. Increase k by 1. 
    		  k++;
    		}
    
    		// 8. Return false
    		return false;
    	  }
    	});
      }

    https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/includes#Polyfill

    Best regards,
    Ismael

    in reply to: Cant change widgets or menu #1107129

    Hi,

    Thank you for the info.

    The error is gone after we removed the footer widgets. Did you add any custom scripts in the text or html widgets?

    We also found the following error from the kk Star Cheater plugin.

    call_user_func_array() expects parameter 1 to be a valid callback, non-static method Anderson_Makiyama_KK_Star_Cheater::js() should not be called statically in /www/htdocs/w0152455/megaklick-marketing.de/wp-includes/class-wp-hook.php on line 286
    

    What is that plugin for?

    Best regards,
    Ismael

    in reply to: Reduce padding between images #1107064

    Hi,

    Please continue on that thread. We’ll close this one now. Thanks for the update.

    Best regards,
    Ismael

    in reply to: WooCommerce products slider minimum height #1107063

    Hey Pas7o,

    Thank you for using Enfold.

    As much as possible, make sure that the size of the product images are the same. You can then set the minimum height of the product title container using the following css code. Just add it in the Quick CSS field.

    #top .inner_product_header {
        min-height: 132px;
    }

    You can do the same for the product button container.

    .avia_cart_buttons.single_button {
        min-height: 58px;
    }

    Best regards,
    Ismael

    in reply to: Progress Bar mobile view #1107062

    Hey transformmedia,

    Thank you for using Enfold.

    Have you tried setting the columns to break on tablet view or when the screen width is equal to or less than 989px? That should create more space for the progress bar. Edit the first column column in the row where the progress bar is located, go to the Screen Options and set the “Fullwidth Break Point” settings to the second option.

    Best regards,
    Ismael

    in reply to: Error message for embedded MP4 video #1107047

    Hi,

    Cool. Glad we could help. Please feel free to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: EDIT link for ALB pages? #1107045

    Hi,

    Thank you for the update.

    You should reverse the $content and the “page-edit” markup in the following line if you want to move the link before the content.

    $content = $content . '<p class="page-edit"><a href="' . get_edit_post_link( get_the_ID(), 'Edit this page') . '">Edit this page</a></p>';
    

    .. should be:

    $content = '<p class="page-edit"><a href="' . get_edit_post_link( get_the_ID(), 'Edit this page') . '">Edit this page</a></p>' . $content;
    

    Best regards,
    Ismael

    in reply to: Change in page since installing 4.5.7 #1107038

    Hi,

    Thank you for the suggestion. We added a note in that thread. Please feel to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Activating Advanced editor in custom post type #1107033

    Hi!

    NOTE: Starting on version 4.3, the “avf_builder_boxes” has to be replaced with the “avf_alb_supported_post_types” filter in order to register your custom post types and enable the advance layout builder. More info in the documentation.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#alb-for-any-post-type

    Best regards,
    Ismael

    in reply to: Optimizing images: Should I use more than 1 version? #1107025

    Hi,

    Thank you for the update.

    In the same aviashortcodes directory, look for the edit the av-helper-slideshow.php file. Replace the content of that file with this code.

    // https://pastebin.com/eqV7LGEa

    Best regards,
    Ismael

Viewing 30 posts - 22,261 through 22,290 (of 66,745 total)