Forum Replies Created

Viewing 30 posts - 46,291 through 46,320 (of 67,602 total)
  • Author
    Posts
  • in reply to: Audio player not working (plugin: Series Engine) #524350

    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.0

    You 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,
    Ismael

    Hi!

    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,
    Ismael

    in reply to: Message from "Name" #524348

    Hey 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!
    Ismael

    in reply to: Sliding background images #524347

    Hi!

    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,
    Ismael

    in reply to: Menu mobile and Web verision Broken code out #524346

    Hey!

    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,
    Ismael

    in reply to: Hit Update and losing content #524345

    Hey!

    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,
    Ismael

    in reply to: Error message after uploading website to the server !!!!! #524344

    Hi!

    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,
    Ismael

    in reply to: Footer layout/spacing questions #524341

    Hi!

    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,
    Ismael

    in reply to: Block cart icon from covering search icon #524339

    Hi!

    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,
    Ismael

    Hey loudcow!

    Thank you for using Enfold.

    Modify the js > shortcodes.js, remove everything then replaced it with this: http://pastebin.com/7AdMF3nn

    Best regards,
    Ismael

    Hi 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,
    Ismael

    Hey!

    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,
    Ismael

    in reply to: Inserting advertising #524332

    Hey!

    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_Themes

    Regards,
    Ismael

    in reply to: Updated to new theme version #524331

    Hi!

    Thank you for the update. We answered your inquiry on the other thread. We will close this one now.

    Cheers!
    Ismael

    in reply to: Masonry portfolio text box position #524329

    Hi!

    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,
    Ismael

    in reply to: Post extract doesn't appear in av-magazine-content #524327

    Hi!

    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!
    Ismael

    in reply to: WPML language selector in text format. #524326

    Hi!

    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,
    Ismael

    in reply to: API Key for Google Maps #524325

    Hey 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!
    Ismael

    in reply to: Hotspots not working correctly #524322

    Hey!

    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,
    Ismael

    in reply to: How To Remove Padding Above Full Width Easy Slider #524320

    Hi!

    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!
    Ismael

    in reply to: Manual Breadcrumbs #524315

    Hey!

    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!
    Ismael

    in reply to: entypo icons get replaced by system icons on iphone 6 #524311

    Hi!

    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,
    Ismael

    in reply to: Portfolio Ajax Preview Issues #524309

    Hi!

    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!
    Ismael

    in reply to: Strange behaviour with button in grid row (only on tablet) #524305

    Hi!

    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,
    Ismael

    in reply to: full width submenu double – also how to hide wpml icons #523561

    Hi 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,
    Ismael

    in reply to: Woocommerce Page #523554

    Hi!

    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,
    Ismael

    in reply to: Post Slider – Getting posts in one row on mobile view #523549

    Hi 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,
    Ismael

    in reply to: Layer slider video background. #523543

    Hey!

    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!
    Ismael

    Hi!

    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

    in reply to: PNG over Easy Slider #523529

    Hi!

    Great! Glad we could help. :)

    Regards,
    Ismael

Viewing 30 posts - 46,291 through 46,320 (of 67,602 total)