Forum Replies Created
-
AuthorPosts
-
October 23, 2015 at 7:37 am in reply to: icon signs changing from bizarre signs to desired ones during visit #523494
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 CORSCopy this code directly from the forum, not from your email.
Cheers!
IsmaelHey 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!
IsmaelHey!
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!
IsmaelHi 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,
IsmaelHey!
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,
IsmaelOctober 23, 2015 at 6:55 am in reply to: Product woocommerce don't update (Groups) when changed #523478Hey!
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,
IsmaelHi 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,
IsmaelHey!
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,
IsmaelHey!
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,
IsmaelOctober 23, 2015 at 6:13 am in reply to: Define different color and logo for menue on page with alternate content #523466Hey!
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,
IsmaelHey 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,
IsmaelHey!
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!
IsmaelOctober 23, 2015 at 5:36 am in reply to: Category page Woocommerce – BROKEN – Format text/media at top? #523450Hi 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,
IsmaelHi!
Great! Glad you figured it out. If you have any question, let us know. :)
Cheers!
IsmaelHi!
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!
IsmaelOctober 21, 2015 at 10:07 am in reply to: Black bands are appearing on a 'stretch to fit' video background #522227Hey 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,
IsmaelHi!
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,
IsmaelHi 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,
IsmaelOctober 21, 2015 at 9:40 am in reply to: Masonry gallery – thumbnails are the original sized images #522206Hey!
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 masonryCheers!
IsmaelHi!
Did you create a secondary menu on Appearance > Menus panel? Set it as Enfold Secondary Menu under Theme Locations.
Regards,
IsmaelHi!
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,
IsmaelHi!
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!
IsmaelOctober 21, 2015 at 9:19 am in reply to: Bi-Lingual Site German – English Recommandation WPML Plugin or not?! #522188Hey!
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,
IsmaelHey!
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!
IsmaelHey 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!
IsmaelOctober 21, 2015 at 9:03 am in reply to: Emergency Help Needed: XML files for other languages and mobile menu dissapeared #522180Hey!
This thread might help: https://wpml.org/forums/topic/re-using-wpml-and-yoast-seo-plugin-for-language-specific-xml-sitemaps/#post-144751
Best regards,
IsmaelHey!
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!
IsmaelHi!
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,
IsmaelHey!
Please try this in the Quick CSS field:
.avia-search-tooltip { opacity: 0; }Cool website. :)
Regards,
Ismael -
AuthorPosts
