Forum Replies Created

Viewing 30 posts - 13,891 through 13,920 (of 34,910 total)
  • Author
    Posts
  • 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

    in reply to: Product slider breaks into 2 rows #1323293

    Hi,
    Thank you for your patience and for the login, I removed the script that @Yigit had added so I could test and I made a duplicate of your product, it seems that the manually added Product Purchase Button causes this with the first following product slider, if the Product Purchase Button is removed or if it is placed at the after the product sliders this doesn’t occur.
    On the duplicate product page linked below I removed all other elements one at a time, and placed the Product Purchase Button in between two product sliders to demonstrate this.
    But I’m not able to reproduce this on a new install with Enfold and WooCommerce by copying your page shortcode to it, or by manually trying to recreate, in this screenshot you will the product slider doesn’t break, please note the products are from our Shop demo so they are different from yours but the page elements and layout is yours:
    2021-10-02_006.png
    So I don’t believe this is caused by the theme, perhaps it’s from one of your 28 plugins, you could investigate further by disabling them one at a time to find the one causing the error, or if you could use @Yigit’s solution above.

    Best regards,
    Mike

    in reply to: widget format #1323290

    Hi,
    Thank you for your patience, to make the current page menu item white please add this css:

    #nav_menu-4.widget #menu-galerien > li.current_page_item > a {
    	color: #fff !important;
    }

    I’m not sure what you want to set wide, if it is the widget then try increasing the parent column from 1/5 to a larger column.

    Best regards,
    Mike

    in reply to: Enfold conflict with Tooltips Pro plugin #1323289

    Hi,
    Thank you for the video, I tried to take a look at your test site but Enfold is not activated, can you please activate it.

    Best regards,
    Mike

    in reply to: Footer Navigation is missing after the update of today #1323288

    Hi,
    Please try removing your function and adding [nolink] to the Enfold Theme Options ▸ Footer ▸ Copyright field
    2021-10-02_005.png

    Best regards,
    Mike

    in reply to: entypo-fontello missing in version 4.8.6.2 #1323285

    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: entypo-fontello missing in version 4.8.6.2 #1323272

    Hi,
    Thank you for the link to your sites, while examining your production site I saw an error in the console that pointed to the avia_framework_globals url had an unrecognized character that broke the url, this is a screenshot to show the comparison note the new line in the url:
    avia_framework_globals_error_compare.png
    this space or empty character was also visible in the permalink settings:
    permalink_url_error_compare.png
    and while I found no odd characters in your WordPress ▸ Settings ▸ General ▸ WordPress Address (URL) & Site Address (URL) re-entering the urls and saving solved
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: A few small issues and a shop page question #1323156

    Hey Dzimnikov,
    Thank you for the link to your site, I checked your orange slider button on the second slide in Chrome, Firefox, & Edge on Windows 10 desktop and the text looks centered to me.
    2021-10-01_005.png
    the emails also seem centered on large mobile (425px)
    2021-10-01_006.png
    but on small mobile the text goes off the screen as you said, you could use word-break, but since it an email I believe it would be better to reduce the font size:

    @media only screen and (max-width: 420px) { 
    	#top #main #homeamenities h4 {
    		 font-size: 18px !important;
    	}
    }

    I would also recommend reducing your font size for the slider elements on mobile, but try using the layerslider custom css field for the slider elements.
    For the cart button try this css:

    .html_visible_cart #header_main .cart_dropdown {
        right: 20px;
    }

    The login to your site didn’t work for me, but to sort your products on the shop page try going to Customizer → WooCommerce → Product Catalog and sort by most recent:
    2021-10-01_007.png

    Best regards,
    Mike

Viewing 30 posts - 13,891 through 13,920 (of 34,910 total)