Forum Replies Created

Viewing 30 posts - 14,761 through 14,790 (of 67,079 total)
  • Author
    Posts
  • in reply to: Left sidebar on single shoppage Enfold #1296033

    Hi,

    Thank you for following up.

    We updated the code in the functions.php file.

    
    /* zijbalk op productpagina */
    function ava534345953_init() {
    	add_action( 'woocommerce_after_single_product_summary', 'avia_add_sidebar', 25);
    	add_action( 'woocommerce_after_single_product_summary', 'avia_close_image_div_mod', 20);
    	add_action( 'woocommerce_before_single_product_summary', 'avia_open_image_div_mod', 1 );
    }
    
    function avia_open_image_div_mod() {
    	echo "<div class='product-main-container'>";
    }
    
    function avia_close_image_div_mod() {
    	echo "</div>";
    }
    
    function avia_add_sidebar() {
    	if(is_product()) {
    		$avia_config['currently_viewing'] = "shop_single";
    		get_sidebar();
    	}
    }
    add_action('init','ava534345953_init', 50);
    

    And use this css code instead.

    .product-main-container {
        width: 63%;
        float: right;
        margin-left: 50px;
    }
    
    .product-main-container::after {
    	content: '';
    	display: table;
    	clear: both;
    }
    
    .product-main-container .single-product-main-image, .product-main-container .single-product-summary  {
    	width: 100%;
    }
    
    #top #main .sidebar {
        border-left: 0;
        border-right-style: solid;
        border-right-width: 1px;
        margin-left: 0;
        margin-right: 50px;
        padding-right: 50px;
    }
    

    The widget area is now located in the sidebar.

    Best regards,
    Ismael

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

    Hi,

    Great! Glad it worked. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Burger menu styling #1296029

    Hi,

    Thank you for the info.

    The script that we provided in the previous thread will move the social icons inside the mobile menu, but since the social icons are not yet enabled in your site, the script has nothing to move.

    Please enable the social icons in the Enfold > Header > Extra Elements panel, then test it again. We can add a few css if you want the social icon to only display inside the mobile menu.

    Best regards,
    Ismael

    in reply to: Cookies Button Google Analytics #1296027

    Hi,

    Great! Glad to know that it is now working. Please feel free to open another thread if you need anything else. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    No problem. It is possible that not all elements require a name because its type (e.g FAQ, Breadcrumb) already describes the element effectively.

    Please do not hesitate to open another thread if you need anything else. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Left sidebar on single shoppage Enfold #1296022

    Hi,

    Thank you for the info.

    We tried to login using the account above but it seems to be invalid. Please check the info carefully or provide another admin account.

    Best regards,
    Ismael

    in reply to: Masonry Blog not as expected #1296021

    Hi,

    Thank you for the info.

    If I enter more text than the 2 words you did, there’s is only text and image and title disappear.

    That happens because the content or excerpt container in the masonry element is actually an overlay, which is above the image. To adjust the size of the image or to make most of it visible, you can use the following css code.

    .av-fixed-size .av-masonry-entry .av-inner-masonry-sizer {
        padding-bottom: 150%;
    }
    

    Default bottom padding value is 80%.

    You can also try a different masonry size settings.

    Best regards,
    Ismael

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

    Hi,

    Have you tried adding the font using @font-face instead of uploading it in the font manager? The font manager is originally created for Google Fonts, so it is possible that it is not able to process the custom font properly.

    // https://css-tricks.com/snippets/css/using-font-face/

    Best regards,
    Ismael

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

    Hi,

    1.) If you look at the screenshot closely, you will see that the menu ID in the EN version is 11472, not 11470.

    2.) The EN version is still displaying because it is set as the front page in the Settings > Reading panel. We reset the options to default.

    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: Logo Centered split menu is not responsive #1296003

    Hi,

    Thank you for the inquiry.

    Looks like you are not using a logo with transparent background. We can use this css code to adjust the size of the logo but it will overflow outside the header container.

    #header .logo img {
        max-width: 200px;
    }
    
    .logo, .logo a {
        height: 200px;
    }

    Best regards,
    Ismael

    in reply to: Publish Excerpt on (single product) page #1296002

    Hi,

    Alright. Using the the_excerpt or the get_the_excerpt function should help pull out the product description.

    // https://docs.woocommerce.com/document/display-post-excerpt-instead-of-full-content/

    Best regards,
    Ismael

    in reply to: Future/coming events not working properly #1295949

    Hi,

    Thank you for your patience.

    We updated the config-events-calendar/event-mod.css file to bring back the old or default layout of the single event page. Please make sure to purge the cache before checking the event.

    This is the modified css file.

    // https://pastebin.com/edCCDdY9

    Best regards,
    Ismael

    in reply to: Constrict size of a Grid Row #1295938

    Hey whdsolutions,

    Thank you for the inquiry.

    Would you like to limit the maximum width of the grid row container? You can use this css code for that.

    .responsive .container {
        max-width: 1400px;
    }
    

    And if you want to only apply it on a certain screen width, create a css media query.

    @media only screen and (min-width: 1600px) {
      /* Add your Desktop Styles here */
       .responsive .container {
           max-width: 1400px;
       }
    }
    

    Best regards,
    Ismael

    in reply to: Google Maps + Safari #1295936

    Hey whdsolutions,

    Thank you for the inquiry.

    We can see the issue on Safari but we cannot debug it properly because the scripts are minified and/or compressed. Please disable Autoptimize and the cache plugin temporarily, and post the login details in the private field so that we could check the issue further.

    Best regards,
    Ismael

    in reply to: Accordion title change when active #1295933

    Hey Byrne,

    Thank you for the inquiry.

    That should be possible with a little script in the functions.php file.

    
    // a custom script
    // toggle accordion's read more text
    function ava_custom_script_mod_read_less() {
        if ( wp_script_is( 'avia-default', 'registered' ) ) {
            wp_add_inline_script( 'avia-default', '
    		(function($) {
    			$(document).ready(function() {
    				$(".toggler").each(function() {
    					var active = $(this).is(".activeTitle"); 
    					if(active) {
    						$(this).text("Read Less");
    					}
    				});
    
    				$(".toggler").on("click", function(e) {
    					e.preventDefault();
    					var active = $(this).is(".activeTitle"); 
    					var content = $(this).html();
    					var innerText = $(this).text().trim();
    					
    					var new_content = content.replace(innerText, active ? "Read More" : "Read Less");
    
    					$(this).html(new_content);
    				});
    			});
    		})(jQuery);
    	');
        }
     }
     add_action( 'wp_enqueue_scripts', 'ava_custom_script_mod_read_less', 9999);
    

    Best regards,
    Ismael

    in reply to: Cookie Message Bar loads on every page of Multisite #1295802

    Hey 4pfelmus,

    Thank you for the inquiry.

    The consent bar did not come back after we accepted the cookies, so it looks like it is working as expected. Is this fixed?

    Did you set your browser to not accept cookies at all?

    Best regards,
    Ismael

    in reply to: Popup Cookie Handling doesn't work #1295801

    Hi,

    Thank you for the info.

    We tried disabling the Performance > File Compression settings, but it did not change anything. What happens when you disable the Elementor lightbox option, or when you disable the plugin completely?

    // https://elementor.com/help/lightbox/#:~:text=The%20lightbox%20feature%20is%20turned,Site%20Settings%20%3E%20Settings%20%3E%20Lightbox.

    Best regards,
    Ismael

    in reply to: specific url for homepage. #1295799

    Hi,

    Glad to know that the initial issue is fixed.

    and have their own sharable link.

    There should also be an embed code in the form of an iframe, close to the shareable link. You can copy that code and place it in a code block.

    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: Gallery doesn't show up till past it a little #1295798

    Hi,

    Thank you for the update.

    You can use this css code in the Quick CSS field to disable the gallery animation and make the items display immediately on page load.

    .avia-gallery-thumb img {
        opacity: 1 !important;
        -webkit-transform: scale(1) !important;
        transform: scale(1) !important;
        animation: none;
    }
    

    Best regards,
    Ismael

    in reply to: Blog Post Filter by Date #1295797

    Hey Dave,

    Thank you for the inquiry.

    How did you add the filter? By default, posts are sorted by published date and if you want to sort them based on a range of dates, you have to use the date_query parameter with the before and after dates.

    // https://developer.wordpress.org/reference/classes/wp_query/#date-parameters

    Best regards,
    Ismael

    Hey ohelayalah,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the admin menu issue? Or post the login details in the private field, and we will check the dashboard.

    “edit event in series” link.

    Do you mean recurring events? Please provide a link to one of these events as well so that we can check it.

    Best regards,
    Ismael

    in reply to: Flexible column layouts #1295792

    Hi,

    Yes, the code should work the same in the parent theme’s functions.php file, but in order to preserve it after a theme upgrade, you have to install a child theme. :)

    Best regards,
    Ismael

    in reply to: Issues with CSS #1295716

    Hey Frank,

    Thank you for the inquiry.

    The css media query is working properly on our end. Please check the screenshot below.

    Screenshot: https://imgur.com/BelvocZ

    Screen width in the screenshot is 400px.

    Best regards,
    Ismael

    Hey gregcarrollLMG,

    Thank you for the inquiry.

    It is possible before by using the showinfo parameter and by setting it to 0 or false, but that parameter was removed. Please check the documentation for more info about the deprecation notice.

    // https://developers.google.com/youtube/player_parameters#october-13,-2020

    Best regards,
    Ismael

    in reply to: oop-up contact form #1295712

    Hi,

    Alright. We modified the functions.php file via FTP and replace wp_head with wp_footer hook as suggested above. There are also some invalid syntax in the file but we already corrected those. The popup is now working correctly but for some reason, it has no background. Did you remove it?

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Product review doesn't show #1295711

    Hi,

    Thank you for the update.

    The review element works properly on our end, with or without a product review.

    // https://imgur.com/qXo2ind

    Please make sure that comments are also open or allowed in the Settings > Discussions.

    Best regards,
    Ismael

    in reply to: Sidebar does not show content #1295706

    Hi,

    We found a jQuery error in the console, which is generated from a WOOF script.

    Uncaught ReferenceError: jQuery is not defined
        at (index):278
    

    You may need to reload an old version of jQuery using this plugin.

    // https://wordpress.org/plugins/enable-jquery-migrate-helper/

    After the installation, go to the plugin’s panel, and set the jQuery version to “legacy”.

    Best regards,
    Ismael

    in reply to: Left sidebar on single shoppage Enfold #1295704

    Hey!

    Thank you for the update.

    For some reason, the forum breaks this code into two different lines, which creates the error.

    echo "</div>
    ";
    

    We corrected it above. Please try the snippet again.

    Best regards,
    Ismael

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

    Hi,

    There seems to be an issue with the core WP scripts when we edit a page using the ALB.

    Uncaught SyntaxError: Invalid or unexpected token
    load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils&ver=5.7.1:5 JQMIGRATE: Migrate is installed, version 3.3.2
    

    To properly debug it, please set these constants in the wp-config.php file.

    
    define("DEBUG", true);
    define("WP_DEBUG_DISPLAY", true);
    define("CONCATENATE_SCRIPTS", false);
    define("COMPRESS_SCRIPTS", false);
    define("COMPRESS_CSS", false);
    

    The background image is being saved properly, but it does not show in the front end because the URL is incorrect. (see private field)

    Do you have any idea why the URL is converted to that pattern? And what is the /tp1/ path?

    Best regards,
    Ismael

    in reply to: mismo tamaño de las imagenes en "grid row" #1295695

    Hi,

    Thank you for the update.

    In the charter page, the right image (1280x719px) is smaller than the left (1280x720px) by 1px, and it looks like a plugin is resizing it or adding a resize parameter in the image URL. Did you install an image optimization plugin?

    Best regards,
    Ismael

Viewing 30 posts - 14,761 through 14,790 (of 67,079 total)