Forum Replies Created

Viewing 30 posts - 13,741 through 13,770 (of 66,017 total)
  • Author
    Posts
  • in reply to: Left sidebar on single shoppage Enfold #1295429

    Hey creatorke,

    Thank you for the inquiry.

    That is the default position of the widgets in the single product page, but we could adjust it using hooks or doing a bit of template modification.

    Please add this code in the functions.php file.

    add_action('init','ava_product_sidebar_init_mod', 50);
    function ava_product_sidebar_init_mod() {
    	remove_action( 'woocommerce_before_single_product_summary',  'avia_close_image_div', 20);
    	add_action( 'woocommerce_before_single_product_summary',  'avia_close_image_div_mod', 20);
    	add_action( 'woocommerce_after_single_product_summary', 'avia_add_sidebar_mod', 19);
    }
    
    function avia_close_image_div_mod() {
    	echo "</div>";
    }
    
    function avia_add_sidebar_mod() {
    	global $product, $avia_config;
    	if( is_product() ) {
    		$avia_config['currently_viewing'] = "shop_single";
    		get_sidebar();
    	}
    }
    

    And insert this css code in the Quick CSS field to move the sidebar to the left.

    .single-product-main-image {
        width: 25%;
    }
    
    .single-product-summary {
        overflow: hidden;
        width: 45%;
        float: right;
        margin-right: 5%;
    }
    
    .single-product .sidebar {
        width: 25%;
    }
    

    Best regards,
    Ismael

    in reply to: Favicon causes mixed content warning over ssl #1295426

    Hey Tobias,

    Thank you for the inquiry.

    Delete the current favicon in the Theme Options, then upload it back. Or edit the image URL in the field, and replace http with https. That should fix the issue.

    Best regards,
    Ismael

    Hey aboderc,

    Thank you for the inquiry.

    The issue with the pagination has been fixed in the latest version of the theme, v4.8.1. Please upgrade the theme to the latest version and purge the cache afterwards.

    Best regards,
    Ismael

    in reply to: Submenu links to tab sections #1295422

    Hi,

    Thank you for the inquiry.

    You have to use an additional script in order to make it scroll or jump to the actual section, after clicking the menu item with the anchor. Please check the script that we provided in the following thread.

    // https://kriesi.at/support/topic/anchor-links-scrolling-to-tab-section-not-working/#post-1289536

    You may need to adjust the selector on the following line, depending on the actual element or link that contains the anchor.

    scrollToTab( '.menu-item a', 'click' );
    

    Best regards,
    Ismael

    in reply to: Adding subfolder image to a Gallery not working #1295419

    Hey nanwar,

    Thank you for the inquiry.

    The plugin worked fine with the gallery when we tested it on our installation. Please check the screenshot of the media library and the actual gallery below.

    // https://imgur.com/Jdw1aXA
    // https://imgur.com/MabWeu7

    Please try to deactivate the other plugins in your installation, then test the gallery again.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    It looks like an issue with a plugin using the add_submenu_page function, which is using an invalid type in the 7th parameter. To check the issue properly and to trace the error, we have to enable the debug mode in your installation. Please check the following documentation for more info about debugging.

    // https://wordpress.org/support/article/debugging-in-wordpress/#wp_debug_display

    Best regards,
    Ismael

    in reply to: Archive settings – How to change #1295256

    Hi,

    Looks like this is working properly now. The posts limit in the archive pages (see private field) can be adjusted in the Settings > Reading panel. Look for the Blog pages show at most field or option.

    And if you want to disable or toggle the pagination, use this filter in the functions.php file.

    add_filter("avf_post_slider_args", function($atts) {
    	$atts["paginate"] = "no";
    	return $atts;
    }, 10, 1);
    

    Set paginate again to “yes” if you want to enable it back.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Try to use this css code instead to enable the indicator for the grand parent menu item.

    #top #avia-menu .current-page-ancestor .avia-menu-fx {
        position: absolute;
        bottom: 0;
        opacity: 1;
        visibility: visible;
        background-color: #03093b !important;
    }
    

    Best regards,
    Ismael

    in reply to: Text right alignment on LayerSlider WP #1295247

    Hi,


    @adanari
    : Where did you add that section or slider? We cannot find it in the home page. Please open a new thread and provide a direct link to the page containing the layer slider in the private field. We will close this one for now.

    Best regards,
    Ismael

    in reply to: Sticky sidebar widget with Enfold #1295244

    Hey mrgoe,

    Thank you for the inquiry.

    Have you tried any of the plugins listed below?

    // https://wordpress.org/plugins/sticky-menu-or-anything-on-scroll/
    // https://wordpress.org/plugins/toast-stick-anything/

    They should allow you to make any element stick by providing the elements’ class name or ID.

    Best regards,
    Ismael

    in reply to: GDPR Message #1295238

    Hey holbizmetrics,

    Thank you for the inquiry.

    When using a different translation plugin, this is done automatically or you have the option to change the settings for different language, but with Polylang, you have to create a custom shortcode that checks for the current language and display the appropriate content, as shown in the following thread.

    // https://kriesi.at/support/topic/gdpr-feature-polylang/#post-1074324
    // https://kriesi.at/support/topic/cookie-consent-message-erscheint-immer-wieder/#post-992984

    Another solution can be found in the following thread.

    // https://kriesi.at/support/topic/how-to-translate-cookie-consent-message/#post-945946

    Best regards,
    Ismael

    in reply to: Full Slider Video Embed – Auto Play #1295219

    Hey Brian,

    Thank you for the inquiry.

    Did you mute the videos in the slider? The videos are automatically playing on our end — checked on Chrome.

    Best regards,
    Ismael

    Hey AlexR,

    Thank you for the inquiry.

    We can use the following filter in the functions.php file to add the name attribute to the faq schema markup, but it seems not necessary because the tool is not returning any errors.

    add_filter('avf_markup_helper_attributes', 'avf_markup_helper_attributes_modified', 10, 2);
    function avf_markup_helper_attributes_modified($attributes, $args) {
    	if( $args['context'] == 'faq_section' ) {
    	    $attributes['name'] = 'FAQ';
    	}
    	return $attributes;
    }

    Best regards,
    Ismael

    in reply to: Language flag icons in menu are not aligned with text #1295124

    Hey NoraGTS,

    Thank you for the inquiry.

    1.) Did you add the css code in the child theme’s style.css file? You may need to check if the ID of the menu item in the DE version is different, or if the css selector is correct.

    2.) You have to set the DE as the main language in Polylang and in the Settings > General panel.

    // https://polylang.pro/doc/configure-the-languages/

    Best regards,
    Ismael

    in reply to: Swipe the "content slider" on the phone #1295120

    Hey Severin,

    Thank you for the inquiry.

    That is the default behavior of the navigations or of the content slider. If you want to enable both, you will have to modify the enfold/config-templatebuilder/avia-shortcodes/contentslider/contentslider.php file and adjust this block of code around line 769 so that both navigation display regardless of the set option in the element.

    if( $navigation == 'dots' ) 
    					{
    						$output .= $this->slide_navigation_dots();
    					}
    
                        if( $navigation == 'arrows' ) 
    					{
    						$output .= $this->slide_navigation_arrows();
    					}
    

    If you do not want the actual arrow to display, use this css to hide it.

    .avia-slideshow-arrows.avia-slideshow-controls {
       display: none !important;
    }

    Best regards,
    Ismael

    in reply to: How put two functional arrows in the Tab Section ? #1295116

    Hi,

    Thank you for following up.

    You can use the .av-tabsection-nav-prev and .av-tabsection-nav-next selectors to style the navigation. Example:

    .av-tabsection-nav-prev, .av-tabsection-nav-net {
       position: absolute;
       color: red;
       top: 100px;
    }
    
    .av-tabsection-nav-prev {
       left: 20px;
    }
    
    .av-tabsection-nav-next {
       right: 20px;
    }

    @Guennie007: We could check for the parent container and find the active tab from there instead of directly using the .av-active-tab-title selector.

    Best regards,
    Ismael

    Hi,

    The rating is still beside the product title when we checked the site. Did you put it back?

    To create more space between the product title and the price, try use this css code.

    a.woocommerce-LoopProduct-link.woocommerce-loop-product__link div.inner_product_header div.inner_product_header_table div.inner_product_header_cell h2.woocommerce-loop-product__title {
        padding-bottom: 50px;
    }
    

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after doing the changes.

    Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    Glad to know that it is now working correctly. Please feel to open a new thread if you need anything else. A termite extinguisher for the previous server might help. :D

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Typewriter Animation Not Working in My Color Section #1295099

    Hi,

    Sorry about that. I got a bit confused. :)

    Sorry for the confusion, but I mentioned in ONLY worked outside the color selection element.

    But the rotator in the above page is inside a color sectio, and it is working correctly. Please check the screenshot below.

    // https://imgur.com/671qIK6

    Best regards,
    Ismael

    in reply to: Homepage Masonry Gallery Not Loading Images #1295098

    Hi,

    Did you purge the cache and toggle the Performance > File Compression settings after adding the css code?

    Does it work correctly when you temporarily remove the layer slider? Please post the login details in the private field so that we could properly check the issue.

    Best regards,
    Ismael

    in reply to: Iconfont Manager Error #1295096

    Hi,

    No worries. Please do not hesitate to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Enfold child theme appearance not showing well #1295093

    Hey!

    That is good to know. Please feel free to open another thread if you need additional assistance. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: How to customize position of cookie consent box? #1295092

    Hi,

    Thank you for following up.

    Is the Performance > File Compression settings enabled when you added the css? You may need to disable that settings temporarily, or toggle it after adding the changes.

    Best regards,
    Ismael

    Hi,

    We have checked the Quick CSS field and looked for any invalid css code, but we did not find any. However, the child theme’s style.css file is empty. Did you edit that file? It should contain info about the child theme and it should point to the parent theme.

    Please correct it by adding the following code, but before doing so, make sure that there is a site backup and a restore point.

    Example:

    /*
    Theme Name: Enfold Child
    Description: A <a href='http://codex.wordpress.org/Child_Themes'>Child Theme</a> for the Enfold WordPress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating will be much easier then.
    Version: 1.0.1
    Author: Kriesi
    Author URI: http://kriesi.at
    Template: enfold
    */
    
    /*Add your own styles here:*/
    
    

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Icon Boxes & Read More on Blog #1295085

    Hi,

    Thank you for the update.

    Try to edit the themes/enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.php file, and look for this code around line 712.

    	$permalink = '
    <div class="read-more-link"><a href="' . get_permalink( $the_id ) . '" class="more-link">' . __( 'Read more', 'avia_framework' ) . '<span class="more-link-arrow"></span></a></div>
    ';
    

    You can also use the POEdit software and add the translations to the language files manually.

    // https://poedit.net/

    Best regards,
    Ismael

    in reply to: CSS font style not transferred to mobile display #1295083

    Hi,

    Thank you for the info.

    Can we have access to the font? We would like to check the files and test it on our own installation. Please post the info in the private field.

    Is it displaying properly when the Performance > File Compression settings are disabled?

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    The site contains a deprecated version (3.5.4) of the theme, which is no longer compatible with WordPress and most of the natively configured plugins. You have to manually download the latest version (4.8.2) of the theme from your Themeforest account, and upload it manually to your installation via FTP.

    Please check the following documentation for more info on how to properly update the theme through FTP.

    // https://kriesi.at/documentation/enfold/theme-update/

    Best regards,
    Ismael

    Hi,

    Did you set a Custom Error 404 Page in the Theme Options? Try to adjust it to the second option to omit the avia_forced_reroute=1 parameter from the URL.

    Best regards,
    Ismael

    Hi,

    No problem. Please feel free to create a new thread should you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Color Section – Cannot Edit or Save Background Image #1295077

    Hi,

    Thank you for the info.

    This is odd. The background image gets automatically removed from the color section when we save the changes. Can we deactivate the security plugin temporarily? You may also have to ask the host if the server cache can be disabled.

    We have also found this error in the browser console, but we are not yet sure what is causing it or why the avia_framework_globals is undefined.

    post.php?post=74&action=edit:99 Uncaught SyntaxError: Invalid or unexpected token

    avia_dynamic_templates.js?ver=5.0:20 Uncaught ReferenceError: avia_framework_globals is not defined
    at avia_dynamic_templates.js?ver=5.0:20
    at avia_dynamic_templates.js?ver=5.0:415

    Best regards,
    Ismael

Viewing 30 posts - 13,741 through 13,770 (of 66,017 total)