Forum Replies Created

Viewing 30 posts - 13,981 through 14,010 (of 35,007 total)
  • Author
    Posts
  • in reply to: Product slider breaks into 2 rows #1323460

    Hi,
    Very good, we will leave this thread open to hear back from you.

    Best regards,
    Mike

    in reply to: content 100% viewport on mobile landscape #1323459

    Hi,
    Thanks for the feedback, do you mean the width of the orange background or the blue bar at the top? I thought we were looking at the orange background. I don’t have an iPhone but I checked the page on a Mac with Safari in Responsive Design Mode using iPhone 8 plus and iPads in portrait and landscape and the background was full width, Please see the screenshots in the Private Content area.
    Try clearing your browser cache following these steps for Safari and note step 4 where you will Clear the History.

    Best regards,
    Mike

    in reply to: Cookie Hinweis mehrsprachige Website #1323454

    Hi,
    The only time I saw the cookie message was when the “Enable cookie consent messages” was activated, isn’t this what you meant? Perhaps I misunderstood. With Polylang I believe you need to use the Strings Translations to change the text language, I don’t believe it’s going to change automatically because Polylang changed the language codes.

    Best regards,
    Mike

    in reply to: Horizontal Scrolling Text in Header #1323450

    Hi,
    Thanks for tring , above you wrote “last woocommerce update which was faulty” and the error says “No such file or directory” so try deactivating your plugins and reinstalling woocommerce, perhaps a manual installation via FTP might be easiest. Perhaps you should also make a backup of your site.

    Best regards,
    Mike

    in reply to: Footer gone #1323362

    Hi,
    Glad Nikko was able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: RankMath not working with the Enfold editor #1323361

    Hey misterman,
    Thank you for your request, I submitted it to the Dev Team for review.

    Best regards,
    Mike

    in reply to: Horizontal Scrolling Text in Header #1323359

    Hi,
    I see that you are using PHP v8.0.10 on your server, please try downgrading to v7.x
    and then clear your caches. You may also want to deactivate your other WooCommerce plugins before re-activating the main WooCommerce plugin.

    Best regards,
    Mike

    in reply to: Color changes by headlines and symbol box for no reason #1323358

    Hey acardell887,
    Thanks for the login, I see you are using a caching and minifying plugin with the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression settings also active. When you make a chage please be sure to clear your caches, I logged into your first site abd cleared your plugin cache and the icon returned to red.
    2021-10-03_003.png
    It would be best to disable all of your caches while you are making changes to your site.

    Best regards,
    Mike

    in reply to: content 100% viewport on mobile landscape #1323356

    Hey Paul,
    Thanks for the feedback but I’m not seeing that your width is not 100% for landscape, but I do see that you have an un-closed media query rule at:

    /*---START I-PAD-PRO-STYLES---*/
    
    	@media only screen and (max-width: 1400px) {
    		/* Add your iPAD-PRO Styles here */

    this max-width: 1400px rule includes all of your other rules, so there is a good chance that if you are using Safari this is messing up the rest of your css.
    I’m using Chrome on Windows which is a little more forgiving.
    Try checking all of your css for other errors also, it may help to remove unused rules instead of commenting them out and removing extra comments.

    Best regards,
    Mike

    in reply to: Shortcodes not working in text widget anymore #1323355

    Hi,
    Glad to hear this helped, for the widget titles please try:

    #wrap_all .main_color h3.widgettitle {
    	color: #fff;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Header Layout: Logo left, Widgets right, menu below #1323354

    Hi,
    Thank you for your patience and the link to your site, in order to replate the Header Layout: Logo left, Widgets right, menu below on your site I had to change your header widget function from ava_main_menu to ava_after_main_menu for the widgets to be placed in the correct place.

    add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    dynamic_sidebar( 'header' );
    }

    and the order of this css needed to be 5, instead of 1

    .responsive #top #header #header_main .inner-container .main_menu {
        order: 5;

    now your header looks like the example, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: TOC widget content disappers after update to 4.8.6.3 #1323350

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: My Google Analytics does not work #1323348

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    For the search icon option please look at Enfold Theme Options ▸ Main Menu ▸ General ▸ Append search icon to main menu
    2021-10-03_001.png
    and for the menu option please under the menus
    2021-10-03_002.png

    Best regards,
    Mike

    in reply to: boxed layout #1323345

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Shortcodes not working in text widget anymore #1323344

    Hi,
    Thank you for your patience, to exclude your function from certain pages try changing to this:

    add_action('ava_before_footer','avia_footer_top_column');
    function avia_footer_top_column(){
    	if( ! is_page( array( 74, 76, 504 ) ) ) {
    	ob_start();
    	dynamic_sidebar( 'footertop' );
    	$footertop = ob_get_clean();
    
    	$output  = "<div class='container_wrap footer_color' id='footertop'>";
    	$output .= "<div class='container'>";
    	$output .= do_shortcode($footertop);
    	$output .= "</div>";
    	$output .= "</div>";
    	echo $output;
    	}
    }

    and edit the array page IDs to the ones you want to exclude: 74, 76, 504

    Best regards,
    Mike

    in reply to: Cookie Hinweis mehrsprachige Website #1323341

    Hi,
    Thank you for your patience and the login to your site, I found that for your custom shortcode [polylang_cookie_message]
    the language codes didn’t match your site, typically I would see en_US & de_DE as in your function but when I examined your site it was using en & de so I changed your function to this and nw it works correctly:

    add_shortcode( 'polylang_cookie_message', 'avia_polylang_cookie_message' );
    function avia_polylang_cookie_message() 
    {
    	$message = 'I agree to the terms and conditions laid out in the <a href="https://mywebsite.com/privacy/">Privacy Policy</a>';
    
        	$lang = pll_current_language('locale');
    		switch ($lang)
    		{
    			case 'en':
    			$message = 'I agree to the terms and conditions laid out in the <a href="https://mywebsite.com/privacy/">Privacy Policy</a>';
    			break;
    			case 'de':
    			$message = 'Durch die Nutzung unserer Angebote erklären Sie sich mit dem Setzen von Cookies einverstanden. Mehr erfahren Sie in unserer <a href="https://mywebsite.com/datenschutz/">Datenschutzerklärung</a>.';
    			break;
    		}
    
    	return $message;
    }

    It looks like your Polylang plugin allows you to manually set the language codes.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: boxed layout #1323336

    Hi,
    Thanks for the feedback, in this example I have added media queries because I note that this is not needed for smaller devices before the boxed layout takes effect, and as the screen width becomes larger the percentage needs to change. So give this a try and if you notice a certain size that needs more percentage you can add it with a media query.

    @media only screen and (min-width: 989px) and (max-width: 1460px) { 
    #top.page-id-26118 #wrap_all #header {
    	margin-left: -5% !important;
    }
    }
    @media only screen and (min-width: 1461px) { 
    #top.page-id-26118 #wrap_all #header {
    	margin-left: -7% !important;
    }
    }
    

    If you do find a certain size and your media query is not working as expected, then let us know so we can help.

    Best regards,
    Mike

    in reply to: widget format #1323332

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: undefined index error after update to Enfold 4.8.6.3 #1323312

    Hi,
    Thank you for the login, I corrected by editing \enfold\config-templatebuilder\avia-shortcodes\magazine\magazine.php
    line 544:
    if( 'disabled' == $atts['img_scrset'] )
    changed to:
    if( isset( $atts['img_scrset'] ) && 'disabled' == $atts['img_scrset'] )
    please clear your browser cache and check.
    This was found and corrected by the Dev Team and will be in the next update.

    Best regards,
    Mike

    in reply to: Sticky Header Mobile – Massive Gap Up Top #1323310

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hey TSPCart,
    For the Single Product Post Navigation you can enable at Enfold Theme Options ▸ Blog Layout ▸ Single Post Options ▸ Single Post Navigation
    2021-10-02_020.png
    I don’t believe this is available on category archive pages to the next category, I don’t recall it and it’s not showing on our Shop Demo.

    Best regards,
    Mike

    in reply to: How to make images display full width on mobile? #1323307

    Hi,
    Please add this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    @media screen and (max-width: 767px) {
    #top > #wrap_all, #footer-bg > div {
        width: 100% !important;
        max-width: 100% !important;
    }
    }

    After applying the css, please clear your browser cache and check.
    If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: boxed layout #1323304

    Hi,
    for this page please try this css:

    #top.page-id-19049 #wrap_all #header {
    	margin-left: -6.9%;
    }

    expected results:
    2021-10-02_019.png
    unfortunately, both pages have the “boxed” class so you will have to specify the page IDs for this css to work only on some pages.

    Best regards,
    Mike

    in reply to: Block resize #1323301

    Hey matteomelli,
    Thanks for the link to your site but I don’t see a Typography -> Font dimension option in the right sidebar in either the Block Editor nor the Classic Editor, perhaps this is a plugin addon?
    2021-10-02_017.png
    To change the text size of a textblock element the option is under the styling tab:
    2021-10-02_018.png
    Perhaps there is something else that is overriding your font size so if you could explain the exact block of text you are having an issue with and perhaps a screenshot of how you are trying to change it we could understand better.

    Best regards,
    Mike

    in reply to: widget format #1323300

    Hi,
    Thanks for the feedback, for page 1 I don’t see that you have added the css above, it will make the menu link text white for all 4 items when you are on those pages, please see the screenshot below.
    The blue area is the full width of your 1/5 column, on either side is the margin and padding from the page and from the next column, to make it larger please make your 1/5 column larger and the next column smaller, please see the screenshot below.
    For you page 2 the widget ID is different so you will need to add this css for it to work the same:

    #nav_menu-5 {
        background-color: #0098d2;
        margin-top: 8px;
        padding: 10px;
    }
    #nav_menu-5.widget li a {
        color: #000 !important;
        font-weight: normal;
    }
    #nav_menu-5.widget li a:hover {
        color: #fff !important;
    }
    #nav_menu-5.widget #menu-archiv > li.current_page_item > a {
    	color: #fff !important;
    }

    please see the screenshot below.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Please try this css:

    #chart_div tr,
    #chart_div table {
    	background: transparent;
    }

    2021-10-02_151102.jpg

    Best regards,
    Mike

    Hi,
    Thank you for your patience, this can easily be fixed by manually changing the url to “https://&#8221; and click “Save all settings” button at the top of the page.
    2021-10-02_007.png
    you do not have to use the “upload” button, you can manually enter the url to the image.
    If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 30 posts - 13,981 through 14,010 (of 35,007 total)