Forum Replies Created

Viewing 30 posts - 37,801 through 37,830 (of 66,745 total)
  • Author
    Posts
  • in reply to: Vollbild-Slider Höhe anpassen #730139

    Hey Reinhard,

    Thank you for using Enfold.

    This is possible but you have to modify one of the parent theme files. Edit the js > shortcodes.js file then look for this code around line 2270:

    wh100_mod 	= wh100,
    

    .. replace it with:

    wh100_mod 	= wh100 - wh100 * 0.1,
    

    Best regards,
    Ismael

    in reply to: Enfold Page Builder is not working #730138

    Hi,

    Is this happening on a specific post or page? I created a post and the editor is working.

    // http://www.kagitvs.com/projedenizi/wp-admin/post.php?post=9773&action=edit

    It is also working on existing pages.

    // http://www.kagitvs.com/projedenizi/wp-admin/post.php?post=9743&action=edit
    // http://www.kagitvs.com/projedenizi/wp-admin/post.php?post=731&action=edit

    Please provide the url to the actual post or page where you can reproduce the issue.

    Best regards,
    Ismael

    Hi,

    Thank you for the update. We added a few modifications in the Quick CSS field. Please remove browser cache before checking the page.

    Best regards,
    Ismael

    in reply to: @Media CSS for iOS S-models #730135

    Hi,

    Please try the following css media queries.

    /* iPhone 5S */
    @media only screen 
        and (min-device-width : 320px) 
        and (max-device-width : 568px) 
        and (device-pixel-ratio : 2)
        and (-webkit-min-device-pixel-ratio : 2)
    { }
    
    /* iPhone 6S */
    @media only screen 
        and (min-device-width : 375px)
        and (max-device-width : 667px) 
        and (device-pixel-ratio : 2)
        and (-webkit-min-device-pixel-ratio : 2)
    { }

    // http://stephen.io/mediaqueries/

    Best regards,
    Ismael

    in reply to: Sidebar Hintergrundfarbe ändern #730134

    Hi,

    Thank you for the info. We added a few css modifications in the Quick CSS field. Please remove browser cache before checking the page.

    Best regards,
    Ismael

    Hey Jill,

    Thank you for using Enfold.

    Did you set the “Image Link?” to “Lightbox”? Please post the login details here so that we can check the settings.

    Best regards,
    Ismael

    Hi,

    Thank you for using Enfold.

    You need set the parent page or create page hierarchies.

    // https://make.wordpress.org/support/user-manual/content/pages/page-attributes

    Best regards,
    Ismael

    Hi,

    The language switcher is working now but the Portfolio Items Base and Portfolio Categories are still not translatable.

    // http://desarrollo.diwebsolutions.es/dev/en/tipo-colaborador/restaurants/
    // http://desarrollo.diwebsolutions.es/dev/tipo-colaborador/restaurantes/

    I will ask the rest of the support team to check this.

    Best regards,
    Ismael

    Hi,

    I’m sorry but the test page doesn’t exist and the previous one looks ok.

    Here’s the page that loads weird:
    http://champlainconted.com/programs/aec/cisco-certified-network-associate/

    Best regards,
    Ismael

    in reply to: Datum aus Suchergebnissen in Google entfernen #729710

    Hi,

    Did you check the markup again? The “datetime” attributes are gone. If this is not working, try to edit the includes helper-markup.php file, look for this block of codes then remove it.

    		if( !in_array('date', $exclude) )
    		{
    			$output .= "<span class='av-structured-data' {$entry_time_markup}>{$post->post_date}</span>";
    		}
    
    		if( !in_array('date_modified', $exclude) )
    		{
    			$output .= "<span class='av-structured-data' {$date_markup}>{$post->post_modified}</span>";
    		}
    

    Best regards,
    Ismael

    in reply to: Yet Another CSS Font-Face Question #729330

    Hi,

    I can see the issue that @Nikko is describing. Please compare the style.css in the backend and the loaded style.css file in the frontend.


    Backend:

    @font-face {
      font-family: 'AvenirLTStdBook';
      src: url('https://www.neighborlyre.com/wp-content/fonts/AvenirLTStd-Book.eot'); /* IE9 Compat Modes */
      src: url('https://www.neighborlyre.com/wp-content/fonts/AvenirLTStd-Book.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
           url('https://www.neighborlyre.com/wp-content/fonts/AvenirLTStd-Book.woff2') format('woff2'), /* Super Modern Browsers */
           url('https://www.neighborlyre.com/wp-content/fonts/AvenirLTStd-Book.woff') format('woff'), /* Pretty Modern Browsers */
           url('https://www.neighborlyre.com/wp-content/fonts/AvenirLTStd-Book.ttf')  format('truetype'), /* Safari, Android, iOS */
           url('https://www.neighborlyre.com/wp-content/fonts/AvenirLTStd-Book.svg#svgFontName') format('svg'); /* Legacy iOS */
    }
    
    body, body p {
        font-family: 'AvenirLTStdBook', sans-serif !important;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-family: 'AvenirLTStdBook', sans-serif !important;
    }

    Frontend:

    font-face {
      font-family: 'AvenirLTStdBook’;
      src: url('/wp-content/fonts/AvenirLTStd-Book.eot'); /* IE9 Compat Modes */
      src: url('/wp-content/fonts/AvenirLTStd-Book.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
           url('/wp-content/fonts/AvenirLTStd-Book.woff2') format('woff2'), /* Super Modern Browsers */
           url('/wp-content/fonts/AvenirLTStd-Book.woff') format('woff'), /* Pretty Modern Browsers */
           url('/wp-content/fonts/AvenirLTStd-Book.ttf')  format('truetype'), /* Safari, Android, iOS */
           url('/wp-content/fonts/AvenirLTStd-Book.svg#svgFontName') format('svg'); /* Legacy iOS */
    }
    
    body, body p {
        font-family: 'AvenirLTStdBook', sans-serif !important;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-family: 'AvenirLTStdBook', sans-serif !important;
    }

    It’s probably cached. Did you modify the .htaccess file? Please post the content of that file on pastebin.com.

    Best regards,
    Ismael

    in reply to: post slider – display published post time #729329

    Hey marioeiterer,

    Thank you for using Enfold.

    Go to the Settings > General panel then set the Date Format to custom and add the following format.

    F j, Y, g: i a
    

    More info here: https://codex.wordpress.org/Formatting_Date_and_Time

    Best regards,
    Ismael

    in reply to: Pointer events on single blog page #729328

    Hi,

    Thank you for the info.

    Please add this in the functions.php file.

    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    ?>
    <script type="text/javascript">
    (function($) {
    	function a() {
    		$('.single .big-preview.multi-big a img').each( function() {
    			var title = $(this).parent('a').attr('title');
    
    			$(this).attr('title', title);
    			$(this).unwrap('a');
    		});
        }
    
    	a();
    })(jQuery);
    </script>
    <?php
    }

    This will remove the anchor link add apply its title to the image.

    Best regards,
    Ismael

    in reply to: WooCommerce Search Bar doesn't output products #729327

    Hey BierPlus,

    Thank you for using Enfold.

    Please set the user role to administrator so that we can access the settings. Did you use the Woocommerce Product Search widget?

    Best regards,
    Ismael

    in reply to: Open post type "Link" in a new window #729326

    Hi,

    Thank you for the info.

    Please add this in the functions.php file.

    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    ?>
    <script type="text/javascript">
    (function($) {
    	function a() {
    		$('.slide-entry-title a, .slide-image').each( function() {
    			var site = document.location.host,
    				link = $(this).attr('href');
    
    				if(link.indexOf(site) !== -1) {
    					return;
    				} else {
    					$(this).attr('target', '_blank');
    				}
    		});
        }
    
    	a();
    })(jQuery);
    </script>
    <?php
    }

    Best regards,
    Ismael

    in reply to: background image #729325

    Hi,

    Thank you for the screenshot. You can decrease the width of content container to create more space for the background.

    @media only screen and (max-width: 1200px) {
    .responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header {
        max-width: 80%;
    }
    }
    

    Best regards,
    Ismael

    in reply to: How to edit woocomerce product page layout #729324

    Hi,

    Where do you want to move it? Did you try the shop page’s Layout > Sidebar Settings?

    Best regards,
    Ismael

    in reply to: Child Theme custom style.css not overwriting #729323

    Hi,

    Are you subscribed to a cdn provider? Please purge the cache or disable it temporarily. We added a more specific selector in the style.css file.

    .responsive #top .logo {
        display: none;
    }

    Best regards,
    Ismael

    • This reply was modified 8 years, 10 months ago by Andy.
    in reply to: Margin Top Padding above Logo #729321

    Hi,

    We added the following css code in the Quick CSS field.

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .av-logo-container {
        padding-top: 10px;
    }
    
    .responsive #top #wrap_all #header {
        padding-bottom: 20px;
    }
    }

    Please remove browser cache or hard refresh before checking the page.

    Best regards,
    Ismael

    in reply to: Position of slide description #729317

    Hi,

    Thank you for the info. Please try the following css code.

    @media only screen and (min-width: 1024px) {
    #sliderhome .caption_framed .slideshow_caption .avia-caption-content p, #sliderhome .caption_framed .slideshow_caption .avia-caption-title, #sliderhome .avia-caption .avia-caption-content p, #sliderhome .avia-caption .avia-caption-title {
        background-color: transparent;
        width: 50%;
        margin-left: 50%;
    }
    
    #sliderhome .avia-caption {
        left: -450px;
    }
    
    #sliderhome .avia-inner-caption {
        background: rgba(0,0,0,.5);
        width: 50%;
    }
    }

    Best regards,
    Ismael

    in reply to: Spanish soport – Atención en Español #729308

    Hey asanvica,

    Thank you for using Enfold.

    We notified one of our teammates to check the thread. Please wait for his response.

    Best regards,
    Ismael

    in reply to: Enfold Slideshow Sizes #729304

    Hey BlutVampir,

    Thank you for using Enfold.

    This is possible but you need to modify one of the parent theme files and you can’t override it in a child theme, unfortunately. Look for the config-templatebuilder > aviashortcodes > slideshow_fullsize.php file. Look for this code around line 552.

    "subtype" =>  AviaHelper::get_registered_image_sizes(1000)
    

    .. replace it with:

    "subtype" =>  AviaHelper::get_registered_image_sizes()
    

    This will enable every thumbnails that are registered in the funtions.php file.

    Best regards,
    Ismael

    in reply to: Sidebar Hintergrundfarbe ändern #729303

    Hi,

    I’m sorry but the login credentials are not working.

    We modified the code a bit. Please try it again.

    add_action( 'wp_footer', 'ava_custom_script' );
    function ava_custom_script() { ?>
    	<script type="text/javascript">
    	(function($){
    		var a = function() {
    			var ch = $('.container .av-content-small.units').height();
    			$('#top #main .sidebar ').css('height', ch);
    		}
    
    		$(window).load(function() {
    			a();
    		});
    
    		$(window).on('debouncedresize', function() {
    			a();
    		});
    	})(jQuery);
    	</script>
    	<?php
    }

    Best regards,
    Ismael

    in reply to: portfolio title wrong display on smartphones #729302

    Hey rikv,

    Thank you for using Enfold.

    Please add this in the Quick CSS field.

    @media only screen and (max-width: 767px) {
        .template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
            word-break: break-word;
        }
    }

    Best regards,
    Ismael

    in reply to: EventON – "add more to basket" doesn't work with Enfold #729301

    Hi,

    Thank you for the info.

    Did they find any errors or give any additional info regarding the issue? Please edit the config-woocommerce > woocoomerce-mod.js file then look for this code around line 49:

    avia_apply_quant_btn();
    

    .. replace it with:

    // avia_apply_quant_btn();
    

    This will disable the function temporarily. Let us know if the quantity buttons are working after this modification.

    Best regards,
    Ismael

    Hi,

    What are the modifications added in the child theme’s “js/woocommerce-mod.js” file? Please post it on pastebin.com.

    Best regards,
    Ismael

    in reply to: Datum aus Suchergebnissen in Google entfernen #729296

    Hi,

    Thank you for the info and I’m sorry for the confusion. That info is actually added by the helper-markup.php file. Please add this in the functions.php file.

    add_filter('avf_markup_helper_attributes', 'avf_markup_helper_attributes_modified', 10, 2);
    function avf_markup_helper_attributes_modified($attributes, $args) {
    	if($args['context'] == 'entry_time') 
            {
    		unset($attributes['datetime']);
    	}
    	return $attributes;
    }

    Best regards,
    Ismael

    in reply to: Date and Author Missing from single post with Grid View #729293

    Hi,

    Did you modify any of the theme files? Please update the theme to version 3.8.4.

    Best regards,
    Ismael

    in reply to: Possible AJAX conflict with Events Calendar (Pro) #729282

    Hi,

    https://cl.ly/143z2P1o1O17

    The first error is not critical because it’s just looking for a key or value inside an array that is undefined. For the second error, please disable the header.php file in the child theme temporarily then check if the error still exist.

    https://cl.ly/012b0U3n0L3K

    I still don’t know how we can help you with these notifications though. Please ask the plugin developer again. Maybe, they can give us any hint or info on what to look for.

    Best regards,
    Ismael

    in reply to: super menus #728868

    Hi,

    Thank you for the update. Please try to update the theme manually via FTP.

    // http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/
    // http://kriesi.at/archives/the-complete-guide-to-updating-enfold

    Best regards,
    Ismael

Viewing 30 posts - 37,801 through 37,830 (of 66,745 total)