Forum Replies Created

Viewing 30 posts - 23,041 through 23,070 (of 67,510 total)
  • Author
    Posts
  • 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

    in reply to: Theme not working with php 7.0 #1107015

    Hi,

    Thank you for the update.

    There is a copy of the functions-enfold.php file in the root directly. Did you put it there? We renamed the file to disable it.

    Best regards,
    Ismael

    in reply to: ajax search not working #1107011

    Hey!

    Is this fixed? The search results are displaying the related posts, which is what you wanted.

    Best regards,
    Ismael

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

    Hi,

    Thank you for the update.

    Did you impose a daily request limit on the API? This is the current error in the console, which is related to the request quota or your billing account.

    You have exceeded your request quota for this API. See https://developers.google.com/maps/documentation/javascript/error-messages?utm_source=maps_js&utm_medium=degraded&utm_campaign=billing#api-key-and-billing-errors
    _.Jc @ js?v=3.35&callback=aviaOnGoogleMapsLoaded:54

    And please check if the Geocoding API is enabled.

    // https://kriesi.at/documentation/enfold/google-map/#enable-services-for-google-api

    Best regards,
    Ismael

    in reply to: Fixed Frame > Content alignment in the tab section #1106995

    Hi,

    I would like to apologize for the confusion. The container seems to be off by 50px. Please try this css code.

    .av-framed-box .av-layout-tab-inner .container {
        max-width: 1310px;
        left: -50px;
    }

    Best regards,
    Ismael

    in reply to: how can i fix this error in w3c validation? #1106990

    Hi,

    Thank you for using Enfold.

    We don’t see any errors when we ran the html validator. Are they fixed?

    Best regards,
    Ismael

    in reply to: French Translation #1106589

    Hi,

    Thank you for the update.

    Yes, that is true but you need to install WordPress in your own language. Did you do that?

    // https://wordpress.org/support/article/installing-wordpress-in-your-language/

    Are you planning to create a multi-lingual site? If you are, then you will need the plugins that were mentioned above.

    Best regards,
    Ismael

    in reply to: IMAGES NOT MOBILE FRIENDLY – Please help #1106587

    Hi,

    Thank you for the update.

    It may not be what you’re expecting, but that is how the cell’s background image is supposed to resize on mobile view. One workaround is to hide those particular grid cells on mobile view and replace them with a different element. You can use the elements’ Screen Options panel to toggle their visibility for different screen sizes.

    Or use this css code to adjust the position of the image inside the background positioning area.

    @media only screen and (max-width: 767px) {
    #hello .flex_cell.no_margin.av_one_half.avia-builder-el-12.el_after_av_cell_one_half.avia-builder-el-last.avia-full-stretch.av-zero-padding {
        background-position: 70% 0 !important;
    }
    }

    You may need to apply a Custom CSS Class to that particular element and use that instead of the default css selector above.

    // 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: Cant change widgets or menu #1106584

    Hi!

    Thank you for the update.

    We are now able to access the file server. However, the previous WP login credentials are no longer valid. Please add it in the private field so that we can toggle the widgets and debug the issue properly.

    Cheers!
    Ismael

    in reply to: How to add categories to ALB pages without plugin? #1106583

    Hey Gitte,

    Thank you for using Enfold.

    The pages post type doesn’t support the category taxonomy by default. You have to configure that manually with a filter or you can install a plugin.

    // https://www.wpbeginner.com/plugins/how-to-add-categories-and-tags-for-wordpress-pages/

    Best regards,
    Ismael

    in reply to: ajax search not working #1106581

    Hi,

    Thanks for the update.

    It works the same for the live site. (see private field)

    Did you rebuild the posts index?

    // https://searchwp.com/docs/kb/rebuild-index/

    Best regards,
    Ismael

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

    Hi,

    Thank you for the update.

    Did you include the dev site as one of the http referrers?

    // https://www.wpgmaps.com/documentation/ensuring-your-referrers-are-properly-inserted/

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

    Hi,

    Thank you for the update.

    Try to adjust the masonry container width a bit.

    .av-masonry-container {
        width: 100.5%;
    }

    Add the code in the Quick CSS field. Please don’t forget to toggle the Performance > File Compression settings if they are enabled.

    Best regards,
    Ismael

    in reply to: Enfold, WooCommerce Related products column number #1106573

    Hi,

    Try to set the “orderby” parameter to “meta_value_num” and the “meta_key” to “_price”. Example:

    add_filter('woocommerce_output_related_products_args', 'avf_woocommerce_output_related_products_args_mod', 10, 1);
    function avf_woocommerce_output_related_products_args_mod($args) {
        $args['orderby'] = 'meta_value_num';
        $args['order'] = 'asc';
        $args['meta_key'] = '_price';
    
        return $args;
    }

    Best regards,
    Ismael

    in reply to: Grid layout for magazine element #1106572

    Hi,

    Thank you for the info.

    You can create that layout using 2 Blog Posts element. Display a single post in the first grid and 4 posts in the second one. You can then use 1/2 column elements to separate the grid.

    Best regards,
    Ismael

    in reply to: Adding categories to the product sorting #1106570

    Hey PIW,

    Thank you for using Enfold.

    That feature is not available in the theme by default, so you may need to find another plugin for it. Anyway, the Perfect WooCommerce Brands plugin has a filter widget. Did you try that? You have to add it to the base or default shop page because it’s not compatible with the theme’s Product Grid element.

    Best regards,
    Ismael

Viewing 30 posts - 23,041 through 23,070 (of 67,510 total)