Forum Replies Created

Viewing 30 posts - 11,011 through 11,040 (of 67,443 total)
  • Author
    Posts
  • in reply to: Header transparency is not kept in mobile view #1348227

    Hi,

    Thank you for the update.

    If you want to adjust the color of the burger menu icon instead, try to use this css code.

    @media only screen and (max-width: 989px) {
        .html_mobile_menu_tablet .header_color div .av-hamburger-inner, .html_mobile_menu_tablet .header_color div .av-hamburger-inner::before, .html_mobile_menu_tablet .header_color div .av-hamburger-inner::after {
            background-color: #000000;
        }
    }
    

    And FYI, it is common practice to place css media queries at the very bottom of the stylesheet or in this case at the very bottom of the Quick CSS field.

    Best regards,
    Ismael

    in reply to: Dot in Content slider #1348225

    Hi,

    Thank you for the inquiry.

    The navigation dots are not visible because of the following css code, which was probably added in the Quick CSS field.

    .avia-slideshow-dots a {
        display: none;
    }
    

    You have to remove the code or override it using this css.

    .avia-slideshow-dots a {
        display: inline-block;
    }
    

    Best regards,
    Ismael

    in reply to: Header transparency is not kept in mobile view #1348188

    Hey stella-experience,

    Thank you for the inquiry.

    That is the default style of the header on tablet and phone view. We can use this css code in the Quick CSS field to revert back to the transparent header, but it might cause layout issues on mobile view.

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .responsive.html_mobile_menu_tablet #top #wrap_all #header {
        position: fixed;
        width: 100%;
        float: none;
        height: auto;
        margin: 0 !important;
        opacity: inherit;
        min-height: 0;
    }
    }
    

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

    in reply to: How to match Author page layout to Blog page layout #1348187

    Hi,

    Thanks for following up.

    We may need to access the site in order to check this modification further. Please post the login details in the private field and make sure that the Appearance > Theme File Editor panel is accessible.

    Best regards,
    Ismael

    in reply to: Blog Post Grid 3 Columns on both Desktop and Mobile #1348185

    Hi,

    Glad @Mike was able to help. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    We checked the enfold_child.css file and the Quick CSS field and we didn’t find any css errors. We did find a missing # in one of the color fields in the Enfold > General Styling > Logo Area panel, but fixing this color value didn’t change anything. Is it working correctly when the cache and compression plugins are disabled?

    Best regards,
    Ismael

    in reply to: anker link #1348183

    Hey dondela,

    Thank you for the inquiry.

    Yes, this should be possible if you intend to place the navigation or anchors in the page sidebar. You can then separate the sections using the columns, color sections or grid row elements and apply the ID or anchor to them. However, it will require more modifications if you need to actually copy the navigation and layout of the site.

    Best regards,
    Ismael

    in reply to: issue with accordian #1348182

    Hi,

    Thank you for the update.

    The site was still loading the older versions of the scripts and stylesheets, so we temporarily disabled the Enfold > Performance > File Compression settings to regenerate the files. The accordion element is now working properly. (see private field)

    Best regards,
    Ismael

    in reply to: Clickable image on button #1348180

    Hi,

    You can adjust the height of the button by adjusting the height property of the image or element in this css code.

    .imagebutton .avia_button_icon::before {
      content: "";
      background-image: url(/wp-content/uploads/IMAGE.svg);  /*** path to your image file ***/
      background-repeat: no-repeat;
      background-size: contain;
      width: 50px;
      height: 50px;
      position: relative;
      display: inline-block;
      top: -11px;
      left: -5px;
    }
    

    Best regards,
    Ismael

    in reply to: Easy way to make footer more responsive? #1348178

    Hi,

    Glad to know that you have managed to find a css solution. Thanks for the info!

    Best regards,
    Ismael

    in reply to: GA4 not working #1348177

    Hi,

    Thank you for the update.

    We just noticed that the site still contains an older version of the theme (v4.7.4) even though you mentioned it in your first reply. The latest version of Google Analytics is not recognized in this version, so you have to immediately update the theme to version 4.9.2.1.

    Best regards,
    Ismael

    in reply to: Add icons to xtra info in header #1348175

    Hi,

    Glad we could be of help. 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: Text disappears in the background #1348174

    Hi,

    The layout of the cells or columns are now similar aside from the 100px bottom margin applied to the column in the first cell. Is that intentional?

    #wrap_all .flex_column.av-l0w6l5fo-b220920a4a63c8fe0bc1fcf7779b0fb6 {
        margin-top: 0px;
        margin-bottom: 100px;
    }
    

    Would you mind providing a mockup of the section or a screenshot of how it is supposed to look?

    UPDATE: I reviewed the thread above and found out that @mike actually added the bottom margin. A screenshot of the expected layout will help.

    Best regards,
    Ismael

    in reply to: Toggles of accordions are covered by the sticky header #1348172

    Hi,

    You can override an existing element in your child theme by creating a new shortcode path in the child theme directory. Please check this documentation.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    Once you have a copy of the toggles shortcode files (js, php) in the shortcodes folder within the child theme directory, you have to update the script path in the extra_assets function in the toggles.php file. Look for this code around line 115.

    function extra_assets()
    		{
    			//load css
    			wp_enqueue_style( 'avia-module-toggles', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/toggles/toggles.css', array( 'avia-layout' ), false );
    
    				//load js
    			wp_enqueue_script( 'avia-module-toggles', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/toggles/toggles.js', array( 'avia-shortcodes' ), false, true );
    		}
    

    Best regards,
    Ismael

    Hi,

    Glad @Guenni007 was to able help. To move the author below the post title, try to add this filter in the functions.php file.

    add_filter('avf_magazine_header_content', function($header_content, $entry) {
    	$author = $header_content['author'];
    	unset($header_content['author']);
    	$header_content['author'] = $author;
    	return $header_content;
    }, 10, 2);
    

    Best regards,
    Ismael

    in reply to: Side menu with LayerSlider #1348170

    Hey tonyiatridis,

    Thank you for the inquiry.

    We cannot reproduce the issue on the home page, and it looks like the slider has been added using the actual layer slider shortcode inside a code block element. Is it working correctly when you use the Layer Slider element from the Advance Layout Builder? Please provide a screenshot of the issue.

    Best regards,
    Ismael

    in reply to: Need to add Houz under social media profiles section #1348169

    Hi,


    @schwabino
    : Please follow the instructions above to add a new icon to the social profiles panel.

    Thanks @Guenni!

    Best regards,
    Ismael

    in reply to: Youtube Video doesnt run #1348168

    Hi Noel,

    Thank you for the info.

    Is it working correctly when you use the default Video element from the Advance Layout Builder? Unfortunately, we are not familiar with E-Recht and the usercentrics button is definitely not generated by the theme, additional help or info from the script authors should help.

    Best regards,
    Ismael

    in reply to: WPML – First steps problems #1348167

    Hi,

    Thank you for the update.

    What do you mean by ATE? When translating a page, you have to click the plus button in the Languages panel and make sure that the Use WPML’s Translation Editor option is enabled. The duplicate checkbox should NOT be enabled.

    Best regards,
    Ismael

    in reply to: please refund #1348045

    Hi Claudia Minoiu!

    Thank you for the inquiry.

    Unfortunately, we do not handle sales or refund inquiries in this forum. You will have to contact Themeforest directly and request for a refund. Please check the following documentation for more info about their refund policy.

    // https://themeforest.net/page/customer_refund_policy > Resolving disputes – asking Envato to help

    Regards,
    Ismael

    Hi Christian,

    Thank you for following up.

    Are you using the layer slider? The links or resources above are actually used by the Layer Slider plugin. If you are not using it, you can disable the plugin from the Enfold > Layout Builder > Integrated (Bundled) LayerSlider Plugin drop down, select the second, third or fourth option.

    Best regards,
    Ismael

    in reply to: Youtube Video doesnt run #1348040

    Hi,

    Thank you for the update.

    The site or the script stores a lot of cookies in the site when we click the accept button but the modal window doesn’t close and we are still not allowed to play the video. Did you install the usercentrics (UC) plugin? Is it working correctly when the plugin is disabled?

    Best regards,
    Ismael

    in reply to: Gewählte Schriften wird nicht korrekt angezeigt #1348039

    Hi,

    Thank you for the info.

    The privacy & cookie option is actually blocking the Google fonts or preventing it to load because of the selected option in the Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behavior settings. Users have to accept the cookies first and manually allow external services including the fonts using the privacy toggles in the modal popup window. If you want the fonts to load immediately without the user consent, you can set the Default Cookie Behavior settings to the first or second option.

    Best regards,
    Ismael

    in reply to: Enfold 'Advanced Layout Builder' is crashing #1348038

    Hey PaulSkelton,

    Thank you for the inquiry.

    The site contains a very old version of the theme which is no longer compatible with the current version of WordPress. You have to update the theme manually to version 4.9.2.1. Please check this documentation for more info on how to manually update the theme via FTP.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    in reply to: Load more issues #1348037

    Hey slsmart,

    Thank you for the inquiry.

    The content of the loaded items contain a lot of line breaks or br tags for some reason and the shaking is due to the load more button, which has been fixed in later versions of the theme. The site is currently using a very old one. Please update the theme from version 4.7.4 to the latest version 4.9.2.1, and make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.

    Best regards,
    Ismael

    in reply to: Portfolio Category in Sidebar Pages #1348036

    Hey Reina,

    Thank you for the inquiry.

    You may need to manually add the new portfolio category item in the Portfolio Categorieën menu within the Appearance > Menus panel. (see private field)

    Best regards,
    Ismael

    in reply to: SEO issue using duplicate content for mobile responsive #1348034

    Hey jaimemerz,

    Thank you for the inquiry.

    We would recommend removing the duplicates since Google already detects and is probably asking you to remove them. You will have to apply some css modifications and add css media queries to adjust the layout of the existing elements on mobile view. Currently, there is no way to hide those elements from Google or a way to tell them to exclude certain elements on a specific device.

    These documentation and guidelines might help.

    // https://developers.google.com/search/docs/advanced/guidelines/hidden-text-links

    Best regards,
    Ismael

    in reply to: Enfold 'Advanced Layout Builder' #1348032

    Hi,

    Thank you for the info.

    We are able to login to the site but we always get redirected to a 2-Factor authentication setup page. Unfortunately, we cannot continue with this because we don’t have access to the email address used for this account. WordPress will probably send the authentication or confirmation in that email if we continue. Please disable the 2-Factor authentication plugin temporarily or just provide the administrator account that you are currently using.

    Best regards,
    Ismael

    in reply to: Einstellungen für die Tablet-LAyouts, Responsiv #1348031

    Hey patrikbeneke,

    Thank you for the inquiry.

    This is possible but it will require significant amount of css or style changes, and it will also depend on the current content of the page or of the site. Which specific elements are you trying to adjust on tablet view? We may have to inspect the site directly in order to provide a possible solution.

    Best regards,
    Ismael

    in reply to: How to match Author page layout to Blog page layout #1348030

    Hi,

    Thank you for the update.

    To adjust the size of the featured images, please look for this code around line 40 in the same loop-author.php file..

    $current_post['slider'] = get_the_post_thumbnail($current_post['the_id'], $size);
    

    .. and replace it with:

    $current_post['slider'] = get_the_post_thumbnail($current_post['the_id'], "entry_with_sidebar");
    

    We adjusted the size parameter of the get_the_post_thumbnail function and made sure that it displays the “entry_with_sidebar” thumbnail.

    Best regards,
    Ismael

Viewing 30 posts - 11,011 through 11,040 (of 67,443 total)