Forum Replies Created

Viewing 30 posts - 19,651 through 19,680 (of 67,469 total)
  • Author
    Posts
  • Hi,

    Thank you for the update.

    Let us know once the site is live so that we can check the navigation. We’ll keep the thread open.

    Best regards,
    Ismael

    in reply to: Edit screen_options_visibility #1177568

    Hi,

    I didn’t notice that you added a new option in the element visibility options. If you want to override the default options, look for the screen_options_toggle template inside the popup_elements function. This part:

    array(	
    								'type'			=> 'template',
    								'template_id'	=> 'screen_options_toggle'
    							),
    

    Replace it with:

    array(	
    								'type'			=> 'template',
    								'template_id'	=> $this->popup_key( 'screen_options_toggle' )
    							),
    

    Now, in the register_dynamic_templates function, add the new options like so:

    			$c = array(		
    				array(
    						'type' 				=> 'heading',
    						'name'              => __( 'Element Visibility', 'avia_framework' ),
    						'desc'              => __( 'Set the visibility for this element, based on the device screensize.', 'avia_framework' ),
    				),
    
    array(	
    									'desc'              => __( 'Hide on very large screens (wider than 1280px - eg: Large Desktop)', 'avia_framework' ),
    									'id'                => 'av-desktopl-hide',
    									'std'               => '',
    									'container_class'   => 'av-multi-checkbox',
    									'type'              => 'checkbox'
    								),
    
    				array(	
    						'desc'              => __( 'Hide on large screens (wider than 990px - eg: Desktop)', 'avia_framework' ),
    						'id'                => 'av-desktop-hide',
    						'std'               => '',
    						'container_class'   => 'av-multi-checkbox',
    						'type'              => 'checkbox'
    					),
    
    				array(	
    
    						'desc'              => __( 'Hide on medium sized screens (between 768px and 989px - eg: Tablet Landscape)', 'avia_framework' ),
    						'id'                => 'av-medium-hide',
    						'std'               => '',
    						'container_class'   => 'av-multi-checkbox',
    						'type'              => 'checkbox'
    					),
    
    				array(	
    
    						'desc'              => __( 'Hide on small screens (between 480px and 767px - eg: Tablet Portrait)', 'avia_framework' ),
    						'id'                => 'av-small-hide',
    						'std'               => '',
    						'container_class'   => 'av-multi-checkbox',
    						'type'              => 'checkbox'
    					),
    
    				array(	
    
    						'desc'              => __( 'Hide on very small screens (smaller than 479px - eg: Smartphone Portrait)', 'avia_framework' ),
    						'id'                => 'av-mini-hide',
    						'std'               => '',
    						'container_class'   => 'av-multi-checkbox',
    						'type'              => 'checkbox'
    					),
    			);
    
    			$template = array(
    				array(
    					'type'          => 'template',
    					'template_id'	=> 'toggle',
    					'title'			=> __( 'Responsive', 'avia_framework' ),
    					'content'		=> $c,
    					'nodescription'	=> true
    				)
    			);
    
    			AviaPopupTemplates()->register_dynamic_template( $this->popup_key( 'screen_options_toggle' ), $template );
    

    Best regards,
    Ismael

    in reply to: Advanced Layout Editor and Post Content Shortcodes #1177545

    Hey Masonry_Fiend,

    Thank you for the inquiry.

    Is post-content a custom shortcode that you created? Please provide a link to the test page so that we can check the issue. Access to the site will help as well.

    Best regards,
    Ismael

    in reply to: Layerslider for entire site #1177500

    Hi,

    The site loads fine on our end — no animations or excessive delay. Did you figure out how to disable the animation? If not, try to set the Opening Transition duration of the layers to 1ms, and disable the Fade option under the Style Properties box. You can also adjust the opening transition of the whole slider.

    Best regards,
    Ismael

    in reply to: Link to Anchor Link in Tab Section #1177490

    Hi,

    Thank you for the update.

    Did you move the site somewhere else? The page above no longer exists and the whole site looks broken. Please provide a link to the new location.

    Best regards,
    Ismael

    in reply to: Problem importing images on demo import #1177482

    Hi,

    Sorry for the delay. Do you have a local host or server in your machine? You can import the demo in your localhost, then migrate it to the live domain. Or try to import the demo manually using the xml files.

    // https://kriesi.at/documentation/enfold/import-demos/#manual-demo-import–using-xml-files-

    Best regards,
    Ismael

    in reply to: Styling the cart icon and dropdown #1177477

    Hi,

    Sorry for the delay. You can use the following css code to change the default color of the elements inside the cart drop down including the cart icon, cart counter and the text (e.g product title, amount, price, quantity etc).

    .header_color .cart_dropdown .dropdown_widget li a, #top .header_color .avia_cart_buttons .button, #top .header_color .dropdown_widget .buttons .button, .header_color .cart_dropdown_first .cart_dropdown_link, #top .header_color p.order-info mark {
    	color: red;
    }
    
    #top .av-cart-counter {
    	background-color: orange;
    	color: #ffffff;
    }
    
    .header_color .woocommerce-tabs .tabs a, .header_color .product_meta, .header_color .quantity input.qty, .header_color .cart_dropdown .dropdown_widget, .header_color .avia_select_fake_val, .header_color address, .header_color .product > a .header_color .product_excerpt, .header_color .term_description, #top .header_color .price .from, #top #wrap_all .header_color del, .header_color .dynamic-title .dynamic-heading, .header_color .dynamic-title a, .header_color .entry-summary .woocommerce-product-rating .woocommerce-review-link, .header_color .chosen-container-single .chosen-single span, #top .header_color .select2-container .select2-choice, .header_color .woocommerce-MyAccount-navigation-link.is-active a {
    	color: blue;
    }
    

    Best regards,
    Ismael

    in reply to: Add to cart notification on product category page #1177473

    Hi,

    Thank you for the update.

    Try to add this hook inside the category or archive template.

    do_action( 'woocommerce_before_single_product' );
    

    This is where the wc_print_notices function or the wrapper woocommerce_output_all_notices is hooked.

    Best regards,
    Ismael

    Hi,

    @thetechpro: We would like to apologize for any inconvenience the update may have caused you. Upgrading from an old version of the theme v3.5.4 to the latest one v4.7.2 is indeed quite tricky because a lot has change since — new options, features, code refactors and bug fix, so errors are unavoidable. To prevent this issue from ever happening again and to save time, please make it a habit to update the theme whenever a new patch is available.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Support request – flag icons in header #1177190

    Hey analogetontraeger,

    Thank you for the inquiry.

    You should be able to add a widget inside the header using the available hooks inside the header template. Please check the documentation below for more info.

    // https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    Best regards,
    Ismael

    in reply to: Masonry bottom border – can't remove it #1177187

    Hi,

    Thank you for following up.

    We are not seeing the border below the second masonry element in the Members page. Did you manage to remove it?

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Can you give us a direct link to a page or post with the issue? The advance layout builder is working when we open this page. (see private field)

    Best regards,
    Ismael

    in reply to: Google Analytics not tracking after Enfold theme update #1177181

    Hi,

    Thank you for the info.

    The Google Analytics script is functioning properly when we check the site. As you can see in the screenshot below, the script is collecting data from the site — sending a pageview hit type.

    Screenshot: https://imgur.com/a/S67X8TK

    We noticed that the Privacy & Cookies options are disabled. Did you disable it just now?

    Best regards,
    Ismael

    Hey LMS,

    Thank you for the inquiry.

    The Enfold > Blog Layout > Blog Layout setting is set to “Use the advance layout builder..”, but the blog page itself is empty, so it’s not displaying anything. We added the Blog Posts element in the blog page. Please make sure that the settings or theme options for each language are set correctly.

    Best regards,
    Ismael

    in reply to: Phone Number and Social Icons at Mobile Menu #1177174

    Hi,

    Thank you for the update.

    The modification is intended for default or top headers, so it’s not going to work on a left/right header. We might be able to make it work by replacing the following line..

    htmlString   = $('#header_main .social_bookmarks:first').find('li a'),
    

    .., with:

    htmlString   = $('#header_main .av-sidebar-social-container:first').find('li a'),
    

    If it didn’t work, post the login details in the private field so that we can test the script. Make sure that the Appearance > Editor panel is accessible.

    Best regards,
    Ismael

    in reply to: Formmailer dont send mail #1177111

    Hey Manuel,

    Thank you for the inquiry.

    The following steps should help you troubleshoot the issue with the contact form.

    // https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-

    Setting the from address to the default WordPress mail address usually helps.

    Best regards,
    Ismael

    Hi,

    Alright. What is the exact error? Can you post it here? Try to increase the priority value of your custom jpeg_quality filter.

    Example:

    function my_custom_jpeg_filter() {
       return 50;
    }
    add_filter('jpeg_quality', 'my_custom_jpeg_filter', 999);
    

    The priority value of the filter above is set to 999 — default is 10. It should override those with lower priority.

    Best regards,
    Ismael

    in reply to: Logo centered with no menu on mobile #1177103

    Hi,

    Can we access the site? We tried to use the login account above, but it says that the username is unknown. Please check the info carefully, or provide another user account.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Edit screen_options_visibility #1177100

    Hi,

    Thank you for the update.

    You don’t need to register them again. The popup_elements function will automatically register everything inside the elements array including the screen visibility options template. Please check the existing shortcode files and look for the popup_elements function so that you can recognize the pattern. For example, in the codeblock.php shortcode file, the following block of code inside the pop_elements function creates the Advanced tab and the toggles including the Responsive > Element Visibility and the Developer Settings.

    array(
    						'type' 	=> 'tab',
    						'name'  => __( 'Advanced', 'avia_framework' ),
    						'nodescription' => true
    					),
    
    					array(
    							'type' 	=> 'toggle_container',
    							'nodescription' => true
    						),
    
    						array(	
    								'type'			=> 'template',
    								'template_id'	=> $this->popup_key( 'layout_settings' )
    							),
    
    						array(	
    								'type'			=> 'template',
    								'template_id'	=> 'screen_options_toggle'
    							),
    
    						array(	
    								'type'			=> 'template',
    								'template_id'	=> 'developer_options_toggle',
    								'args'			=> array( 'sc' => $this )
    							),
    
    					array(
    							'type' 	=> 'toggle_container_close',
    							'nodescription' => true
    						),
    

    Best regards,
    Ismael

    in reply to: Problem uploading images via Masonry Gallery in Portfolio #1177091

    Hey Magnus,

    Thank you for the inquiry.

    We found these errors in the console when we tried to edit the masonry gallery in a test page.

    SyntaxError: missing ] after element list
    10 avia-modal.js:712:8note: [ opened at line 712, column 0avia-modal.js:712
    TypeError: this.obj._listeners is undefinedbackbone.min.js:1:3747
    

    It is working properly when the Enhanced Media Library PRO plugin is deactivated. Please contact the plugin authors for additional assistance.

    Best regards,
    Ismael

    in reply to: Änderungen im Gutenberg-Editor werden nicht angenommen #1177043

    Hi,

    Thank you for the update.

    The style of the button should be added inline or directly in the html, but for some reason it’s not working in your installation. Please try to deactivate the plugins temporarily.

    We are not able to reproduce the issue on our end. Check the screenshot below.

    Screenshot: https://imgur.com/a/49DTypJ

    Best regards,
    Ismael

    in reply to: Show Video in Lightbox? #1177040

    Hey gregorh,

    Thank you for the inquiry.

    The option is inside the Advanced > Privacy Settings panel. Set the Lazy Load Videos to the third option. Please make sure that the theme is upgraded to version 4.7.2.

    Best regards,
    Ismael

    in reply to: Long Long Time for Entypo-fontello.woff #1177038

    Hey John,

    Thank you for the inquiry.

    The font file loads in less than 200ms on our end without anything blocking it. Where did you test it? Please check the screenshot below.

    // https://imgur.com/a/xcAsor3

    Best regards,
    Ismael

    in reply to: Anchor link #1177037

    Hi,

    Thank you for the update.

    This one should work. It will exclude the current portfolio item from the portfolio grid element.

    add_filter('avia_post_grid_query','avf_post_grid_query_mod', 10, 2);
    function avf_post_grid_query_mod($query, $params)
    {
        if(is_singular('portfolio')) {
            $query['post__not_in'] = array(avia_get_the_ID());
        }
        return $query;
    }

    Best regards,
    Ismael

    in reply to: Icon Grid – Flip Box – just cosmetic styling #1177036

    Hi,

    Thank you for the update.

    The patch is now available in your Themeforest account. You can manually download it from there, or use the automatic updater from the theme. Let us know if the issue persists after upgrading the theme to 4.7.2.

    Best regards,
    Ismael

    in reply to: YOAST SEO: Video #1177034

    Hey gregorh,

    Thank you for the inquiry.

    The plugin is probably not able to read or fetch the video URL inside the shortcodes in the pages. Please try to ask the authors how the plugin index the videos and ask them if there is an available filter that we can use to include additional URLS in the index. We might be able to extract URLs from the shortcodes generated by the advance layout builder and manually include them in the index using the filter.

    Best regards,
    Ismael

    in reply to: Background Image in Tablet Landscape View #1177028

    Hi,

    Thank you for the update.

    We added this code in the Quick CSS field to adjust the position of the background container on tablet view.

    .home #av_section_1 .av-parallax-inner {
    	background-size: cover !important;
    	top: 150px;
    }
    

    Best regards,
    Ismael

    in reply to: Form dropdown field #1177025

    Hey navindesigns,

    Thank you for the inquiry.

    You can adjust the look of an option element but only to a limited extent because its style is browser dependent. You can try this css code for example.

    .gform_wrapper select option {
    	background: #000000;
    	color: #ffffff;
    }

    Best regards,
    Ismael

    in reply to: Synchronisieren von Slider und hinterlegtem Video #1176994

    Hey Pelikan Co KG,

    Thank you for the inquiry.

    The sliders from the theme doesn’t have that option, but you might be able to accomplish it using the layer slider plugin. Look for the Slider Settings > Slideshow > Cycles, and set the Cycles field value to 1 so that the slider will not repeat or restart.

    Best regards,
    Ismael

    in reply to: Complianz plugin for cookies and #1176992

    Hey spitsdesign,

    Thank you for the inquiry.

    Did you disable the privacy & cookie option from the theme? You might have to delete the local storage or the browser cache including the cookies before checking it again.

    Best regards,
    Ismael

Viewing 30 posts - 19,651 through 19,680 (of 67,469 total)