Forum Replies Created

Viewing 30 posts - 6,001 through 6,030 (of 34,918 total)
  • Author
    Posts
  • in reply to: load google font open sans localy #1417219

    Hi,
    I think it’s from the iframe on your homepage, try removing this and checking again. Often plugins will also load fonts so if you are still seeing this try disabling your plugins to see if this helps.

    Best regards,
    Mike

    in reply to: Transparent logo appearing too small #1417218

    Hi,
    Glad this helped, your non trasparent, the logo is 522px, do you want to change the css above from 400px to 522px so they match?

    Best regards,
    Mike

    in reply to: Search by authors #1417217

    Hey limesolutions,
    Unfortunately not, you would need to use a search plugin for that but I don’t know which one could do this as I have not tested any for this feature.
    Sorry I was not more help.

    Best regards,
    Mike

    in reply to: Style elements in HTML #1417216

    Hey Alex,
    Thanks for your patience, the css you have posted above is for the background image for a color section, if you remove this then the background image will not show.
    You can disable Post CSS files with this function in your functions.php

    function custom_avf_post_css_create_file( $create )
    {
    	return false;
    }
    
    add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );

    Best regards,
    Mike

    in reply to: Can’t import demo #1417214

    Hi,
    Thanks for your patience, please try to manually import a theme demo.
    Are you using the webhost OVH? They have a issue that we have not been able to resolve, To work around this try importing your demo on a localhost install and using the Duplicator plugin to migrate/clone it to your OVH host, this has worked for other OVH users.

    Best regards,
    Mike

    in reply to: Transparent logo appearing too small #1417212

    Hey Elena,
    Thank you for the link to your site, I added this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #header.av_header_transparency .logo img {
    	width: 400px;
    }
    #header.av_header_transparency .logo>a>img {
    	visibility: hidden;
    }

    Please clear your browser cache and check.
    Feel free to change the 400px to the size you wish.

    Best regards,
    Mike

    in reply to: Logo Carousel #1417210

    Hey Robyone925,
    Have you tried the Partner/Logo Element it has slider animation in the options.

    Best regards,
    Mike

    in reply to: How to show featured image on Category Pages #1417209

    Hey gatehealing,
    To use the grid layout for the category pages try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'blog-grid';
    return $layout;
    }

    Best regards,
    Mike

    Hi,
    Thank you for your patience and the recap, I see that Nikko’s solution works for /who-we-are/ because it uses 1/5 + 4/5 columns
    On /anja-vogt/ you are using 1/5, 3/5, 1/5 columns so try this css:

    @media only screen and (max-width: 1366px) { 
    	#top.page-id-549 .av_three_fifth {
    		width: 100%;
    	}
    	#top.page-id-549 .av_one_fifth.el_before_av_three_fifth,
    	#top.page-id-549 .av_one_fifth.el_after_av_three_fifth {
    		display: none;
    	}
    }

    If you use the same layout for your other pages you can remove the page ID: .page-id-549 from the css.
    To remove the sticky header between 768px and 1366px try this css:

    @media only screen and (max-width: 1366px) { 
    	.html_header_sidebar #top #wrap_all #header.av_always_sticky {
        position: absolute;
    }
    }

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

    Best regards,
    Mike

    in reply to: Main Menu / Selected Element Color Bug #1417207

    Hi,
    Thank you for your patience, it looks like TRAINING may be a child of DFR, please check and if you are able to change this then please do.
    If you are not able to change this because the structure is needed elsewhere, or this doesn’t help, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.page-id-117 #menu-item-154 a {
    	color: #7f7e7e;
    }

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

    Best regards,
    Mike

    in reply to: Background video on color section not working properly? #1417204

    Hi,
    Thank you for your patience, I’m not sure why your site is behaving differently, because I copied you page to my test site and the video shows correctly without the black bars, perhaps there is a conflict with a plugin or code custom code.
    But I found adding this css in your WordPress ▸ Customize ▸ Additional CSS corrects

    #top .av-video-slide video {
        width: 100%;
        height: unset;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    I have numbered these three questions to identify them.
    1: glad that you like the idea to create new sites for the languages like guidedtour/it, guidedtour/fr, guidedtour/en, etc

    2: it is possible to automatically redirect based on language, I would recommend trying to find a plugin for this so it will be easy to manage, but it can also be do with the .htaccess file. More research would need to be done to find the solution. But I would still plan on adding a language selector to your header so all of the sites are linked together.

    3: I see that your site is slow there is no difference between sub-directories or sub-domains. One way to improve your site is to use the LiteSpeed caching in your cPanel, try using this plugin to activate it LSCache for WordPress, and then remove the plugins you are not going to use, sure as WPML Multilingual CMS, & Loco Translate, & JetPack etc.
    Your images can be compressed, I tested one on tinyjpg.com and it could be 82% smaller
    Enfold_Support_3061.jpeg
    Try using the TinyPNG plugin to make your images smaller.

    I recommend first getting your site to run faster before cloning it to create your other sites, try these suggestions and if you need further help please open a new thread so this one will stay on the topic of cloning the main site to create the other sites. Once your site is working well then let us know in this thread and we can make your clones.

    Best regards,
    Mike

    in reply to: Productpage #1417201

    Hi,
    Thank you for your patience, the “no-products-found” container is because you have this function at the bottom of your functions.php

    function custom_pre_get_posts_query( $q ) {
        $tax_query = (array) $q->get( 'tax_query' );
        $tax_query[] = array(
               'taxonomy' => 'product_cat',
               'field' => 'slug',
               'terms' => array( 'cursus' ), // Don't display products in the clothing category on the shop page.
               'operator' => 'NOT IN'
        );
        $q->set( 'tax_query', $tax_query );
    }
    add_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' ); 

    Or you can try Ismael’s css.
    To correct the Herfstcursus image size try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.archive .thumbnail_container img {
        height: 324px;
    }
    

    Best regards,
    Mike

    in reply to: Mainmenu submenu in full width #1417197

    Hi,
    Thanks for the screenshot, you will need to add css media queries for some of the key screen widths, try using the above code as a base and change the left: -58vw; to suit.
    You can add min and max for a media query like this:

    @media only screen and (min-width: 990px) and (max-width: 1024px) { 
    /* code here */
    }

    Best regards,
    Mike

    in reply to: load google font open sans localy #1417194

    Hey aboderc,
    Thank you for the link to your site, I see that your Exo font at Enfold Theme Options ▸ General Styling ▸ Fonts ▸ Heading Font is a Google Font:
    Enfold_Support_3057.jpeg
    when I check your site this is the font I see called from Google, I don’t see Open Sans called:
    Enfold_Support_3059.jpeg
    Please change this font to a local font.

    Best regards,
    Mike

    in reply to: Adding TikTok to Social Profiles #1417193

    Hey Madison,
    Try this tutorial that includes a TikTok icon that you can use if you wish, and all of the steps to set it up.

    Best regards,
    Mike

    in reply to: Theme Options – Social profiles: Tiktok is missing #1417192

    Hey tammiviestinta,
    The TikTok icon is not available on Fontello.com so you need to create it manually, try this tutorial that includes a TikTok icon that you can use if you wish, and all of the steps to set it up.

    Best regards,
    Mike

    in reply to: Mainmenu submenu in full width #1417191

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (min-width: 990px) { 
    #header .avia_mega_div.six.units {
    	width: 100vw;
    	right: unset !important;
    	left: -58vw;
    }
    }

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

    Best regards,
    Mike

    Hi,
    Thanks for the cPanel login, I have examined your six sites, the one main site and the five sub-sites, it looks like the five sub-sites were created a while back because the theme is out of date and they have a few pages and plugins but not the same as the main site.
    I would recommend deleting these sub-sites and use the cPanel Softaculous Administration WordPress Clone option to clone the main site into five new sites:
    Enfold_Support_3055.jpeg
    This would make all of the sites the same as the main site in content and theme settings and would be easy to do, if you don’t feel comfortable doing this I could help.
    But first I have a question about the sub-site names you have picked, they don’t seem to be obvious to me for each language and three of the have spaces in the url which will show %20 where the space is, typically it is better to have a dash instead of a space.
    Did you choose these names to target keywords:
    /sehenswürdigkeiten/ (de)
    /sightseeing/ (en)
    /attractions touristiques/ (fr)
    /attrazione turistica/ (it)
    /atracciones turísticas/ (es)
    My recommendation would be to use the two letter county code instead like
    /de/
    /en/
    /fr/
    /it/
    /es/
    but if you want to use your words that is fine but you should use dashes instead of spaces:
    /attractions-touristiques/ (fr)
    /attrazione-turistica/ (it)
    /atracciones-turísticas/ (es)

    Best regards,
    Mike

    in reply to: Update version #1417161

    Hey Ewout van Driel,
    Thanks for your question, since your version is quiet old the update feature will not work correctly because Envato (Theme Forest) has changed the license API to a Token, so first you will need to manually update, will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg
    After you update you will need to go to your Theme Forest account and create a new Token for future updates.

    Best regards,
    Mike

    Hi,
    Thanks for the link to your cPanel, but I can’t find a working login, please check and provide.
    Since it has been a long time, lets recap the plan, you are going to have one domain and four sub-domains, each will be the same content be in different languages that you will manually manage.
    Now you have your main domain created with content and you have the four sub-domains created, the next step to to add a WordPress install to each of the four sub-domains and install Enfold.
    Then export the content from your main domain at WordPress ▸ Tools ▸ Export ▸ All content and export the Enfold theme settings from the main domain at Enfold Theme Options ▸ Import/Export ▸ Export Theme Settings File and import these to each of the four sub-domains.
    Have you done this step yet?
    Then you will need to change the language for each sub-domain at WordPress ▸ Settings ▸ General ▸ Site Language and adjust the content to match the language.
    Have you done this yet?
    Then you will need to add menu items for each language on each site, I believe that when Ismael said to put the image flags into the field “Navigation label” he meant the menu item title, do you already have your flag images for your languages?
    Do all of the sub-domains use the same login as the main site?

    Best regards,
    Mike

    in reply to: Wrong page comes up when markpostlaw.com entered #1417158

    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: Wrong page comes up when markpostlaw.com entered #1417141

    Hey buddy1,
    Thank you for the link to your site, you would need to set the Frontpage Settings at Enfold Theme Options ▸ Frontpage Settings
    currently you are using Home but your new frontpage is Mark Post Home — copy
    I set this for you, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Move Submit Form Button #1417140

    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: Background video on color section not working properly? #1417084

    Hi,
    We are all in different countries, please disable the block so we can try to help, Ismael has more experience with this so please disable so he can check. Thank you for your patience.
    If you can’t disable this for your live site then try creating a staging site with the IP block disabled and post an admin login so we can examine.
    If you check the test page I created on my test site, linked below, with your video in a color section there is no black bars on the sides, at lest I don’t see them, do you?

    Best regards,
    Mike

    in reply to: Mainmenu submenu in full width #1417083

    Hi,
    Thanks for the link to your site but there are no sub-menu items in your menu. The example page looks like a mega menu, have you tried this option?
    Enfold_Support_3051.jpeg
    Please see our mega menu documentation for more information.
    After you enable the mega menu and add some sub-menu items, you may find the mega menu is not 100% full width, I believe we can help further then.

    Best regards,
    Mike

    in reply to: Footer: Social media icon #1417082

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #footer .flex_column.av_one_fourth:first-child {
    	width: 33%;
    }
    #footer .flex_column.av_one_fourth:nth-child(2) {
    	width: 33%;
    	margin: 0;
    }
    #footer .flex_column.av_one_fourth:nth-child(3) {
    	width: 20%;
    	margin: 0;
    }
    #footer .flex_column.av_one_fourth:nth-child(4) {
    	width: 10%;
    	margin: 0;
    }
    #footer .flex_column.av_one_fourth .widget {
    	width: 80%;
    }
    #footer .flex_column.av_one_fourth:nth-child(4) .widget {
    	width: 100%;
    }

    After applying the css, please clear your browser cache and check.
    Please see the screenshot in the Private Content area of the expected results.

    Best regards,
    Mike

    in reply to: Horizontale Galerie anpassen mit CSS #1417080

    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: enfold header with elementor footer #1417078

    Hi,
    You can’t add the closing div’s to the header.php because thay are needed for the page content, try adding the footer.php content to the bottom of the page.php and see if that works with the Elementor footer enabled, if the Enfold header and the Elementor footer shows with the Enfold footer just above it, then that would be a good start.
    Then you can remove the Enfold footer functions from the code you added to the page.php, try removing the functions and not the closing div’s until the Enfold footer doesn’t show.

    Best regards,
    Mike

    in reply to: Header on mobile #1416984

    Hi,
    Glad to hear that you have this sorted out, 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 - 6,001 through 6,030 (of 34,918 total)