Forum Replies Created

Viewing 30 posts - 271 through 300 (of 63,979 total)
  • Author
    Posts
  • in reply to: Change color of mouse over titles #1470060

    Hi,

    Thank you for the update.

    We adjusted the css a bit so that it only applies on desktop view. Please make sure to purge the cache or remove the browser history before checking.

    @media only screen and (min-width: 768px) {
    	/* Add your Desktop Styles here */
    	#top #wrap_all .all_colors .av-masonry-entry h3 {
    		color: #fff;
    	}
    
    	#top
    		.av-caption-style-overlay
    		.av-masonry-item-with-image
    		.av-inner-masonry-content {
    		background: rgba(0, 0, 0, 0.35);
    		-webkit-backdrop-filter: blur(3px);
    		backdrop-filter: blur(3px);
    	}
    }
    

    Best regards,
    Ismael

    in reply to: Load time – scripte – lighthouse speed test #1470059

    Hi,

    Thank you for the update.

    in my site run wp-rocket …. this plugin is the best on market …

    What’s “best in the market” may not be what’s best for your site. As mentioned above, this might require some experimentation due to the number of plugins or scripts added. Did you follow the instructions in the articles we posted above? We checked the site and found that the images are not compressed or could benefit from optimization, such as using smaller dimensions.

    Best regards,
    Ismael

    in reply to: Hiding only logo in home page #1470058

    Hi,

    Thank you for the update.

    How could I indicate center alignment only to Text Caption?

    Try adding this css code:

    #top .avia-slideshow .av-slideshow-caption.av-m2fnm33t-7194a2c2891f3e7874849bd5c29c844f__0 .avia-caption-content p {
        text-align: center;
    }

    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

    Hi,

    Thank you for the update.

    Try including this filter as well:

    add_filter('woocommerce_gallery_thumbnail_size', 'avf_custom_single_product_gallery_thumbnail_size');
    function avf_custom_single_product_gallery_thumbnail_size() {
        return 'full';
    }
    

    Best regards,
    Ismael

    in reply to: Add Pages to Author Role #1469969

    Hey John,

    Thank you for the inquiry.

    You can use the User Role Editor plugin (link below) or add the following code to the functions.php file:

    function ava_add_author_capabilities() {
        $role = get_role('author');
        if ($role) {
            $role->add_cap('edit_pages');
            $role->add_cap('edit_others_pages');
        }
    }
    add_action('admin_init', 'ava_add_author_capabilities');

    Plugin: https://wordpress.org/plugins/user-role-editor/

    Best regards,
    Ismael

    Hey Jason,

    Thank you for the inquiry.

    Please try to add this filter in the functions.php file to use the default thumbnail size:

    add_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_wc_before_shop_loop_item_title_img_size_mod', 10, 1 );
    function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) {
        return 'woocommerce_thumbnail';
    }

    Best regards,
    Ismael

    in reply to: Load time – scripte – lighthouse speed test #1469964

    Hey strumpumpel,

    Thank you for the inquiry.

    Reduce JavaScript execution time to 11.2 s

    This can typically be improved by installing a cache and compression plugin. Have you done any speed optimization on the site? If not, please refer to the articles below. However, keep in mind that achieving optimal results may require some experimentation due to the various combinations of options, plugins, and other scripts.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
    // https://gtmetrix.com/wordpress-optimization-guide.html

    Best regards,
    Ismael

    in reply to: License expired so no support available… #1469963

    Hi,

    Thank you for the update.

    How did you place the Embed block inside a Text Block element? The issue might be due the avia_small_fixes function in the wp-content\themes\enfold\js\avia.js file:

    function avia_small_fixes(container)
    	{
    		if(!container) container = document;
    
    		//make sure that iframes do resize correctly. uses css padding bottom iframe trick
    		var win		= jQuery(window),
    			iframes = jQuery('.avia-iframe-wrap iframe:not(.avia-slideshow iframe):not( iframe.no_resize):not(.avia-video iframe)', container),
    			adjust_iframes = function()
    			{
    				iframes.each(function(){
    
    					var iframe = jQuery(this), parent = iframe.parent(), proportions = 56.25;
    
    					if(this.width && this.height)
    					{
    						proportions = (100/ this.width) * this.height;
    						parent.css({"padding-bottom":proportions+"%"});
    					}
    				});
    			};
    
    			adjust_iframes();
    
    	}
    

    Best regards,
    Ismael

    in reply to: Search symbol on the left side of main menu is blank #1469962

    Hi,

    Thank you for the update.

    it seems that every data- is tilted from the DOM there – f.e. data-av_icon=”” is on your DOM : av_icon=””

    Please provide the login details in the private field so that we can investigate the issue mentioned by @Guenni007 above.

    Best regards,
    Ismael

    in reply to: Result search page edit #1469961

    Hi,

    Thank you for the update.

    On the first link or page, the pagination is positioned above the post, which means that the modification works. If you’d like to adjust the counter container, please try adding this css code:

    #top .template-search.content .entry-content-wrapper {
        padding-right: 50px;
    }

    Best regards,
    Ismael

    in reply to: bug with enford and licence #1469960

    Hey Hichem Bouchouareb,

    Thank you for the inquiry.

    The logo is actually rendering but it’s white, so it’s not visible against the background. You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect. By disabling the file compression settings, you will be able to make the necessary adjustments and updates without any conflicts. Once you have made the required modifications, you can re-enable the file compression settings to optimize the performance of your website.

    Regarding the support license, this new policy is imposed by Themeforest, which now limits the duration of support validity. This change means that support for certain items purchased from Themeforest is only available for a fixed period after purchase, requiring renewal if further assistance is needed beyond the timeframe.

    Best regards,
    Ismael

    in reply to: Openi Accordion Tabs with Javascript #1469959

    Hi,

    Thank you for the update.

    I have copied the code to the single page where I want this behaviour.

    Where did you add the script? This should be added in the functions.php file. Please provide a test page so that we can check the modification.

    Best regards,
    Ismael

    in reply to: Hiding only logo in home page #1469958

    Hi,

    Thank you for the update.

    You can use this css code to hide the logo on the homepage:

    .home .logo.avia-standard-logo {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: Enfold Update – broken page links #1469819

    Hi,

    Thank you for the update.

    We’re not able to reproduce the issue on our end. The links are functioning as expected, and the slider or banner is displaying correctly. Could you specify which links are having this issue?

    Best regards,
    Ismael

    in reply to: Remove Privacy policy hyperlink in socket #1469818

    Hi,

    Great! Glad to know that this has been resolved. Let us know if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: OpenStreetMap – full screen width #1469817

    Hi,

    Thank you for the update.

    We’re not quite sure where the extra space is coming from, but you can try this css code to pull the bottom section upward.

    #section-container-width {
        margin-bottom: -8px;
    }

    Best regards,
    Ismael

    in reply to: Enfold Editor Not Loading #1469816

    Hi,

    Thank you for the update.

    We tried to copy the shortcode from the staging site to a new page, but the error generated by the WP ERP plugin still occurs. Also, the editor reverts to the default editor after updating the page. Can you reproduce this issue? (see the private field.)

    load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-hooks&ver=e827396fc34e6c62a26ca19ef49468b3:2 Uncaught TypeError: a(…).tipTip is not a function
    at Object.initTipTip (erp.min.js?ver=1.13.3:1:4772)
    at Object.initialize (erp.min.js?ver=1.13.3:1:4721)
    at HTMLDocument. (erp.min.js?ver=1.13.3:1:14523)
    at e (load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-hooks&ver=e827396fc34e6c62a26ca19ef49468b3:2:27028)
    at load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-hooks&ver=e827396fc34e6c62a26ca19ef49468b3:2:27330

    Have you tried recreating this page from scratch?

    Best regards,
    Ismael

    in reply to: Button link to open a video in a Lightbox help (please!) #1469815

    Hey bradmon,

    Thank you for the inquiry.

    The theme should automatically detect YouTube videos and open them in a lightbox, provided that the Enfold > Theme Options > Lightbox Modal Window option is enabled. Please check if this option is active.

    Best regards,
    Ismael

    in reply to: Frontend: Not displaying image title on hover #1469814

    Hi,

    Thank you for the update.

    There is no option for this by default but you can modify the script provided by @Guenni007 above to only apply on Image elements with a specific class name such as “av-no-title-hover”. You can apply the class name in the Image elements’ Advanced > Developer Settings > Custom CSS Class field.

    function temporary_removal_title_tags(){
    ?>
    <script>
      window.onload = function() {
          var elements = document.querySelectorAll('.av-no-title-hover a[title], .av-no-title-hover img[title]');
          for (var i = 0; i < elements.length; i++) {
              var element = elements[i];
              element.onmouseover = function() {
                  this.setAttribute("data-tooltip", this.title);
                  this.title = "";
              };
              element.onmouseout = function() {
                  this.title = this.getAttribute("data-tooltip");
              };
              element.onmousedown = function() {
                  this.title = this.getAttribute("data-tooltip");
              };
          }
      };
    </script>
    <?php
    }
    add_action('wp_footer', 'temporary_removal_title_tags');
    

    Best regards,
    Ismael

    in reply to: Full Screen Slider Issues #1469812

    Hey kurson,

    Thank you for the inquiry.

    Please try to add this css code to display the dots back on mobile view:

    .avia-fullscreen-slider .avia-slideshow-controls a, .avia-fullscreen-slider .av-control-minimal .avia-slideshow-controls a {
        opacity: 1;
    }

    Best regards,
    Ismael

    in reply to: Theme files visible on google #1469811

    Hey mvi,

    Thank you for the inquiry.

    We don’t see any exposed theme files in the Google search results when we searched for the domain name. If the issue still exists on your end, try using a robots.txt file to disallow crawlers from accessing the files. Please check the link below:

    // https://yoast.com/help/how-to-edit-robots-txt-through-yoast-seo/

    Best regards,
    Ismael

    in reply to: Use Advanced Custom Layout with related posts #1469810

    Hey agenceambe,

    Thank you for the inquiry.

    There is no option for this by default, and implementing this feature will require modifications that are beyond the scope of support. You have the option to hire a freelancer who can assist with the customization. You can find freelancers who specialize in theme customization by visiting our customization page.

    If you have any other questions or require further assistance, please feel free to let us know.

    Best regards,
    Ismael

    in reply to: Wrong thumbnail trying to load on Android phone #1469809

    Hi,

    Did you change the login URL? We can’t access the login or admin page using the default login URL. Please provide the custom URL in the private field.

    Best regards,
    Ismael

    Hi,

    Great! Glad to know that this has been resolved. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Blog Layout #1469806

    Hi,

    I’m not sure if I need to open another topic on this. But here is my issue.

    Yes, please open a new thread for this unrelated inquiry. We’ll close this thread for now.

    Best regards,
    Ismael

    in reply to: Funky PHP Trouble #1469805

    Hi,

    While doing all this, I also realized that this site is running an older version of the Enfold Parent. (4.x)

    Have you tried removing the older version and updating the theme to version 6.0.6? Looks like you didn’t place the theme files in the correct folder.

    friends/wp-content/themes/assets/header.php
    

    The path should be:

    friends/wp-content/themes/enfold/header.php
    

    Best regards,
    Ismael

    in reply to: Home page photo #1469804

    Hey Mariarita,

    Thank you for the inquiry.

    Would you like to adjust the position of the background on mobile view? Please try to add this css code:

    @media only screen and (max-width: 767px) {
    	/* Add your Mobile Styles here */
    	#top .avia-section.av-dbfgfq-f2644380a901f8b152d8e61b95c6c28b {
    		background-position: 80% 50%;
    	}
    }
    

    Best regards,
    Ismael

    in reply to: Home page text #1469803

    Hi,

    Thank you for the screenshot.

    You can try this css code instead:

    #top .av-special-heading.av-csfzhy-f690435c7a4f1368fea2bacd1626ec2f {
        text-shadow: -1px -1px 0 white,  
                     1px -1px 0 white,  
                     -1px 1px 0 white,  
                     1px 1px 0 white;
    }
    

    Best regards,
    Ismael

    in reply to: OpenStreetMap – full screen width #1469740

    Hey!

    Thank you for the inquiry.

    You may need to place the map inside a Color Section element, then set the width of the element container to 100%. Please check the documentation below for more info:

    // https://kriesi.at/documentation/enfold/color-section/#color-section-with-100-content-width

    Regards,
    Ismael

    Hey woogie07,

    Thank you for the inquiry.

    We may need to login to the site in order to properly check the issue. Please provide the login details in the private field.

    Best regards,
    Ismael

Viewing 30 posts - 271 through 300 (of 63,979 total)