Forum Replies Created

Viewing 30 posts - 19,081 through 19,110 (of 66,702 total)
  • Author
    Posts
  • in reply to: gridrow horizontal margin #1172615

    Hi,

    Thank you for the update.

    The alignment of the cells look alright. Are you trying to center align the second cell? If so, try to add another cell, then put the second 1/2 column inside it.

    Best regards,
    Ismael

    in reply to: remove margin from clumn content #1172614

    Hi,

    Thank you for the update.

    The container of the color section where the column is located should be full width so that the content touches the edge of the screen. Please check this documentation on how the container width can be adjusted.

    // https://kriesi.at/documentation/enfold/color-section/#color-section-with-100-content-width

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    According to the article, the tool may take up some resources from the CPU causing high system load in your machine, which may in turn interfere with other applications including the browser itself and cause the whole system to slow down.

    It may cause a high system load when it scans the system. User reports range from it using 30% and more CPU while running. Since it may run for as long as 20 minutes, that is something that may interfere with other activity on the computer.

    Did you try this on another machine without a Chrome browser?

    Best regards,
    Ismael

    in reply to: How to change breakpoint on table? #1172612

    Hi,

    Thank you for following up.

    The Maximum Container width is currently set to 100%, which is why the site is wide or full width. Try to set it to 1310px.

    Best regards,
    Ismael

    in reply to: Instagram widget won't update #1172611

    Hi,

    The patch should be available in the upcoming days, but there is no exact date yet. The dev team is just polishing some things up. Unfortunately, the new Instagram API is still not available in this patch, so you might have to use a third party plugin temporarily as suggested previously.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Google Maps API Error message #1172610

    Hey AWZ,

    Thank you for the inquiry.

    Can you give us a link to a site showing the issue? We may be able to find the actual cause of the issue from the browser console. Please post the link in the private field.

    Best regards,
    Ismael

    in reply to: Use gif as preloader image #1172055

    Hi,

    Thank you for the update.

    We enabled the Lightbox Modal Window option from the Theme Options panel to turn on the popup or lightbox. Please remove the browser cache prior to checking the page.

    Best regards,
    Ismael

    in reply to: Next page start on top #1172054

    Hi,

    Thank you for the info.

    Do you want the window to scroll back to the top after navigating to the next or previous page? If that’s what you’re after, please try this snippet in the functions.php file.

    function ava_custom_script_mod(){
    ?>
    <script>
    (function($){
       $('.pagination a').attr('href', function() {
           return this.href + '#top';
       });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_mod');
    

    Best regards,
    Ismael

    in reply to: DSGVO-pop-up German and Englisch is mixed up #1172052

    Hi,

    Thank you for the update.

    The translations for the default privacy texts are going to be included in the upcoming version of the theme. For now, you can use the beta version and update the language files if you want to get it fixed immediately and not wait for the patch. Please check the private field for the beta version and the language files.

    Best regards,
    Ismael

    in reply to: How to change breakpoint on table? #1172051

    Hi,

    The css media query lacks a closing curly brace, so it breaks the succeeding styles including the fonts. We added the closing brackets to correct the issue.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Big preview image won't resize #1172050

    Hey tekniskakari,

    Thank you for the inquiry.

    Did you adjust the size of the entry_without_sidebar thumbnail after installing the Simple Image Sizes plugin? You should also regenerate the thumbnails or upload the image again after the adjustment. Let us know if that helps.

    Best regards,
    Ismael

    in reply to: How to replace rather than add to enfold sidebar? #1172049

    Hi,

    Did you create a child theme? This documentation should help you how to properly activate a child theme when using Enfold.

    // https://kriesi.at/documentation/enfold/child-theme/

    And try to enable the debug mode so that we can see the actual error.

    // https://wordpress.org/support/article/debugging-in-wordpress/#example-wp-config-php-for-debugging

    Set the WP_DEBUG_DISPLAY to true and the display_errors from 0 to 1.

    Best regards,
    Ismael

    in reply to: SKU field missing under Product Data #1171706

    Hi,

    Thank you for the update.

    There are a bunch of parent Enfold theme with the same version in your installation, so we are not really sure which one to edit. Please remove the other copies of the theme that are not in use.

    For the meantime, try to edit the enfold\config-woocommerce\admin-options.php file and remove these filters.

    add_filter('woocommerce_general_settings','avia_woocommerce_general_settings_filter');
    add_filter('woocommerce_page_settings','avia_woocommerce_general_settings_filter');
    add_filter('woocommerce_catalog_settings','avia_woocommerce_general_settings_filter');
    add_filter('woocommerce_inventory_settings','avia_woocommerce_general_settings_filter');
    add_filter('woocommerce_shipping_settings','avia_woocommerce_general_settings_filter');
    add_filter('woocommerce_tax_settings','avia_woocommerce_general_settings_filter');
    add_filter('woocommerce_product_settings','avia_woocommerce_general_settings_filter');
    

    Let us know if it changes anything.

    Best regards,
    Ismael

    in reply to: Confusing sorting options in WooCommerce and Enfold #1171705

    Hey Technohead,

    Thank you for using Enfold.

    Looks like some of the text in the select or sort option don’t have any translations yet. Please install the following plugin and try to translate the strings or text manually.

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

    Best regards,
    Ismael

    in reply to: Cookie Consent and Google Recaptcha #1171704

    Hi,


    @ideeu
    : Did you set the Enfold > Privacy & Cookies > Default Cookie Behavior settings to the first option? That option will allow the spam protection to work automatically on page load. Unfortunately, it is the only way to keep the spam protection working even without user consent unless you’re fine editing the theme files manually.

    Best regards,
    Ismael

    in reply to: How to change breakpoint on table? #1171697

    Hi,

    Thank you for the info.

    We modified the code in the Quick CSS field a bit and disabled the Performance > File Compression settings temporarily. The table is now responding properly when the screen width is equal or less than 1600px. Please don’t forget to remove the browser cache before checking the page.

    Best regards,
    Ismael

    in reply to: Enfold Preloader #1171695

    Hi,

    @Cloudpro: This is possible, but you have to override the whole avia_preload_screen function in the child theme’s functions.php file, then add a certain conditional function to it — most likely is_product. The said function is located in the functions-enfold.php file around line 13. You can add the condition before returning the output. Example:

    if(!is_product()) $output = '';
    

    or..

    if(!is_product()) return;
    

    Best regards,
    Ismael

    in reply to: Extension or pluggin to write a blog with enfold them #1171694

    Hey OSLO2019,

    Thank you for the inquiry.

    There are posts elements in the builder such as the Blog Posts, Masonry or Magazine elements that can be used to display articles or posts in certain pages. Is that what you need? What do you mean exactly by “modul”?

    Best regards,
    Ismael

    in reply to: LayerSlider WP #1171693

    Hey brunet77,

    Thank you for the inquiry.

    You can set the mobile visibility of the layer slider in the Slider Settings > Mobile panel. Enable the Hide on mobile option and if you want you can also choose to hide the slider based on the current width of the view port.

    Best regards,
    Ismael

    in reply to: question #1171692

    Hey farkas alpar,

    Thank you for your interests in the theme.

    The theme has its own template builder and advance theme options, so you don’t have to look for a different plugin or extension to build the site/s pages.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We modified the code a bit. Please try this one.

    
    
    function avia_change_default_link($loop, $entries)
    {	
    	
    	$opties = get_field('opties', $loop['ID']);
    
    	if($opties) {
    		foreach( $opties as $optie ) {
    			$waarde .= "<li>".$optie."</li>";
    		}
    			
    		$more =  "<div class='beschrijf' itemprop='text'><ul>".$waarde."</ul></div><div class='masonry-more-link-arrow vdwerfknopgrid'><span>ONTDEK</span></div>";
    		$loop['content'] =   avia_backend_truncate($entry->post_content, apply_filters( 'avf_masonry_excerpt_length' , 60) , apply_filters( 'avf_masonry_excerpt_delimiter' , " "), "…", true, '') . $more;
    	}
    	
        return $loop;
    }
    add_filter('avf_masonry_loop_prepare','avia_change_default_link', 10, 2);

    Best regards,
    Ismael

    Hi,

    The dynamic stylesheet is successfully generated but it is being saved in a different directory outside the actual installation.

    /home/domains/vol1/786/2712786/user/htdocs/wp-content/uploads/dynamic_avia
    

    Please make sure that the uploads directory actually points to the folder where the installation is deployed.

    // https://codex.wordpress.org/Plugin_API/Filter_Reference/upload_dir

    Best regards,
    Ismael

    in reply to: Date Meta Data Missing on Blog Post element #1171687

    Hi,

    In a grid layout, the title date will only display when an excerpt i

    Sorry about that. I meant the date or the post meta info will only display when there’s an excerpt. The modification above should change that behavior — allowing the post meta info to display even without the excerpt.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Modifications to Post Slider #1171686

    Hi,

    Thank you for the update.

    1.) Are you using the advance layout builder for your posts? No excerpt will be generated automatically if that’s the case, so you may still have to define the excerpts of the posts manually and adjust the length prior.

    Best regards,
    Ismael

    in reply to: Custom blog shortcode broken #1171685

    Hey Jeannette,

    Thank you for the inquiry.

    The filter provided in the following thread should help.

    // https://kriesi.at/support/topic/trouble-with-the_content-and-advanced-layout-editor/#post-1119884

    This will allow execution of shortcodes that are not directly added in the advance layout builder.

    Best regards,
    Ismael

    in reply to: Enfold and WPML Language mix since WPML 4.3.5 #1171683

    Hi,

    Thank you for the clarification.

    Are you sure that this is the only filter that manipulates the price markup? You might have missed other functions or filters in your plugin.

    We are not really sure if this is going to help, but it’s worth a try. Try to replace line 1961..

    sprintf('%s%s', $prefix, $price);
    

    .. with:

    
      __('From', 'obfv') . ' ' . $price;
    

    You should be able to delete the $prefix variable in the top line. Let’s see if removing the sprintf function will help.

    Best regards,
    Ismael

    in reply to: Enfold and Hustle Pro Plugin #1171681

    Hi,

    Thank you for the update.

    The link is no longer accessible.

    Tunnel 9acdc448.ngrok.io not found

    We usually reply to a thread the next day or within 24 hours. Can you extend the expiry of the link to at least 24 hours so that we still have the chance to check it until tomorrow?

    Again, additional assistance from the plugins developers will help.

    Best regards,
    Ismael

    in reply to: Google reporting /?s= pages in GSC #1171680

    Hi,

    Google will reprocess your whole site or the pages that you’ve asked them to re-crawl, so if they find that the pages with the search query is no longer accessible, then it will be reflected in your search console. Make sure to validate the fix that you have done as described in the documentation. Previously, there is a button that allows to manually mark these errors or warnings as fix, if you already implemented a solution for those errors, but this button is no longer available.

    However, if you really want to add or set the noindex meta tag when the search query is present, try this filter in the functions.php file instead.

    add_filter('avf_set_follow','av_set_nofollow');
    function av_set_nofollow(){
    	if ((is_single() || is_page() || is_home() ) && ( !is_paged() || !$_GET['s'] ))
    		{
    			$meta = '<meta name="robots" content="index, follow" />' . "\n";
    		}
    		else if( is_search() || $_GET['s'] )
    		{
    			$meta = '<meta name="robots" content="noindex, nofollow" />' . "\n";
    		}
    		else
    		{
    			$meta = '<meta name="robots" content="noindex, follow" />' . "\n";
    		}
    	return $meta;
    }

    You may still need to ask Google to re-crawl your site in order for the changes to reflect, or wait for quite a while for them to automatically index your site.

    Best regards,
    Ismael

    Hi,

    Thank you for following up.

    We don’t really see the alignment issue on mobile view. We are not able to check it on an actual iPhone X, but the alignment issue should still be visible in a device emulation. Could you give us a screenshot of the error? You can upload the screenshot to imgur or dropbox.

    Unfortunately, we are not familiar with the WooCommerce Conditional Content block, so additional assistance from the plugin developers will help. Please try to ask them about the issue.

    Best regards,
    Ismael

    in reply to: Plugin to share articles #1171677

    Hi,

    Thank you for the update.

    Is there any good way or plugin to share articles with just a picture with text on top?
    I want to share relevant articles, but not as articles at my page. I

    Are you requesting for another kind of modification? We asked because your recent reply doesn’t seem to be related to your original inquiry. Do you need further assistance with your original inquiry?

    Best regards,
    Ismael

Viewing 30 posts - 19,081 through 19,110 (of 66,702 total)