Forum Replies Created

Viewing 30 posts - 15,691 through 15,720 (of 66,126 total)
  • Author
    Posts
  • in reply to: Show tab Enfold Child to Role Editor #1251701

    Hi,

    You are most welcome! Please feel free to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Enfold masonry media description #1251700

    Hi,

    Thank you for the info.

    Yes, the diagram is correct. The code above should display the $loop_content or post_content which holds the image description. Did you remove the cache after doing the modification?

    Best regards,
    Ismael

    in reply to: Issues Moving Enfold to new URL or Directory #1251683

    Hi,

    I can’t change any of the settings.

    There is probably a script error in the dashboard. Have you checked the browser console? We might have to check the dashboard in order to inspect the issue properly. Please create a new thread and post the site details in the private field.

    Best regards,
    Ismael

    Hi,

    Is it possible to be sticky but scroll only until the end of the last menu element (mail social button)?

    This is not possible, unfortunately. The theme will only make the header sticky as long as its height is less than the browser view port. Otherwise, it will scroll along with the content to make sure that the content of the sidebar or side header is visible.

    Best regards,
    Ismael

    in reply to: Changes to CSS #1251674

    Hi,

    For the hover effect, we could use this css code.

    #top #header .av-main-nav > li:hover > a .avia-menu-text, #top #header .av-main-nav > li > a .avia-menu-subtext {
    	color: #efebe8;
    }
    

    And to correct the height of the sub menu, please add this one.

    .html_header_sticky #top .main_menu ul:first-child > li .sub-menu a {
    	height: 32px !important;
    	line-height: 32px !important;
    }
    

    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.

    Thanks!

    Best regards,
    Ismael

    in reply to: PRODUCT FILTER AND SIDEBAR #1251671

    Hi,

    The attribute filters or widgets is not compatible with the Product Grid element, unfortunately. The filter widgets will only work in the base shop page and the product archive pages.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: show event time in blog meta #1251670

    Hi,

    Thank you for the update.

    The event posts also have a published date which is what the blog template displays by default. The Blog Posts element is not really intended to display events but it can be modified if necessary.

    Please edit the includes > loop-index.php file and look for this code around line 377:

    echo "<time class='date-container minor-meta updated' >" . get_the_time( get_option( 'date_format' ) ) . '</time>';
    

    Replace it with:

    $time =  get_the_time( get_option( 'date_format' ) );
    
    					if(get_post_type(get_the_ID() == 'tribe_event')) {
    						$time = tribe_get_start_date(get_the_ID(), true);
    					} 
    
    					echo "<time class='date-container minor-meta updated' >" . $time . '</time>';
    

    This will display the event time instead of the published date if the post type is event.

    Best regards,
    Ismael

    Hi,

    This is not possible with the theme out of the box, so it will require a few modifications. Unfortunately, this is beyond the scope of support. You could instead make use of the browser caching by defining a longer expiry for the site resources.

    // https://gtmetrix.com/leverage-browser-caching.html

    Best regards,
    Ismael

    in reply to: Hide website logo until layer slider is complete #1251418

    Hey barrystrauss,

    Thank you for the inquiry.

    That should be possible but it will require a custom script (jQuery or vanilla Javascript). We could hide the logo initially, then only display it after a slider transition or after the logo animation is done.

    In one of the sliders, this should be possible using the Event Callback and the Slide Change Events . Please check the documentation for more info about the layer slider API.

    // https://layerslider.kreaturamedia.com/documentation/#layerslider-api

    Best regards,
    Ismael

    in reply to: Masonry not working properly in Chrome #1251414

    Hey Maw87,

    Thank you for the inquiry.

    The load more button seems to be appearing immediately on the page despite the fact that there are a lot of heavy images in the home page, and loading more items does not cause issues with scrolling, at least not when we tested it.

    Please try to update the theme to the latest version 4.7.6.4, then toggle the Performance > File Compression settings afterwards. You might also want to consider decreasing the number of images in the home page by using categories or sub pages.

    Best regards,
    Ismael

    in reply to: Layerslider – white page when i try to edit #1251412

    Hi!

    Thank you for the inquiry.

    The group_id column might be missing from the layerslider table in the database. Please check the following thread for a possible fix.

    // https://kriesi.at/support/topic/layer-slider-fails-on-enfold-update-4-6/#post-1159740

    Cheers!
    Ismael

    in reply to: Show tab Enfold Child to Role Editor #1251411

    Hey Marco,

    Thank you for the inquiry.

    Yes, the theme options page is only visible to administrators. Changing the condition will require modification of the core files. If you want to proceed, look for the file enfold\framework\php\class-superobject.php and this code around line 183:

    if( is_admin() ) {
    				add_action( 'admin_print_scripts',array( $this, 'set_javascript_framework_url' ) );
    				new avia_adminpages( $this );
    				new avia_meta_box( $this );
    				new avia_wp_export( $this );
    }

    These changes cannot be done in the child theme, unfortunately.

    Best regards,
    Ismael

    in reply to: Partner logos not working #1251410

    Hi,

    Thank you for the update.

    We did not find any logo slider element in the home page, so we created a draft page and included the element in it and we did not encounter any issue with it at all — all entries or items in the slider display properly. Please check the draft page in the private field.

    Best regards,
    Ismael

    in reply to: avia_forced_reroute=1 on custom 404 page url #1251408

    Hi,

    Thank you for the update.

    The theme will only add the avia_forced_reroute query when the Custom Error 404 Page is set to the third option. Please try to set it to the second option (Display selected page without redirect) instead.

    Best regards,
    Ismael

    in reply to: Change Woocommerce product sidebar to right side #1251405

    Hi,

    Thank you for the info.

    We adjusted the snippet in the functions.php file and added css code in the child theme’s style.css file. Please remove the browser history and purge the cache prior to checking the page.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    There seems to be no extra space below the header and the heading Solving Extreme Price Variations is now located in the middle of the page. Do you require more changes in this page?

    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.

    Thanks!

    Best regards,
    Ismael

    in reply to: Add horizontal fix menu for a e-shop #1251402

    Hi,

    We could add the menu element right under the header but this means modifying the template files directly. The main menu code is located in the includes > helper-main-menu.php file. Toggling the visibility of this menu on hover will also require custom code.

    Best regards,
    Ismael

    in reply to: Vimeo embed vs Enfold Video element #1251401

    Hi,

    We are not really sure why that particular video doesn’t work. Is this the only video that is not working? The second video in the page, which is the sample video, is working as it should.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Opening iframe modal with button click #1251398

    Hi,


    @kraftjungs
    : Where can we see the issue? Please open a new thread and post the necessary details in the private field so that we could check the issue. By headline, do you mean the Special Heading element?

    Best regards,
    Ismael

    in reply to: Blog Widget, Grid Layout show author and date/time #1251397

    Hi,

    Edit: I found it. Shortcodes folder needs to be right in the root of the child theme. Thanks everyone

    Alright. Glad it is fixed. You are welcome!

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    The videos are now playing automatically on page load. Please remove the browser history and purge the cache. We checked the site on Firefox Windows 10.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Horizontal Gallery – Images Loop – Bug Twice Clicks #1251393

    Hi,

    We have introduced the directory that contains the gallery
    config-templatebuilder/avia-shortcodes/gallery_horizontal

    We do not necessarily have to have the same structure as the parent theme because we already create a new shortcode path in the child theme. All we need to do is copy the gallery_horizontal folder including the files (php, css, js) from the parent theme to the new folder called shortcodes that we created and placed inside the child theme directory. After that, edit gallery_horizontal.php file, look for the extra_assets function and adjust the script and stylesheet path so that they point to the modified files in the child theme.

    
    		function extra_assets()
    		{
                            $child_theme_url = get_stylesheet_directory_uri();
    			wp_enqueue_style( 'avia-module-slideshow', $child_theme_url . 'shortcodes/slideshow/slideshow.css', array( 'avia-layout' ), false );
    
    			//load css
    			wp_enqueue_style( 'avia-module-gallery-hor', $child_theme_url . 'shortcodes/gallery_horizontal/gallery_horizontal.css', array( 'avia-module-slideshow' ), false );
    
    				//load js
    			wp_enqueue_script( 'avia-module-gallery-hor', $child_theme_url . 'shortcodes/gallery_horizontal/gallery_horizontal.js', array( 'avia-shortcodes' ), false, true );
    
    		}
    

    Best regards,
    Ismael

    in reply to: Single product page issue #1251391

    Hi,

    Thank you for the info.

    We could use this css code to correct the layout of the share box and the product tabs below.

    .product .av-share-box {
    	margin-bottom: 0;
    }
    
    .single .woocommerce-tabs {
    	position: relative;
    	top: 0;
    }
    

    Please purge the cache and toggle or temporarily disable the minification after adding the css code.

    Best regards,
    Ismael

    in reply to: How to import demos? (Import doesn't work) #1251388

    Hi,

    Thank you for the info.

    We checked the PHP info and noticed a few options that might help with the issue. Another user reported that by enabling the allow_url_fopen, allow_url_include and register_globals directives, he managed to import the demos properly. These directives are currently off or is not available in your server. You could disable them back after importing the demo for security reasons.

    These threads might also help.

    // https://kriesi.at/support/topic/enfold-demo-import-2/#post-1082170
    // https://kriesi.at/support/topic/demo-loading-help/#post-1068101

    Best regards,
    Ismael

    in reply to: Price and Size Filters #1251385

    Hi,

    Glad to know it is fixed. Please feel free to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    The latest version of the theme is v4.7.6.4, so you are actually testing older versions of the theme. Please download the latest version from your Themeforest account.

    Best regards,
    Ismael

    in reply to: Enfold isn´t blocking cookies #1251382

    Hi,

    Another user provided a snippet that might help in this case. The code checks if a certain cookie or cookies exist and only then it will load or render the Google Tag Manager script. You might be able to use the same code for Facebook Pixel.

    Please check the link below.

    // https://kriesi.at/support/topic/privacy-settings-google-tag-manager-analytics-active-even-after-opt-out/#post-1250086

    Best regards,
    Ismael

    in reply to: Remove Link on Image When Viewed in Lightbox View #1251381

    Hi,

    Thank you for the update.

    Would you like to remove the lightbox navigation? This css code should work.

    .mfp-arrow {
    	display: none !important;
    }
    

    Best regards,
    Ismael

    in reply to: Issues Moving Enfold to new URL or Directory #1251380

    Hi,

    So are you saying that the import feature only works on a fresh, untouched install?

    The import should work even on an old installation as long it has the latest version of the theme, and that the exported settings file is not corrupted or broken. Why do you have to reset the theme options and import it back? Are you just testing if importing works?


    @bridgeworx
    : Please create a new post or thread and post the details in the private field so that we could check the issue further. For more info about the theme and the installation process, please check the documentation.

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

    Best regards,
    Ismael

    in reply to: Enfold masonry media description #1251378

    Hi,

    Yes, the code above should display the value of the Description field.

    Did you add an excerpt or caption to the gallery? These fields will only display if the gallery item has a caption.

    Best regards,
    Ismael

Viewing 30 posts - 15,691 through 15,720 (of 66,126 total)