Forum Replies Created

Viewing 30 posts - 7,231 through 7,260 (of 34,625 total)
  • Author
    Posts
  • in reply to: Cross copying enfold demo blocks/pages #1406730

    Hey QCConcepts,
    Please use the Avia Layout Builder Debugger to copy the Advanced Layout Builder shortcodes from one page/site to another.

    Best regards,
    Mike

    in reply to: Burger menu – sub menu overlap #1406728

    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: Grid Row Tablet View #1406727

    Hi,
    Please use this screen resolution tool and tell us what your iPad screen size is for landscape in the images above as there are a few different iPad sizes. Also tell us what version and iOS your iPad and Safari is. There are some older versions that have quirks with parallax.

    Best regards,
    Mike

    in reply to: Accordion, Portfolio, Heading #1406726

    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: Footer Widget #1406694

    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: Footer Widget #1406690

    Hi,
    Sorry I was looking at the post titles,
    Try this css:

    #footer.footer_color strong.widgettitle {
    	color: #000;
    }

    Best regards,
    Mike

    in reply to: Footer Widget #1406688

    Hi,
    I see this on your home page and your posts, please link directly to the page you don’t see this
    Enfold_Support_2024.jpeg

    Best regards,
    Mike

    Hi,
    The element is an iframe so you need to use the provided snippet from the publish twitter page, please include an admin login in the Private Content area so we can check your code snippet.

    Best regards,
    Mike

    in reply to: Footer Widget #1406685

    Hi,
    I see then when I check, try clearing your cache.

    Best regards,
    Mike

    in reply to: How to deactivate "creativework" schema.org #1406677

    Hi,
    I tested Ismael code above and it removed creativeWork schema for entries, if you want to change it to something more specific like PodcastSeries then use this code:

    function avf_markup_helper_attributes_modified($attributes, $args)
    {
        global $post;
    
        if ( $args['context'] == 'entry' ) 
        {
            if ( is_object( $post ) && 'post' !== $post->post_type ) 
            {
                
    	     $attributes['itemscope'] = 'itemscope';
                $attributes['itemtype']  = 'https://schema.org/PodcastSeries';
            }
        }
    
        return $attributes;
    }
    add_filter('avf_markup_helper_attributes', 'avf_markup_helper_attributes_modified', 10, 2);

    But sense you are using Rankmath for your schema you would probably be better off disabling the Automated Schema in the theme option Enfold Theme Options ▸ SEO Support, please note the text next to the option:

    The theme adds generic HTML schema markup to your template builder elements to provide additional context for search engines. If you want to add your own specific markup via plugins or custom HTML code, you can deactivate this setting

    Best regards,
    Mike

    in reply to: Footer Widget #1406676

    Hey daves1997,
    I assume you mean this:
    Enfold_Support_2020.jpeg
    this is because the color for the links is the same as the background color:
    Enfold_Support_2022.jpeg
    Try changing the black: #000000
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Do you mean the image size in the image element?
    Enfold_Support_2018.jpeg

    Best regards,
    Mike

    in reply to: images – masonry and iOS less than 13 #1406674

    Hi,
    Ok, I didn’t know about the iOS version locks, I mostly use Windows and only bought a secondhand Mac to test with it, it helps some.
    I will close this ask you have asked, thank you for all of your help :)

    Best regards,
    Mike

    in reply to: Menu seems to jump around with each page load #1406673

    Hi,
    Ok, I didn’t know that caching was an issue with LearnDash, perhaps another option would be to use the preloader at Enfold Theme Options ▸ Theme Options ▸ Page Preloading.

    Best regards,
    Mike

    in reply to: page without scrolling #1406672

    Hi,
    Try this css to hide the last cell below 1024px:

    @media only screen and (max-width: 1024px) { 
    	#top.page-id-12438 .pricing-table li:nth-child(8) {
    		display: none;
    	}
    }

    Best regards,
    Mike

    Hi,
    Please also enable WP Debug on the staging site.
    To turn on WP_DEBUG, find the following line of code to your wp-config.php file:

    define( 'WP_DEBUG', false );

    Then, replace “false” with “true” and save the file.
    Also enable debug logging, by adding the following line of code to your wp-config.php file below the above code:

    define('WP_DEBUG_LOG', true);

    Also include FTP access so we can see the debug.log error log, thank you.

    Best regards,
    Mike

    Hi,
    It seems to be working for me:
    Enfold_Support_2016.jpeg
    Your site doesn’t look like you set a height, try copying the code I used on page page linked below.

    Best regards,
    Mike

    in reply to: accordion slider headings align top #1406661

    Hi,
    I watched the “Computed” tab while I mouse-over the element with the div selected
    Enfold_Support_2014.jpeg
    just trial and error, hope this helps.

    Best regards,
    Mike

    in reply to: Grid Row Tablet View #1406660

    Hey Diana,
    Thank you for the link to your site and the screenshots, I believe there has been a misunderstanding about the grid row responsive display settings, the Grid Row > Advanced > set the mobile toggle point to tablet (>989px) doesn’t influence the setting Cell > Advanced > Responsive specified “hide on mobile devices” this is for <767px only.
    From your screenshots it looks like you are using an iPad and I assume the screen resolution is 1024px x 1366px so I disabled the “hide on mobile devices” for these 5 sections and added this css to your Quick CSS:

    @media only screen and (max-width: 989px) { 
    .responsive #top #wrap_all #design-engineering.av-break-at-tablet .flex_cell.av_two_fifth,
    .responsive #top #wrap_all #visualisierung.av-break-at-tablet .flex_cell.av_two_fifth,
    .responsive #top #wrap_all #modelling.av-break-at-tablet .flex_cell.av_two_fifth,
    .responsive #top #wrap_all #corporate-design.av-break-at-tablet .flex_cell.av_two_fifth,
    .responsive #top #wrap_all #personalagentur.av-break-at-tablet .flex_cell.av_two_fifth {
    	display: none;
    }
    }
    @media only screen and (min-width: 990px) and (max-width: 1440px) { 
    .responsive #top #wrap_all #design-engineering.av-break-at-tablet .flex_cell.av_two_fifth,
    .responsive #top #wrap_all #visualisierung.av-break-at-tablet .flex_cell.av_two_fifth,
    .responsive #top #wrap_all #modelling.av-break-at-tablet .flex_cell.av_two_fifth,
    .responsive #top #wrap_all #corporate-design.av-break-at-tablet .flex_cell.av_two_fifth,
    .responsive #top #wrap_all #personalagentur.av-break-at-tablet .flex_cell.av_two_fifth {
    	background-position-x: -13vw
    }
    }

    This gives you a single column and hide the image for mobile and smaller tablet in portrait mode and two columns above 990px for larger tablets and desktop.
    In my test background-position-x: -13vw seemed good for moving the image over to the left, but feel free to adjust to suit.

    Best regards,
    Mike

    Hey Gagik,
    On the publish twitter page after you enter your url, click the set customization options:
    Enfold_Support_2008.jpeg
    and add a height:
    Enfold_Support_2010.jpeg

    Best regards,
    Mike

    in reply to: page without scrolling #1406643

    Hi,
    I recommend adding the specific page IDs to the css above since this is not designed for every page, the page that you have linked to is very long so you will want to allow scrolling on.
    For example:

    @media only screen and (max-width: 767px) { 
    body#top.page-id-12020 {
    height: 100vh;
    }
    #socket > .container {
    padding-left: 0;
    padding-right: 0;
    }
    #top #my_section {
        height: calc(100vh - 120px);
    }
    }

    Best regards,
    Mike

    in reply to: Can’t see the price when using Enfold #1406642

    Hi,
    unfortunately, that didn’t work, please see the screenshot in the Private Content area.
    Try using the Temporary Login Without Password plugin:

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!

    Best regards,
    Mike

    Hi,
    Thanks for your patience, I have asked for help from the team to assist you.

    Best regards,
    Mike

    in reply to: accordion slider headings align top #1406640

    Hi,
    Glad this helped, it was hard because it is using percentages that change the value with screen sizes and in its different states, but a hard px value seems to correct.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: LOGO TESTATA PER MOBILE #1406639

    Hi,
    If you want to create a shipping option you will need to use a plugin, if you only want to show that a specific product has a shipping method for customer info try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_action( 'woocommerce_single_product_summary', 'product_attribute_dimensions', 25 );
    function product_attribute_dimensions(){
        global $product;
        $taxonomies = array('express');
        foreach($taxonomies as $taxonomy ){
            $value = $product->get_attribute( $taxonomy );
            if ( $value ) {
                $attribute_label_name = wc_attribute_label( $taxonomy );
    			echo '<p>Express Shipping:' . $value . '</p>';
            }
        }
    }

    the in your product attributes add a custom attribute named express with the value you wish 24/48 H
    Enfold_Support_2000.jpeg
    Then on the product page the attribute will show under the description and in the Additional information tab:
    Enfold_Support_2004.jpeg

    Best regards,
    Mike

    Hi,
    Thanks for the feedback, your second site is loading for me, but I don’t know why /?cat=-1 works on your site, I was unable to reproduce this on my site by changing my permalinks to match yours above.

    Best regards,
    Mike

    in reply to: Menu seems to jump around with each page load #1406617

    Hey guychalk,
    Thank you for the link to your site, I css that the css for these menu items, especially to show the word “search” is loading slowly.
    Typically enabling Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression or using a caching plugin would help with this, do you plan on using a caching plugin when you are done building your site? If so this should sort out then.

    Best regards,
    Mike

    in reply to: Speichern von Menü nicht mehr möglich #1406616

    Hey mexi33330,
    Please ensure that you are using Enfold v5.6 and a minimum of PHP v7.4, if this is true then try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.
    If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: accordion slider headings align top #1406615

    Hey sky19er,
    Please remove your custom css:

    #top .aviaccordion-preview-title {
        vertical-align: top !important;
    }

    and use this css instead:

    #top #main .aviaccordion-preview-title {
        vertical-align: top;
        padding-top: 20px;
    }

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

    Best regards,
    Mike

    in reply to: Layer slider not showing #1406613

    Hey enfold,
    Please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

Viewing 30 posts - 7,231 through 7,260 (of 34,625 total)