Forum Replies Created
-
AuthorPosts
-
Hi!
We only use the css file in the the js/mediaelement folder to override the default media styling so I don’t think it will break any third party script. The theme is actually using the default wp-mediaelement script so I guess the plugin is not compatible with WP’s default media script.
wp-includes/js/mediaelement/wp-mediaelement.js?ver=4.3.1
wp-includes/js/mediaelement/mediaelement-and-player.min.js?ver=2.17.0You can deactivate WP’s media element but it will break the video and audio shortcode:
add_action('after_setup_theme', function() { wp_deregister_script('wp-mediaelement'); wp_deregister_style('wp-mediaelement'); }, 10);Regards,
IsmaelOctober 25, 2015 at 8:54 am in reply to: Category page Woocommerce – BROKEN – Format text/media at top? #524349Hi!
You will need a plugin for that. Install this; https://wordpress.org/plugins/widget-logic/
This conditional function will probably help: https://codex.wordpress.org/Function_Reference/is_tax
Regards,
IsmaelHey vollstark!
Thank for you using Enfold.
We need to see the actual contact form. Please post the url here. Did you separate the first and the last name? Try this in the functions.php file:
add_filter( 'avia_contact_form_args', 'avia_contact_form_args_mod', 10, 1); function avia_contact_form_args_mod( $form_args ) { $form_args['subject'] = $form_args['subject'] . ' ' . $_POST['avia_first_name_1'] . ' ' . $_POST['avia_last_name_1']; return $form_args; }Cheers!
IsmaelHi!
Thank you for the update. I tested this on my installation and it works: https://wordpress.org/plugins/ab-background-slideshow/
You might need to set the main and wrap_all container background to transparent:
#main, .avia-msie-8 #header.av_header_sticky_disabled, .html_stretched #wrap_all { background-color: transparent !important; }Regards,
IsmaelHey!
The error “No such file or directory” means that the file doesn’t exist, obviously. I actually encountered this issue when I tried to upload the theme via FTP. Did you use FileZilla? Make sure that there are no “Failed Transfers” when you’re uploading the theme files. This is usually due to lost connection. If there are failed transfers, let the current queue finish then go to the “Failed Transfers” tab. Select all files, right click then requeue.
https://forum.filezilla-project.org/viewtopic.php?t=22496
Regards,
IsmaelHey!
According to other forums, memory limit is the main cause of the issue but there are no definitive instructions on how to fix it. Please refer to this link for a possible fix: http://www.wpbeginner.com/wp-tutorials/how-to-fix-the-error-establishing-a-database-connection-in-wordpress/
And yes, the builder tends to slow down a bit if you keep on adding more content just like any other builder out there. Is it OK if we deactivate the plugins while working on the site?
Best regards,
IsmaelOctober 25, 2015 at 8:13 am in reply to: Error message after uploading website to the server !!!!! #524344Hi!
Add this in the functions.php file to fix the subset characters:
function add_subset_func($fontlist) { $fontlist .= "&subset=latin,latin-ext"; return $fontlist; } add_filter('avf_google_fontlist', 'add_subset_func');Regards,
IsmaelHi!
Add this in the functions.php file to create new columns above and below the footer columns:
add_action('avia_before_footer_columns', function() { echo "<div class='flex_column'>TEXT HERE</div>"; }); add_action('avia_after_footer_columns', function() { echo "<div class='flex_column'>ANOTHER TEXT HERE</div>"; });I can see three widgets on each column. Why did you add a separator there?
Regards,
IsmaelHi!
The icon is hidden because of this code:
<style id="__web-inspector-hide-shortcut-style__" type="text/css"> .__web-inspector-hide-shortcut__, .__web-inspector-hide-shortcut__ *, .__web-inspector-hidebefore-shortcut__::before, .__web-inspector-hideafter-shortcut__::after { visibility: hidden !important; } </style>Do you know where it’s coming from? Try to add this in the Quick CSS field:
#top #menu-item-search.menu-item-search-dropdown>a { visibility: visible !important; }Regards,
IsmaelOctober 25, 2015 at 7:35 am in reply to: Masonry Catetory – Display categories sorting function – issue with 'load more' #524337Hey loudcow!
Thank you for using Enfold.
Modify the js > shortcodes.js, remove everything then replaced it with this: http://pastebin.com/7AdMF3nn
Best regards,
IsmaelOctober 25, 2015 at 7:17 am in reply to: Full Width Slideshow Below Header So Top Of The Photos Arent Cut Off #524335Hi Malcolm!
Thank you for using Enfold.
Please use the full screen slider instead of the full width slider to keep the slider above the fold.
Best regards,
IsmaelOctober 25, 2015 at 7:13 am in reply to: Enfold automatically changes the fonts for heading and body text. #524334Hey!
Please remove the modification then refresh the dashboard. Reselect the Open Sans font in the General Styling > Fonts panel. Add this in the functions.php file to fix subset characters.
function add_subset_func($fontlist) { $fontlist .= "&subset=latin,latin-ext"; return $fontlist; } add_filter('avf_google_fontlist', 'add_subset_func');Regards,
IsmaelHey!
If you want to add google ad sense or any other ads that provide custom scripts, use the text widget in the Appearance > Widgets panel. Make sure that you set the right widget area in your pages’ Layout > Sidebar Settings. If you don’t want to use a text widget, use the theme’s Advertising Area widget.
For clarification regarding child themes, refer to these links:
http://kriesi.at/documentation/enfold/using-a-child-theme/
https://codex.wordpress.org/Child_ThemesRegards,
IsmaelHi!
Thank you for the update. We answered your inquiry on the other thread. We will close this one now.
Cheers!
IsmaelHi!
Add this in the functions.php file:
// portfolio mod function add_custom_script(){ ?> <script> (function($) { $('.av-masonry-entry:even').each(function() { var $content = $(this).find('.av-inner-masonry-content').detach(); $(this).find('.av-inner-masonry').prepend($content); }); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_script');Make sure that the post number and columns are set to even numbers.
Regards,
IsmaelHi!
You have to edit the post then enable the Excerpt box in the Screen Options. Add the post extract or summary there. Example here: http://www.studiopareto.it/wp-admin/post.php?post=123&action=edit
Cheers!
IsmaelHi!
You can disable the theme’s default language flags with this inside the functions.php file:
add_action('after_setup_theme','avia_remove_main_menu_flags'); function avia_remove_main_menu_flags(){ remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10); }Configure the language switcher in the WPML language panel.
Regards,
IsmaelHey Carsten!
Thank you for using Enfold.
You can find the theme’s google map api integration inside the js > shortcodes.js file. Look for the “AVIA MAPS API” section. If I am not mistaken, you are looking for this line:
src: 'https://maps.googleapis.com/maps/api/js?v=3.6&sensor=false&callback=aviaOnGoogleMapsLoaded'Cheers!
IsmaelHey!
If you select the “top left” position, the “left” actually refers to the position of the “bubble arrow”, not the whole tooltip bubble. Please play around with the position options to better understand what I mean. If you want to show the tooltip beside the hotspot, select the options under “Left” or “Right”.
Regards,
IsmaelHi!
You actually have this code inside the Quick CSS field which breaks the separator:
.hr-custom .hr-inner { left: -20%; position: relative; width: 320%!important; }Please remove that. Also, please update the theme to the latest version, 3.3.2.
Cheers!
IsmaelHey!
Alright. Replace the code with this:
add_action( 'woocommerce_before_single_product_summary', 'enfold_customization_woocommerce_extra_text', 1); function enfold_customization_woocommerce_extra_text() { ob_start(); wp_title(''); $title = ob_get_clean(); echo '<p id="breadcrumbs" style="padding-top:0px; padding-bottom:20px;">You are here: <a href="/">Home</a> / <a href="/products">Products</a> / <strong>'.$title.'</strong></p>'; }Cheers!
IsmaelOctober 25, 2015 at 5:19 am in reply to: entypo icons get replaced by system icons on iphone 6 #524311Hi!
It actually doesn’t look good on Windows 7 desktop. Please remove the icon font modification then replace it with this:
#mobile-advanced li > a:before, .html_header_mobile_behavior #mobile-advanced span > a:before, #mobile-advanced .mega_menu_title:before { content: ""; width: 0; height: 0; border-bottom: 3px solid transparent; border-top: 3px solid transparent; border-left: 5px solid #2f2f2f; font-size: 0; line-height: 0; top: 20px; }You can find the character map here: http://web.archive.org/web/20140912210715/http://entypo.com/characters/
Regards,
IsmaelHi!
I cannot reproduce the issue with the slideshow turning into a list but I noticed that if you go back to previous items, a few of the slideshow is gone. Please try this in the Quick CSS field:
.portfolio-preview-image .avia-slideshow-inner { min-height: 450px !important; }Could you please provide a screenshot of the “image list” issue?
Cheers!
IsmaelOctober 25, 2015 at 5:07 am in reply to: Strange behaviour with button in grid row (only on tablet) #524305Hi!
I’m sorry but the login credentials are not working. Please check. If possible, please create a separate test page so that we can inspect the issue.
Regards,
IsmaelOctober 23, 2015 at 10:16 am in reply to: full width submenu double – also how to hide wpml icons #523561Hi Gudi!
Thank you for using Enfold.
I checked the menu markup and it doesn’t have any double tags:
Did you remove the wpml switcher?
Regards,
IsmaelHi!
Locate the archive-product.php file inside the plugins > woocommerce > templates folder. Copy that file then place it inside the theme folder. Modify the file as you please.
Best regards,
IsmaelOctober 23, 2015 at 9:41 am in reply to: Post Slider – Getting posts in one row on mobile view #523549Hi toddvee!
Thank you for using Enfold.
Please add this in the Quick CSS field:
@media only screen and (max-width: 767px) { .responsive #top #wrap_all .avia-content-slider-even .slide-entry.slide-parity-odd, .responsive #top #wrap_all .avia-content-slider-odd .slide-entry.slide-parity-even { margin: 0; clear: none; width: 32%; margin-left: 1%; } .responsive #top #wrap_all .avia-content-slider-odd .slide-entry.first { margin-left: 0; width: 33%; } }Regards,
IsmaelHey!
We used the fullscreen slider in the demo, you can find it under the Media Elements panel. It’s possible to add captions in the slider. Note that you can also use html tags inside the caption field.
Cheers!
IsmaelOctober 23, 2015 at 9:32 am in reply to: Black bands are appearing on a 'stretch to fit' video background #523540Hi!
You can adjust the font size, font family and hover effect of the buttons via CSS. Example:
.avia-button .avia_iconbox_title { font-size: 20px; font-family: 'Open Sans'; } .avia-button .avia_button_icon { font-size: 20px; } .avia-button.avia-color-orange:hover { background-color: red; border-color: black; color: pink; }Unfortunately, we don’t provide support for any issues cause by a third party plugin as stated on our support policy. Please contact the plugin author regarding the issue.
Cheers!
Ismael -
AuthorPosts
