Forum Replies Created

Viewing 30 posts - 22,531 through 22,560 (of 67,491 total)
  • Author
    Posts
  • in reply to: Grid row columns padding on mobile device #1117959

    Hi,

    You should just create a copy of that section, but instead of using the color section or column, apply the image as the grid row element background. You can then toggle the visibility of these elements in the Screens Options panel.

    Best regards,
    Ismael

    in reply to: single item price not showing in cart #1117954

    Hi,

    There are multiple copies of the theme in your server. There’s even a folder called “enfold_child” but it contains all files from the parent theme. Why is that? Please remove the copies and leave the active theme in that folder.

    Best regards,
    Ismael

    in reply to: Private post made public after update #1117759

    Hi,

    I forgot to update the $status variable name. I adjusted the functions.php file already, so you don’t have to edit it. The private “q_a” posts should not be searchable unless a code is used.

    Best regards,
    Ismael

    in reply to: Blog Header images not rendering correctly on mobile #1117757

    Hi,

    Did you toggle the file compression? We can’t reproduce the issue on our installation.

    Best regards,
    Ismael

    in reply to: Masonry Animation on Load #1117755

    Hi,

    You can probably do a search and replace method. The elements are actually just shortcodes inside the post_content and _aviaLayoutBuilderCleanDat custom field, so maybe you can search for the shortcode parameter and then replace it accordingly. But don’t forget to create a backup just in case. You would be searching for this string.

    animation=''
    

    And try to replace it with:

    animation='active'
    

    And maybe a regex so that the search is actually looking for a shortcode, but I didn’t find any plugin or script that can do that.

    // https://www.raymond.cc/blog/easily-edit-multiple-wordpress-posts-with-search-regex/

    Best regards,
    Ismael

    Hi,

    My bad. I didn’t know that you’re using the the_content filter. Please look for this line:

     if( ! $post instanceof WP_Post ) return $content;
    

    And replace it with:

     if( ! $post instanceof WP_Post || is_archive() || is_home() ) return $content;
    

    That should prevent the subscribe form from rendering in the archive and blog pages.

    Best regards,
    Ismael

    in reply to: how to increase thumbnail size image for watchlist #1117752

    Hi,

    I see. That’s the minimum height of the product info container. If you want to adjust it, use this css code.

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

    Default minimum height value is 91px. For additional inquiries, please open a new thread.

    Best regards,
    Ismael

    in reply to: Product slider with add to cart buttons #1117750

    Hi,

    “You need to install and activate the WooCommerce Shop Plugin to display WooCommerce Products”

    That’s because you disabled the WooCommerce plugin. Only disable the plugins that are not related to WooCommerce. And let us know when you’re ready to update the theme.

    Best regards,
    Ismael

    in reply to: Add custom $_POST data into the contact form email #1117749

    Hi,

    Thank you for the update.

    I can now access the site properly. I’m not really sure why I can’t access it yesterday. Anyway, this is what I see on my end.

    
    <p class="first_form  form_element form_fullwidth" id="element_avia_39_1"><label for="avia_39_1">Subject</label> <input name="lol" class="text_input is_empty" id="avia_39_1" type="text"></p>
    
    

    The name attribute is set to “lol” (lol) instead of “avia_39_1” and the whole field or “form_element” is appended inside the checkbox form_element instead of next to it, so it looks like this.

    
    <p class=" first_form  form_element form_fullwidth" id="element_avia_31_1">    <input name="avia_31_1" class="input_checkbox " id="avia_31_1" type="checkbox" value="true"><label class="input_checkbox_label" for="avia_31_1">Faire une autre réservation pour une date supplémentaire ?</label>
    <p class="first_form  form_element form_fullwidth" id="element_avia_39_1"><label for="avia_39_1">Subject</label> <input name="lol" class="text_input is_empty" id="avia_39_1" type="text"></p>
    
    

    It should be like this:

    
    <p class=" first_form  form_element form_fullwidth" id="element_avia_31_1">    <input name="avia_31_1" class="input_checkbox " id="avia_31_1" type="checkbox" value="true"><label class="input_checkbox_label" for="avia_31_1">Faire une autre réservation pour une date supplémentaire ?</label></p>
    <p class="first_form  form_element form_fullwidth" id="element_avia_39_1"><label for="avia_39_1">Subject</label> <input name="avia_39_1" class="text_input is_empty" id="avia_39_1" type="text"></p>
    
    

    This is necessary because the theme validates the fields before sending it.

    Best regards,
    Ismael

    in reply to: Advanced Layout Builder and Popup Maker #1117746

    Hi,

    Thank you for the update.

    We can’t find the content of the advance layout builder anywhere in the page. Unfortunately, we are not sure how the plugin generates its content. Please contact the plugin author for additional help.

    Best regards,
    Ismael

    in reply to: Portfolio Tag on Portfolio Pages with Advanced Layout #1117742

    Hey Diana,

    Thank you for using Enfold.

    Try to remove the “portfolio_entries” taxonomy in this line.

    $the_tags = get_the_tags( $post->ID , 'portfolio_entries');
    

    And in the following line, remove the second parameter $tag->taxonomy.

    $taglink = get_tag_link($tag->tag_id, $tag->taxonomy);
    

    Those functions only accept post and tag id as the parameter.

    // https://codex.wordpress.org/Function_Reference/get_tag_link
    // https://codex.wordpress.org/Function_Reference/get_the_tags

    Best regards,
    Ismael

    in reply to: 90° Image Rotation For Smart Phones #1117739

    Hi,

    We can rotate the image using css transform but the parent container of the image will not automatically adjust to the transformation, which might throw off its size and positioning. I found a workaround, but it’s not going to work with the Image element because the solution requires the image to be wrapped inside two containers.

    // https://stackoverflow.com/questions/16301625/rotated-elements-in-css-that-affect-their-parents-height-correctly

    Best regards,
    Ismael

    in reply to: Variations not changing product picture #1117734

    Hi,

    Sorry for the delay.

    Did you set the Enfold > Shop Options > Product gallery settings to use the “Woocommerce 3.0 Gallery”? This option is working properly on our end.

    Please post the login details in the private field so that we can check the issue.

    Best regards,
    Ismael

    in reply to: Remove Animation from easy slider #1117732

    Hi,

    Thank you for the update.

    We can reproduce the issue but the site doesn’t generate any errors, so we can’t really tell what’s causing it. We also noticed that the site is running on an older version of the theme, v4.5.3. Upgrading the theme to v4.5.7 might help.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Did you enable lazy loading for the images? The data-lazy-src attribute exists in the image, but the value is not being transferred to its src attribute preventing the image from ever displaying. Please disable the lazy loading option temporarily. Let us know if that changes anything.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay.

    We’ll forward the config file to the dev team. Can we have access to the site so that we can do further testing?

    Best regards,
    Ismael

    in reply to: Issues with Style and Script Merging #1117659

    Hi,

    You’ll find the updated files in the private field. This should add a new “Http security level for checking readability of merged files” option in the Performance panel.

    Best regards,
    Ismael

    • This reply was modified 6 years, 8 months ago by Ismael.
    in reply to: Shop Display #1117658

    Hi,

    Sorry for the confusion. You should be able to change the default product item layout in the Enfold > Shop Options panel. Look for the “Product layout on overview pages” settings and set it to the 4th option. That’s the layout used in the demo.

    Thank you for using the theme.

    Best regards,
    Ismael

    in reply to: Change Website Scaling/Dimensions #1117656

    Hi,

    Which elements are you trying to adjust? The Windows 10 scaling settings will not affect the site or how the browser renders it. You have to adjust the website font or elements using css. You can also install a plugin that will allow users to manually adjust the font size.

    // https://wordpress.org/plugins/zoom-widget/

    Best regards,
    Ismael

    in reply to: Header on Mobile #1117655

    Hi,

    Thank you for the update.

    It doesn’t look that blurry on my end. You can get around that by using a larger or sharper image, but I don’t think that’s necessary. The slight blurriness actually makes the content more readable.

    Transparent headers are supposed to be disabled on mobile devices. I can’t find any reason why it’s still working in yours. Please use this css code to move the content below the header container.

    @media only screen and (max-width:767px) {
        .responsive #top #main {
            padding-top: 120px !important;
            margin: 0;
        }
    }
    

    Best regards,
    Ismael

    in reply to: Site not accessible after change in Enfold menu #1117653

    Hi,

    Thank you for the update.

    Did you delete the “wordpress3” directory or installation? It’s no longer accessible.

    404: Page not found
    This error is generated when there was no web page with the name you specified at the web site.
    Troubleshooting suggestions:
    Ensure the page you are linking to exists in the correct folder.
    Check your file name for case sensitivity . Index.htm is not the same as index.htm!
    Temporarily disable any rewrite rules by renaming your .htaccess file if it exists.

    Best regards,
    Ismael

    in reply to: Stacking Image in Grid Row for Mobile #1117652

    Hi,

    Thank you for the update.

    Did you apply 4gitter as a class attribute of the grid row element? Please use this selector instead.

    
    .avia-safari #bild_porfolio .flex_cell 
    

    Best regards,
    Ismael

    in reply to: Visual bugs in Internet Explorer, maybe avia? #1117649

    Hi,

    Thanks for the clarification. We can see that a script is generating an error. Fortunately, we have this error fixed in one of the previous threads.

    Please visit the following thread and follow the instruction to get rid of the error.

    // https://kriesi.at/support/topic/internet-explorer-11-compatability/#post-1109429

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    You can get around that issue by decreasing the size of the logo and adjusting the padding between the language switcher.

    @media only screen and (max-width:767px) {
        .responsive .logo img {
            max-height: 40px !important;
        }
    
       .responsive #top #header_main > .container .main_menu .av-main-nav > li > a {
           padding: 0 0 0 13px;
       }
    }

    Let us know if that helps.

    Best regards,
    Ismael

    in reply to: search results sorted by post type #1117647

    Hi,

    The AJAX search is inside the functions-enfold.php file. You’ll find the post type sorting around line 282.
    It basically loops through every posts and regroup them based on post types in an array called $sorted.

    Best regards,
    Ismael

    in reply to: Menu Problem #1117645

    Hi,

    Awesome! Glad that you were able to find an alternative. We’ll close the thread now, but please don’t hesitate to open another if you need anything else.

    Have a nice day!

    Best regards,
    Ismael

    in reply to: Error manually link #1117644

    Hi,

    Thank you for the update.

    We don’t seem to be getting any errors when we click any of the “Register Now” buttons. The programs are properly added to the cart as shown in the screenshot.

    // https://imgur.com/a/PKd091b

    What is actual error that you see on your end?

    Best regards,
    Ismael

    in reply to: Private post made public after update #1117642

    Hi,

    Thank you for the update.

    That made it a bit complicated. Please remove the “avf_ajax_search_query_mod” function and the corresponding hook above and then replace the previous “avf_search_by_posts_code_callback” function with the following snippet.

    add_filter('avf_ajax_search_function', 'avf_search_by_posts_code_callback', 10, 4);
    function avf_search_by_posts_code_callback($name, $search_query, $search_parameters, $defaults)
    {   
        return 'avf_search_by_posts_code';
    }
    
    function avf_search_by_posts_code( $search_query, $search_parameters, $defaults ) {    
    	if( strlen( $_REQUEST['s'] ) == 6 && is_numeric( $_REQUEST['s'] ) ) {  
    		$search_meta = array(
    			'meta_query' => array(
    			'relation' => 'AND',
    			array(
    				'key' => 'code',
    				'value' => $_REQUEST['s'],
    				'compare' => '='
    			),
    
    			array(
    				'key' => 'status',
    				'value' => 'private',
    				'compare' => '='
    			)
    			)
    		);
    
    		$search_parameters['numberposts'] = 1;
    		$search_parameters['post_type'] = 'q_a';
    		$search_parameters = array_merge( $search_parameters, $search_meta );
    
    		unset($search_parameters['s']); // remove search query
    
    		$private = get_posts( $search_parameters );
    
    		return $private;
    	} else {
    		$posts = get_posts( $search_parameters );
    
    		$public = [];
    
    		foreach($posts as $post) {
    			//$status = get_post_meta($post->ID, 'status', true);
    			$status = get_field('status', $post->ID);
    			if( $status != 'private' ) {
    				$public[] = $post;
    			}
    		} 
    
    		return $public;
    	}
    }
    

    Best regards,
    Ismael

    in reply to: Farbsektion Anzeigefehler unter IE11 #1117641

    Hi,

    Glad that you found the cause of the issue.

    The script modification in the following thread is not directly related to the color section, but the error that the fix was intended to might be affecting the height calculation.

    // https://kriesi.at/support/topic/internet-explorer-11-compatability/#post-1109429

    Let us know if that helps. Thank you for using Enfold.

    Best regards,
    Ismael

    in reply to: Advanced Layout Builder lädt nicht #1117639

    Hi,

    Where did you add the iframe? All we can see above is the theme shortcodes, no iframes.

    Have you tried to add the iframe inside a code block?

    Best regards,
    Ismael

Viewing 30 posts - 22,531 through 22,560 (of 67,491 total)