Forum Replies Created

Viewing 30 posts - 39,061 through 39,090 (of 66,745 total)
  • Author
    Posts
  • in reply to: woocommerce problem with WPML Translation #694421

    Hi,

    We added the following code in the functions.php file.

    function add_custom_script(){
    ?>
    <script type="text/javascript">
    (function($){
    	function a() {
    		var  picker = $('.wceb_picker_wrap .picker');
    
    		$(picker).detach();
    		$(picker).prependTo('#main')
    	}
    	
    	$(window).load(function() {
    		a();
    	});
    	
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');
    

    Best regards,
    Ismael

    in reply to: WPML Style #694405

    Hi,

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

    #top .sub_menu>ul {
        float: right;
        margin-right: 20px;
    }

    Best regards,
    Ismael

    in reply to: WPML doesn't show in mobile #694404

    Hi,

    We added the css code in the English and Persian General Styling > Quick CSS field. Please remove browser or hard refresh the page.

    Best regards,
    Ismael

    in reply to: text block is broken #694403

    Hi,

    Please post the login details here so that we can check the builder. We don’t see any errors from the frontend so it’s probably a plugin issue.

    Best regards,
    Ismael

    Hi,


    @ferdipm
    : Do you have the latest version of the theme? We included a patch for this issue but it was tested on a different plugin. Please contact the plugin author for more info.

    Best regards,
    Ismael

    in reply to: Input Field Width #694401

    Hi,

    We added the css code in the Enfold (French) > General Styling > Quick CSS field. Please remove the browser cache or hard refresh before testing the page.

    Best regards,
    Ismael

    in reply to: related post #694400

    Hi,

    Please post the WP login details and the FTP credentials so that we can apply the modifications. Or you can add the related posts as shortcode. Do the following:

    1.) Go to the Appearance > Editor panel.
    2.) Look for the Theme Functions (functions.php) file.
    3.) Insert the following code at the very bottom of the file.

    add_shortcode('avs_related_entries', 'avs_related_entries_callback');
    function avs_related_entries_callback() {
    	//show related posts based on tags if there are any
    	get_template_part( 'includes/related-posts');
    }

    4.) Edit one of the posts where you want to display the related posts. Insert a text block then add the following shortcode.

    [avs_related_entries]
    

    5.) Make sure that there are posts with the same tags.

    // https://kriesi.at/support/topic/posts-avia-builder/#post-667531

    Best regards,
    Ismael

    in reply to: Enfold Tables – Table Issues #694399

    Hi,

    I see. Please add this in the Quick CSS field:

    @media only screen and (max-width: 989px) {
    .responsive .avia_scrollable_table .avia-data-table > thead > tr > th, .responsive .avia_scrollable_table .avia-data-table > tbody > tr > th, .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > th, .responsive .avia_scrollable_table .avia-data-table > thead > tr > td, .responsive .avia_scrollable_table .avia-data-table > tbody > tr > td, .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > td {
        white-space: normal;
    }
    }

    Best regards,
    Ismael

    in reply to: No title displayed on post, excerpt missing on blog post #694398

    Hey zimbo,

    Thank you for using Enfold.

    Did you use the advance layout builder for this post? If yes, the title, post meta data, comments and other default elements will not be included in the template. Please post the login details so that we can check the settings.

    Best regards,
    Ismael

    in reply to: Enfold App Demo #694397

    Hi,

    The plugin i am referring to is the app side for project management and also the personal profile page on the backend .

    There is no such plugin installed in the theme. I’m sorry for the confusion but those sections are just static images.

    Best regards,
    Ismael

    in reply to: Remove Header Shopping Cart Icon when empty #694396

    Hi,

    Please remove the css modification then add this in the functions.php file:

    function add_custom_script(){
    ?>
    <script type="text/javascript">
    (function($){
    	function a() {
            var empty = $('.cart_list .empty').length;
    	    if(empty > 0) $('.cart_dropdown').addClass('hide_cart');
    	}
    
    	setTimeout(function() {
    		a();
    	}, 500);
    
    	function b() {
    	    $('#top .avia_cart_buttons .button').bind('click', function() {
                var empty = $('.cart_list .empty').length;
    		    if(!empty) return;
    
    			$('.cart_dropdown').removeClass('hide_cart');
    		    $('.cart_dropdown').addClass('show_cart');
    	    });
    	}
    
    	b();
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');
    

    And the following css code in the Quick CSS field:

    @media only screen and (min-width: 767px) {
        .responsive #top .cart_dropdown {
            opacity: 1;
        }
    
        .responsive #top .cart_dropdown.hide_cart {
            opacity: 0;
        }
    
        .responsive #top .cart_dropdown.show_cart {
            opacity: 1;
        }
    }

    Best regards,
    Ismaelo

    in reply to: Create Blog layout like other Enfold site #694395

    Hi,

    The timeline will be activated for pages with sidebars. You have to retain the custom css modifications.

    Best regards,
    Ismael

    in reply to: woocommerce addtocart is refreshing page instead of ajax #694394

    Hi,

    What happens if you disable the Enfold > Theme Options > Page Preloading option?

    Best regards,
    Ismaelo

    in reply to: Internet Explorer Compatibility #694392

    oHi,

    @ilkbaharkunduzu: Did you test this on actual IE8 browser? The site is working on an actual IE8 browser but you should see little design discrepancies compare to modern browsers due to this browser’s dated and obsolete features.

    Best regards,
    Ismael

    in reply to: purchase button on produt pages. #694390

    Hi,

    We applies a custom price to the product then added the Product Purchase Button element from the Plugin Additions panel. It is under the product description.

    Best regards,
    Ismael

    Hi,

    Great! Let us know if you need anything else. :)

    Best regards,
    Ismael

    in reply to: Button Shortcode in Layerslider #694144

    Hi,

    We updated our last response.

    UPDATE: We found the button and it is an image. Please replace it with an actual text then apply the background using the layer slider’s style panel.

    Best regards,
    Ismael

    in reply to: mobile header issues #694142

    Hi,

    You can increase the size of the slider on mobile view.

    @media only screen and (max-width: 767px) {
        .avia-slideshow-inner, .avia-slideshow-inner img {
            height: 300px !important;
        }
    
        .avia-slideshow-inner img {
            min-width: 1000px !important;
            margin-left: -400px !important;
        }
    }

    Adjust the values as needed. Note that some parts of the images will overflow outside the slider container.

    Best regards,
    Ismael

    in reply to: accordion slider custom image sizes #694139

    Hi,

    I’m sorry but there is no documentation specifically created for the accordion slider. However, the use the of the slider is pretty direct, it works almost the same as the other sliders. Take note that the size of the slider items will use the exact dimension of the images or thumbnails specified in the Accordion Image Size options. If you select a thumbnail with a defined dimension of 450x450px, the slider items will have that exact size.

    In the demo, the size of the images is 1500x430px. http://kriesi.at/themes/enfold/homepage/home-v10-magazine/

    Best regards,
    Ismael

    in reply to: Custom overlay color for Google Map does not work #694137

    Hi,

    Glad that you managed to make it work. Thanks for sharing. :)

    Best regards,
    Ismael

    in reply to: Color Section(s) Background Hover #694136

    Hi,

    Please edit the other color sections and make sure that the Section Background Overlay > Enable Overlay? option is enabled.

    Best regards,
    Ismael

    Hi,

    I see. It doesn’t detect the video because the advance layout builder are built using shortcodes. You have to use the default editor if you want the videos to be detected by the plugin. And make sure that you’re using videos from the supported platforms.

    // https://kb.yoast.com/kb/supported-video-hosting-platforms-for-video-seo-plugin/

    Are you using the video element in the advance layout builder? What happens if you just use the text block to embed the video?

    Best regards,
    Ismael

    in reply to: LayerSlider skins not showing up #694134

    Hey 156aw45f,

    Thank you for using Enfold.

    The layer slider skins have been removed because they don’t go well with the default styling of the theme. If you really need the skins, you have to purchase a plugin license and deactivate the default layer slider.

    // http://kriesi.at/documentation/enfold/deactivate-the-layerslider-plugin/

    Best regards,
    Ismael

    in reply to: No video on the mobile version #694133

    Hi,

    Replace the css code with this.

    @media only screen and (max-width: 1280px) {
    .hide-mobile { display: none; }}
    @media only screen and (min-width: 1281px) {
    .hide-desktop { display: none; }}

    Best regards,
    Ismael

    in reply to: [SOLVED]Use the Creative Studio mobile menu in Enfold #694132

    Hi,

    Please remove all modifications. Set the Header Position to Logo left, menu right and then display the menu as icon. Add this in the Quick CSS field to center align the logo.

    .logo.bg-logo {
        left: 50%;
        transform: translateX(-50%);
    }

    Best regards,
    Ismael

    in reply to: SumoMe Not Tracking Full Page #694131

    Hi,

    Thank you for the info.

    You will see within the screenshot that once the “aside” class has been added and new campaign has been started, Content Analytics tracks your page perfectly.

    What about the role attribute? Where do we have to apply it? We modified the code above. Please try it again.

    Best regards,
    Ismael

    in reply to: Submenu not accessable on android tablet #694130

    Hi,

    The site is still unavailable to us.

    Your access to this site has been limited
    Your access to this service has been temporarily limited. Please try again in a few minutes. (HTTP response code 503)
    Reason: Access from your area has been temporarily limited for security reasons

    What is the actual model of the android tablet? And the screen resolution?

    Best regards,
    Ismael

    in reply to: Accessibility #694129

    Hi,

    Yes, unfortunately, that will have to do for now because somehow the “focusout” event is not working.

    Best regards,
    Ismael

    in reply to: FEATURED EXPERTS | Our Instructors #693575

    Hi,

    1.) You can try the content slider element. Or create a post for each experts then use the post slider element.

    2.) If you’re using the image element, add something like this in the caption field.

    
    <div class="avia-button-wrap avia-button-center"><a href="http://www.google.com" class="avia-button avia-color-light avia-size-large avia-position-center "><span class="avia_iconbox_title">CLICK ME</span></a></div>
    

    Best regards,
    Ismael

    in reply to: Pagination blog grilled problem #693574

    Hi,

    Thank you for the update. You have to upgrade WordPress to version 4.6.1 as well because it contains a patch for the WP pagination issue. Please keep your installation up to date to keep the site working and secure.

    Best regards,
    Ismael

Viewing 30 posts - 39,061 through 39,090 (of 66,745 total)