Forum Replies Created

Viewing 30 posts - 46,321 through 46,350 (of 67,597 total)
  • Author
    Posts
  • Hi!

    You don’t need the IIS7 configuration. Do the modification inside the .htaccess file only and make sure that you’re editing the http://www.management-development.eu/ .htaccess file:

    # BEGIN Enable CORS
    <FilesMatch "\.(ttf|otf|woff)$">
    <IfModule mod_headers.c>
    Header set Access-Control-Allow-Origin http://www.lesire-partners.com/
    </IfModule>
    </FilesMatch>
    # END Enable CORS
    

    Copy this code directly from the forum, not from your email.

    Cheers!
    Ismael

    in reply to: Featured image problem #523491

    Hey idespiran!

    Thank you for using Enfold.

    If possible, please use images with the same size and proportion. It will be much easier for WP to serve the exact thumbnails. Edit the portfolio grid, set the “Portfolio Grid Image Size” to the second option then choose the size that you want in the “Select custom image size” option.

    Regarding the search icon, it’s possible to add it inside the mobile menu or just show it as a default icon. Refer to this link: https://kriesi.at/support/topic/search-widget-only-in-mobile-view/#post-517247

    Cheers!
    Ismael

    in reply to: How to using the breadcrumb shortcode? #523485

    Hey!

    I checked the Appearance > Editor panel but I don’t see the functions.php file there. Please create a functions.php (NOT functions-enfold.php) file inside the child theme folder then use this code:

    
    <?php 
    
    add_shortcode( 'bread_crumb', 'avia_title' );
    
    // remove title
    add_filter('avf_title_args', function($args) {
    	$args['html']  = "<div class='{class} title_container'><div class='container'>{additions}</div></div>";
    	return $args;
    });
    
    ?>

    You don’t need to modify the functions-enfold.php file. Use the [bread_crumb] shortcode in a text block.

    Cheers!
    Ismael

    in reply to: Search Results page control #523481

    Hi Gekko101!

    Thank you for using Enfold.

    You can use this plugin in order to improve or modify the search index: https://wordpress.org/plugins/relevanssi/

    Integrate the relevanssi query in the ajax search, refer to this link: http://kriesi.at/documentation/enfold/use-relevanssi-in-search-instead-of-the-default-search/

    Regards,
    Ismael

    in reply to: Magazin element visible extract #523479

    Hey!

    Open up wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\magazine.php then look for this:

    if(empty($this->atts['thumbnails']))
    				{
    					 $image = "";
    					 $extraClass = "av-magazine-no-thumb";
    				}

    Below, add this :

    $excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_magazine_excerpt_length' , 10) , apply_filters( 'avf_magazine_excerpt_delimiter' , " "), "…", true, '');	
    

    Regards,
    Ismael

    in reply to: Product woocommerce don't update (Groups) when changed #523478

    Hey!

    Looks like you’re using a third party plugin “Woocommerce Multilingual” and it doesn’t let you configure the product’s meta info or custom field (group_of_quantity). If possible, please contact the plugin author.

    Also, try to go to the plugins’ General Settings > Product Translation Interface then enable the “Go to the native WooCommerce product editing screen:”. Save. Edit the translated product.

    EDIT: Please create a backup of the site before doing this.

    Best regards,
    Ismael

    in reply to: Problem with One page #523474

    Hi maxgorelkine!

    Thank you for using Enfold.

    I checked the site, went to a portfolio item then clicked the “editions” logo back. The icon link took me to the “edition” section exactly. On what browser and OS are you testing this?

    P.S: Cool mod! Good job. :)

    Regards,
    Ismael

    in reply to: Title BLog Layout #523470

    Hey!

    There is no default element for the post meta info (date, category etc) but you can create a file called post_meta_infos.php on config-templatebuilder > avia-shortcodes folder. Add this code: http://pastebin.com/qsXmPDQJ

    You’ll have a new element called Post Meta under Content Elements panel. You might find a few bugs here and there but it should work as a basic element.

    Best regards,
    Ismael

    in reply to: Some pages not displaying #523467

    Hey!

    Thank you for the update.

    The “500” error is a server error so this is probably related to the server configuration (.htaccess file, memory limit etc). Try to increase the WP memory limit to at least 128M (https://docs.woothemes.com/document/increasing-the-wordpress-memory-limit/). Unfortunately, I can’t access the site (500 error). Please contact your hosting provider for more info.

    Regards,
    Ismael

    Hey!

    You should place the hr or separator element inside existing color sections, not under or above it because the theme will automatically create a new section to wrap the lone separator. That’s why you see the white background.

    Best regards,
    Ismael

    in reply to: Manual Breadcrumbs #523456

    Hey richardelectrix!

    Thank you for using Enfold.

    If I understand you correctly, you want to remove the product category link in the breadcrumb then add the product title? Please remove the modification then use this instead:

    add_action( 'woocommerce_before_single_product_summary', 'enfold_customization_woocommerce_extra_text', 1);
    function enfold_customization_woocommerce_extra_text(){
    	echo '<div class="product_breadcrumb alternate_color">';
    	echo avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    	echo '</div>';
    }

    If you want to remove the product category, add this:

    add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 );
    function avia_breadcrumbs_trail_mod( $trail, $args ) {
    	$id = avia_get_the_ID();
    	if(is_singular('product')) {
    		unset($trail[2]);
        }
    	return $trail;
    }

    Best regards,
    Ismael

    in reply to: fade in images #523452

    Hey!

    Thank you for using Enfold.

    You can find the animation effects on css > shortcodes.css file. Look for the “ANIMATIONS” section. For example, if you use the “Left to right” animation, you can look for the “avia-ltr” keyframe:

    @-webkit-keyframes avia-ltr {
      0%   { -webkit-transform:translate(-10%,0); opacity: 0;  }
      100% { -webkit-transform:translate(0,0); opacity: 1; }
    }
    @keyframes avia-ltr {
      0%   { transform:translate(-10%,0); opacity: 0;  }
      100% { transform:translate(0,0); opacity: 1; }
    }

    You can copy the default keyframe then place it in the Quick CSS field then adjust the value. Refer to this link for more info: https://css-tricks.com/snippets/css/keyframe-animation-syntax/

    Cheers!
    Ismael

    Hi Gekko101!

    Thank you for using Enfold.

    The video element width property is set to 100% by default. Try to add a unique class attribute to the video tag. Something like this:

    <video class="custom_video" width="480px" height="320px" controls="controls"><source src="http://gekkoshot-fitnivideos.s3.amazonaws.com/smaller-treadmills-cat.mp4"></video>
    

    Use the Quick CSS field to control width:

    .custom_video {
        width: 50% !important;
        height: inherit;
    }

    Best regards,
    Ismael

    in reply to: HElvetica both in heading and in body font #523444

    Hi!

    Great! Glad you figured it out. If you have any question, let us know. :)

    Cheers!
    Ismael

    in reply to: Layer slider video background. #523443

    Hi!

    Instead of the layer slider, you can use the advance layout builder’s color section or the full screen slider to add the video background. That is the same element that you see in the demo.

    Cheers!
    Ismael

    Hey pristineio!

    Thank you for using Enfold.

    It seems to fixed itself when you resize the browser. Please try to add this in the functions.php file:

    
    // trigger resize
    function add_custom_script(){
    ?>
    <script>
    (function($) {
    	$(window).load(function() {
    		$(window).trigger('resize');
    	});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Regards,
    Ismael

    in reply to: Moved to Enford.. but dont like something. #522222

    Hi!

    You can move the caption container with this in the Quick CSS field:

    #top .aviaccordion-preview-title {
        padding: 5%;
    }
    
    #top .aviaccordion-preview-title-pos {
        position: absolute;
        bottom: 20%;
        height: 10%;
    }

    Regards,
    Ismael

    in reply to: PNG over Easy Slider #522212

    Hi mrcityrunner!

    Thank you for using Enfold.

    Please add this in the Quick CSS field:

    .avia-slideshow:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: red;
        z-index: 1000;
        position: absolute;
    }

    Adjust the background property. http://www.w3schools.com/css/css_background.asp

    Regards,
    Ismael

    Hey!

    Did you remove the theme’s preset thumbnails? The masonry gallery element should use the “masonry” thumbnail specified in the functions.php file,

    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    
    

    Cheers!
    Ismael

    in reply to: How to Bookmark #522197

    Hi!

    Did you create a secondary menu on Appearance > Menus panel? Set it as Enfold Secondary Menu under Theme Locations.

    Regards,
    Ismael

    in reply to: Trying to add Instagram icon #522196

    Hi!

    Please append this at the very end of the widget code:

    <li class="social_bookmarks_instagram av-social-link-instagram social_icon_3"><a target="_blank" href="http://instagram.com/kriesi" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Instagram"><span class="avia_hidden_link_text">Instagram</span></a></li>
    

    Adjust the account url.

    Best regards,
    Ismael

    in reply to: Background video on mobile #522191

    Hi!

    Thank you for the update. Unfortunately, video background is disabled on mobile devices by default because of incompatibility issues. Aside from that, videos don’t autoplay on mobile devices. You have to add a fallback image.

    Cheers!
    Ismael

    Hey!
    WPML enables you to create a version of the site on another language but it will not handle the translation automatically. You have to translate the pages manually. However, you can try their Professional Translation service for additional fees: https://wpml.org/documentation/content-translation/

    Best regards,
    Ismael

    in reply to: Add full width slider before content #522184

    Hey!

    Thank you for sharing your solution. We’ll notify Kriesi regarding this. An extra filter should be pretty handy if you want to add full width elements in the page.

    Cheers!
    Ismael

    in reply to: Vertical Menu #522183

    Hey Sigmund!

    Thank you for using Enfold.

    I think that’s possible with css. Can you please provide a screenshot of the layout that you have in mind? Use imgur or dropbox.

    Cheers!
    Ismael

    in reply to: Adding "signature" to blog posts #522178

    Hey!

    Replace the code with this:

    if ( is_single() ) { ?>
    <p>
    Your signature
    </p>
    <?php }

    We replaced !is_single with is_single. https://codex.wordpress.org/Function_Reference/is_single

    Cheers!
    Ismael

    in reply to: Mobile layout issues #522177

    Hi!

    Thank you for the info. Please add this in the Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .container {
        width: 100%;
        max-width: 100%;
    }
    }

    Did you fix the second issue? I can’t see the button: http://imgur.com/v8jfyOQ

    Regards,
    Ismael

    in reply to: Search box shows for a second while loading #522175

    Hey!

    Please try this in the Quick CSS field:

    .avia-search-tooltip {
        opacity: 0;
    }

    Cool website. :)

    Regards,
    Ismael

    in reply to: Adding a subtitle to masonry gallery page tiles #522140

    Hi hntmatthews!

    Thank you for using Enfold.

    What is the plugin that you use? Is it possible to use a shortcode to display the subtitle? Try to modify the config-templatebuilder > avia-shortcodes > masonry_entries.php file.

    Cheers!
    Ismael

Viewing 30 posts - 46,321 through 46,350 (of 67,597 total)