Forum Replies Created

Viewing 30 posts - 28,951 through 28,980 (of 67,588 total)
  • Author
    Posts
  • in reply to: Drei Fragen #977741

    Hi,

    Thank you for the screenshots.

    You can use the following filter to add a custom button inside the masonry content but it won’t trigger the quickview container because the masonry item is already a link in and of itself. You may need to create a custom script to trigger the quickview container when you clicked on the custom button.

    
    add_filter('avf_masonry_loop_prepare', 'avia_change_default_link', 10, 2);
    
    function avia_change_default_link($loop, $entries) 	{	{
    
    		if($loop['post_type'] == "product") {
    			$more = "<span class='add_to_cart'>".__('Add to cart', 'avia_framework')."</span>";
    			$loop['content'] .= $more;
    		}
    
    	return $loop;
    }
    

    Best regards,
    Ismael

    in reply to: No Such File or Directory #977736

    Hey taylorwedo,

    Thank you for contacting us.

    The site is using another theme called “Synergia”, not “Enfold”. Are you sure that’s the correct url? The error refers to a non-existent custom icon font files. Did you upload a custom icon font in the Enfold > Import/Export > Iconfont Manager section?

    Best regards,
    Ismael

    in reply to: Website Admin Functions no longer working. #977735

    Hi,

    Thank you for using Enfold.

    The site is running on an older version of the theme, 4.2.2. Please upgrade to version 4.4.1. That should fix the issue with theme options and the builder.

    // https://kriesi.at/archives/the-complete-guide-to-updating-enfold

    Best regards,
    Ismael

    in reply to: Travel Theme Product Grid #977734

    Hey MysticMimi,

    Thank you for using Enfold.

    Are you trying to create your own products? Which element are you trying to configure? A screenshot from imgur or dropbox` will help.

    Best regards,
    Ismael

    Hey royaltask,

    UPDATE: Looks like they’re going to remove the free 25,000 request per day limit and replace it with a $200 monthly free credit.

    Can I still use Google Maps Platform for free?
    Yes. Starting July 16, 2018, when you enable billing, you get $200 free usage every month for Maps, Routes, or Places. Based on the millions of users using our APIs today, most of them can continue to use Google Maps Platform for free with this credit.

    That is more than enough for common websites.

    Best regards,
    Ismael

    in reply to: How to show custom social media icons in top bar #977726

    Hi,

    You can create or add multiple custom icons in the filter. Example.

    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    	$icons['Spotify'] = array( 'font' =>'fontello', 'icon' => 'ue800');
            $icons['Netflix'] = array( 'font' =>'fontello', 'icon' => 'ue801');
            $icons['Slack'] = array( 'font' =>'fontello', 'icon' => 'ue802');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    	$icons['Spotify'] = 'spotify';
            $icons['Netflix'] = 'spotify';
            $icons['Slack'] = 'slack';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    

    Adjust the icon name and icon code. You may also need to adjust the “font” parameter based on how you named the custom font.

    Best regards,
    Ismael

    Hey zarlekin,

    Thank you for using Enfold.

    You have to re-select the images manually because it’s still using the thumbnails from the first language.

    Best regards,
    Ismael

    in reply to: CF7 and Enfold, some trouble #977723

    Hi,

    You’re welcome! You should visit Palawan or Siargao when you get here. :)

    Best regards,
    Ismael

    Hey Cary,

    Thank you for using Enfold.

    Disable the css/js compression in the Enfold > Performance panel, purge the cache and re-minify the scripts and stylesheets if the BWP Minify or Autoptimize plugin is installed. You may also need to re-configure the Main Menu and Header settings.

    Best regards,
    Ismael

    in reply to: Posts content not displaying full width #977721

    Hi,

    Thanks for the update.

    We didn’t modify anything aside from adding the custom css code. The post content should be wider than before.

    Best regards,
    Ismael

    Hi,

    The theme applies special class attributes to the html tag based on the current browser. You can use that to display a different element for Safari users. Example:

    .element-to-display {
       display: none;
    }
    
    .avia-safari .element-to-display {
       display: block;
    }

    Best regards,
    Ismael

    in reply to: Theme Colors #977719

    Hi,

    Thanks for the update.

    We didn’t login to the site because you’re just asking where the prefined colors are coming from so we explained it. I’m not sure who changed that. Did you create a backup or a restore point? Please ask your hosting provider to restore the site from a backup.

    Best regards,
    Ismael

    in reply to: Google Map not loading #977716

    Hi,

    I replaced the files in the folder as you suggested, and all my custom work that I paid someone to do broke

    You should ask him/her to re-implement the changes properly because what he did is not in accordance with the theme development standards.

    // https://codex.wordpress.org/Theme_Development#Theme_Development_Standards

    Unfortunately, we can’t help you trace back these modifications. Please contact the previous contractor or visit our partner, Codeable.

    // https://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: CF7 and Enfold, some trouble #977715

    Hi,

    Thanks for the update.

    We modified the structure a bit. The send button is now located below the captcha form.

    Best regards,
    Ismael

    in reply to: Google Maps #977712

    Hi,

    Thanks for the update.

    My bad. It turned out that the style.css file is generated by the “Improved Variable Product Attributes for WooCommerce” plugin. Please disable the plugin temporarily and contact the author for additional help.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Use the elements’ Screen Options instead of the fall back image. The options there can be easily understood. It enables you to display different elements on various screen sizes.

    Best regards,
    Ismael

    in reply to: Lost bullets on full width slider caption #977710

    Hi,

    That is possible but you’ll have to modify the config-templatebuilder > aviashortcodes > google_maps > google_maps.js file. Look for this code around line 286.

    full = new google.maps.Size(size , size ) ; 		//marker size
    

    Adjust the value of the size parameter.

    full = new google.maps.Size(143, 143) ; 		//marker size
    

    NOTE: The default marker size settings will be ignored when you do this modification.

    Best regards,
    Ismael

    in reply to: Icon hover highlight circle #977707

    Hi,

    Download the latest version from your themeforest account then update the theme via FTP.

    // https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#update-via-ftp
    // https://kriesi.at/archives/the-complete-guide-to-updating-enfold

    Best regards,
    Ismael

    in reply to: Remove tabs and code error #977705

    Hi,

    Thanks for the update.

    We placed the filter in the functions.php file. The additional informations tab should not be displayed now.

    Best regards,
    Ismael

    in reply to: Remove tabs and code error #977319

    Hi,

    Thanks for the update.

    The FTP login details are not valid. Please check it carefully. Try this filter.

    add_filter( 'woocommerce_product_tabs', 'av_remove_product_tabs', 98, 1 );
    function av_remove_product_tabs( $tabs ) {
    	unset( $tabs['additional_information'] );
    	return $tabs;
    }
    

    It works on my installation.

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

    Best regards,
    Ismael

    in reply to: Code block and 100% width #977317

    Hi,

    Thanks for the update.

    Use this css code to adjust the width of the container inside the “block360” section.

    .responsive #top #wrap_all #block360 .container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    Best regards,
    Ismael

    in reply to: Logo and Extra Elements on Same Line #977316

    Hi,

    You have to set the “Header” > “Header Layout” > “Menu and Logo Position” to the 4th option if you want to place the menu below the logo and the header widget.

    Best regards,
    Ismael

    in reply to: Layerslider stopped working with Enfold 4.4.1 #977315

    Hi,

    Thanks for the update.

    i also paid for the layerslider plugin

    You have to deactivate the theme’s layer slider plugin in the Enfold > Layout Builder > “Integrated (Bundled) LayerSlider Plugin” settings. Select the second option and then install the paid version of the layer slider in the Plugins panel.

    Best regards,
    Ismael

    in reply to: Avia layout builder – page elements won't move #977314

    Hi,

    Thanks for the update. You should not put your mouse over the element or shortcode’s buttons (template, clone, edit) when you want to drag or move it. It works fine on a test page. (see private field)

    Best regards,
    Ismael

    Hi,

    Am I right with the positioning of your code or doesn’t it matter?

    It doesn’t matter where you put the code but css media queries are usually added at the very bottom of the stylesheet or the Quick CSS field because it’s supposed to override the default styles. Please provide the login details in the private field. And provide a screenshot of the expected header layout on mobile view.

    Best regards,
    Ismael

    in reply to: Blog #977309

    Hi,

    Thank you for the update.

    The blog page is set as posts page in the Settings > Reading panel. We reset the options to default and then adjusted the Enfold > Blog Layout settings. It should display the full content of the posts. If you don’t like the current blog settings or style, just change it to something else.

    Best regards,
    Ismael

    in reply to: WebSite not Loading #977307

    Hey amin0o,

    Thank you for using Enfold.

    Did you purge the cache after the update? You may also need to disable the theme’s css/js compression in the Performance panel features. Let us know if it helps.

    Best regards,
    Ismael

    in reply to: Build Websites & Apps #977306

    Hey Pearl,

    I hope you’re doing good! :)

    I don’t think one of us or the team created that website but it is using Enfold. This is one of our themes and is available on Themeforest if you’d like to check it.

    // https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?s_rank=1
    // https://themeforest.net/item/enfold-psd-/5189320?s_rank=2

    Let us know if we can help you with anything else.

    Best regards,
    Ismael

    in reply to: Global saved elements possible solutions // plugins? #977305

    Hi,

    Thank you for using Enfold.

    Yes, you can’t use the template as a global element but there’s another element called “Page Content”. You can use that element to display the content of a particular post or page. It’s the same as a global template.

    Best regards,
    Ismael

    in reply to: Enfold 4.4.1 – Masonry bug? #977304

    Hi,

    Thanks for the update.

    This script might help fix the issue.

    // https://kriesi.at/support/topic/masonry-gallery-overlapping-images/#post-911462

    It will trigger the resize event causing the masonry items to reposition until the page is fully loaded.

    Best regards,
    Ismael

Viewing 30 posts - 28,951 through 28,980 (of 67,588 total)