Forum Replies Created

Viewing 30 posts - 26,311 through 26,340 (of 67,534 total)
  • Author
    Posts
  • in reply to: Default Template Settings Missing from Event Calendar Pro #1027878

    Hi,

    Look for this line:

    remove_action('tribe_events_template', 'avia_events_tempalte_paths', 10, 2);
    

    Replace it with:

    remove_action('tribe_events_template', 'avia_events_template_paths', 10, 2);
    

    Best regards,
    Ismael

    in reply to: Parent page link works correct but translation doesn't #1027877

    Hi,

    Yes, that is it. Is it working?

    Best regards,
    Ismael

    in reply to: Embed mailchimp code for popup signup form #1027876

    Hi,

    Alright. Glad that you found a workaround. :)

    Best regards,
    Ismael

    Hi,

    Yes, I found a thread with the same issue today. You can use that css code for now.

    // https://kriesi.at/support/topic/bild-leicht-vergrosern-und-bild-mit-link-fubktioniert-in-version-4-5-nicht-mehr/#post-1027840

    Best regards,
    Ismael

    in reply to: Mobile breaking point for grids #1027873

    Hi,

    I don’t think you can add css in the editor unless it’s wrapped inside a < style > tag.

    
    <style>
    // style here
    </style>
    

    Best regards,
    Ismael

    Hi,

    You can move that code in the includes > loop-index.php file where the post elements reside, right about line 262 where the title is.

    echo $title;
    

    – And could you please give me a hint, how to make a shortcode out of it please?

    The shortcode:

    add_shortcode('avs_toc', 'avs_toc_function');
    function avs_toc_function() {
        $args = array (
            'name' => 'Displayed Everywhere',
            'id' => 'av_everywhere',
            'description' => '',
            'class' => '',
            'before_widget' => '<section id="avia_auto_toc-2" class="widget clearfix avia_auto_toc">',
            'after_widget' => '<span class="seperator extralight-border"></span></section>',
            'before_title' => '',
            'after_title' => '',
            'widget_id' => 'avia_auto_toc_custom',
            'widget_name' => 'Enfold Child Table of Contents',
            );
    
        $instance = array (
            'title' => 'Toc',
            'exclude' => '',
            'style' => '',
            'level' => 'h1',
            'single_only' => 1,
            'indent' => 1,
            'smoothscroll' => 1,
            );
    
        $toc = new avia_auto_toc;
    	return $toc->widget($args, $instance);
    }
    

    You can then use this code to render the toc in the template file:

    
    echo do_shortcode('[avs_toc]');
    

    Or use it directly in the editor.

    Best regards,
    Ismael

    in reply to: Search error #1027867

    Hi,

    Unfortunately, this is still not working. After logging in, I get to a blank page with the text “error”.

    What did u do?? Pure magic!!! :-)

    Yeah.. It’s pure magic! I didn’t do anything. :D

    Best regards,
    Ismael

    in reply to: avf_form_send and fatal error #1027864

    Hi,

    Great! Not really sure how that modification fixed it but I’m glad it did.
    Have a nice day. :)

    Best regards,
    Ismael

    Hi,

    The old theme doesn’t have a google services field and the scripts are very different. You need to upgrade to the latest version.

    Best regards,
    Ismael

    in reply to: Multiple Enfold purchases and Token doesn't seem to work #1027859

    Hi,

    Have you tried using the same token for every site that you owned? You may need to wait for a few minutes or hours before you can use a newly generated token.

    Best regards,
    Ismael

    in reply to: Minification Enfold 4.5 #1027857

    Hi,

    You can try this filter in the functions.php file but I’m not sure if this is going to work because it’s not working on my installation. It’s supposed to include every scripts and stylesheets in the compression but I don’t see the distinction between the “all” value and the default “avia-module” when I review the compression script.

    add_filter('avf_merge_assets', function() {
        return array('css' => 'all', 'js' => 'all');
    });
    

    Please post the FTP details in the private field.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    In the latest version, you’ll find that same code in the config-templatebuilder > aviashortcodes > portfolio > portfolio.js file.

    Best regards,
    Ismael

    Hey formwild,

    Thank you for using Enfold.

    1.) I can’t see anything unusual with the image background on mobile view. Can you give us a screenshot?

    2.) You can use this css code to redisplay the scroll to top button on mobile view.

    @media only screen and (max-width: 767px) {
    .responsive #scroll-top-link {
        display: noneblock
    }
    }

    Best regards,
    Ismael

    in reply to: Menu alignment #1027843

    Hi,

    Thanks for the update.

    This css code should help.

    #menu-item-1622 {
        min-width: 190px;
    }
    

    Best regards,
    Ismael

    in reply to: Show contact form after submitting #1027842

    Hey SoWeAre,

    Thank you for using Enfold.

    You can set the contact form to redirect on the same page instead of displaying a message.

    Best regards,
    Ismael

    Hey frasche,

    Thank you for using Enfold.

    1.) The css styles for the hover effect must have been deleted. You can add this css code for now until this is fixed.

    .avia_image {
        -webkit-transition: all 0.7s;
        transition: all 0.7s;
    }
    
    .av-hover-grow:hover img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    2.) I can’t reproduce that issue on my end. Can you give us a link to a test page?

    Best regards,
    Ismael

    in reply to: Google Maps in Tab2 #1027836

    Hi,

    That is actually the theme’s map shortcode. If you want to shorten it, you can create your own custom shortcode.

    // https://codex.wordpress.org/Shortcode_API

    
    function my_own_map_shortcode_func( $atts ){
    	return "theme map shortcode here";
    }
    add_shortcode( 'my_own_map_shortcode', 'my_own_map_shortcode_func' );
    

    Shortcode:

    
    [my_own_map_shortcode]
    

    Best regards,
    Ismael

    in reply to: Make the text in the Layer Slider responsive #1027835

    Hi,

    Sorry for the late response.

    The layer slider is hidden on smaller screens when I checked the site.
    Have you tried adding a unique class attribute to the heading layers? You can then use that selector inside a css media query to adjust the font size on mobile devices.

    Example:

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .layer-custom-css-class {
         font-size: 16px;
      }
    }

    Adjust the “layer-custom-css-class” selector with yours.

    Best regards,
    Ismael

    in reply to: Isuue with veiwing the Enfold theme on Mobile Devices #1027833

    Hi,

    Did you reset the site? It’s using a demo style.

    Best regards,
    Ismael

    Hi,

    Sorry for the late response.

    Have you tried using css media queries to adjust the height of the gallery on different screen sizes?

    @media only screen and (min-width: 768px) {
      /* Add your Desktop Styles here */
    #top div .avia-gallery .avia-gallery-big-no-crop-thumb {
       height: 200px !important;
    }
    }
    
    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
    #top div .avia-gallery .avia-gallery-big-no-crop-thumb {
       height: 150px !important;
    }
    }

    Best regards,
    Ismael

    in reply to: a few issue with enfold visual artist template #1027829

    Hi,

    Fixed or parallax background are actually disabled on mobile devices by default because of the lack browser support for “fixed” positioned elements or backgrounds.

    // https://caniuse.com/#search=fixed

    iOS has an issue preventing background-attachment: fixed from being used with background-size: cover – see details
    Firefox does not appear to support the local value when applied on a textarea element.
    Chrome has an issue that occurs when using the will-change property on a selector which also has background-attachment: fixed defined. It causes the image to get cut off and gain whitespace around it.

    You may need to implement this fix: https://kriesi.at/support/topic/playing-with-new-demos/#post-871865

    Best regards,
    Ismael

    in reply to: Enfold 4.5 – Easy Slider bug #1027828

    Hi,

    Sorry about that. I can’t reproduce the issue on my own installation. Can we access the site? Please post the login details in the private field.

    Best regards,
    Ismael

    Hey Gitte,

    Thank you for using Enfold.

    You can try this css code to make the editor icons display without hovering the elements.

    add_action( 'admin_head', 'ava_alb_display_icons' );
    function ava_alb_display_icons() {
    	echo '<style>.avia_sortable_element .avia_sorthandle, .avia_sorthandle .avia-edit-element, .avia-save-element, .avia-delete, .avia_sorthandle .avia-clone  {opacity: 1 !important; } .avia_sortable_element { margin-top: 25px; } </style>';
    }
    

    Best regards,
    Ismael

    in reply to: Fullwidth is NOT fullwidth #1027819

    Hi,

    I would like to apologize for the late response. Not sure how I missed your thread.

    Did you switch to the default editor? It’s not full width because the advance layout builder doesn’t seem to be activated.

    Best regards,
    Ismael

    in reply to: change woocommerce button text "select options" #1027817

    Hi,

    Thanks for the update.

    Use the following plugin to translate the string or text of the product select field.

    // https://wordpress.org/plugins/say-what/

    I can’t see the page, so I’m not really sure if that’s what you’re referring to.

    Best regards,
    Ismael

    in reply to: PageSpeed Insight #1027811

    Hi,

    Thank you for using Enfold.


    @charlotteraboff
    : Try to enable the theme’s Performance > File Compression settings or activate any resource minification plugin.


    @jakobl1976
    : Please open a new thread with the site url and the login credentials.

    Best regards,
    Ismael

    in reply to: problem with tab #1027810

    Hey weasyweb2015,

    Thank you for using Enfold.

    There should be a minimum width applied to the “.av-tab-section-tab-title-container” container but since the “nl meals” are hidden initially, the minimum width value is being set to 0. You can fix this with css:

    .av-tab-section-tab-title-container {
        min-width: 1024px !important;
    }
    

    However, doing so will require a lot of css media queries. Another workaround is to calculate the overall width of the tab title containers and then apply the result as the minimum width of the “.av-tab-section-tab-title-container” on resize.

    Best regards,
    Ismael

    in reply to: tab section and load more #1027808

    Hi,

    I think this is already fixed on version 4.5. Please upgrade the theme manually.

    Change log:

    - fixed: an issue with portfolio javascript breaking on complex ALB pages
    

    Best regards,
    Ismael

    in reply to: Calendar Pro | single-event.php #1027807

    Hi,

    Try to use the strip_tags function.

    // http://php.net/manual/en/function.strip-tags.php

    
    return strip_tags ( $new_title );
    

    Best regards,
    Ismael

    in reply to: product grid and product slider ignore taxonomy selection #1027806

    Hi,

    The following code in the functions.php file alters the product slider query.

    add_action( 'pre_get_posts', 'hidden_search_query_fix' );
    function hidden_search_query_fix( $query = false ) {
    	if ( ! is_admin() && isset( $query->query['post_type'] ) && $query->query['post_type'] === 'product' ) {
    		$tax_query = $query->get( 'tax_query' );
    		$tax_query = array();
    		$tax_query[] = [
    			'relation' => 'OR',
    			[
    				'taxonomy' => 'product_visibility',
    				'field'    => 'name',
    				'terms'    => 'exclude-from-catalog',
    				'operator' => 'NOT IN',
    			],
    			[
    				'taxonomy' => 'product_visibility',
    				'field'    => 'name',
    				'terms'    => 'exclude-from-catalog',
    				'operator' => '!=',
    			],
    		];
    		$query->set( 'tax_query', $tax_query );
    	}
    }

    The product slider works properly when it’s disabled.

    Best regards,
    Ismael

Viewing 30 posts - 26,311 through 26,340 (of 67,534 total)