Forum Replies Created

Viewing 30 posts - 8,791 through 8,820 (of 34,644 total)
  • Author
    Posts
  • in reply to: show the pictures smaller #1396801

    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: the text deeper. #1396800

    Hi,
    Try:

    @media only screen and (max-width: 767px) {
    #top.page-id-5923 .template-page.content {
    	display: flex;
        height: 90vh;
        align-items: center;
    }
    }

    Best regards,
    Mike

    in reply to: the text deeper. #1396797

    Hi,
    For the page this css will center the elements:

    #top.page-id-5923 .template-page.content {
    	display: flex;
        height: 90vh;
        align-items: center;
    }

    But it might cause issues after the password is used if the same page is then used.
    The best way to handle this is having a custom class added to the page when the password field is used, that way any style you add is only for the page showing the password field.
    So if you are using a password plugin see if the options allow adding a special class to the page, if not ask the plugin author for some code to add a special class to the page when the password field is shown, I would imagine they offer this.

    Best regards,
    Mike

    in reply to: full width logo is blurry #1396796

    Hey pscheffcenvato,
    Thanks for the link to your site, current the logo used is: header04b-300×42.png that is 300×42 not your full size.
    I believe the image you want to use is the one linked below, to apply this to your theme settings please go to Enfold Theme Options ▸ Logo and paste the url below, and then save the theme settings with the blue button at the top of the page.
    Don’t add the logo by using the upload button as it will set the smaller size.
    If you have trouble Please include an admin login in the Private Content area so we can help.

    Best regards,
    Mike

    in reply to: Secondary top menu items unclickable on mobile #1396794

    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: the text deeper. #1396793

    Hey schweg33,
    I don’t see your page with the password field, please like to it.

    Best regards,
    Mike

    in reply to: Startseite wird nicht mehr geladen #1396792

    Hi,
    Glad to hear that you have this sorted out, I don’t know what the server ‘LimitInternalRecursion’ is, but since you said that you made changes to the 404 page options I would guess the option was set to something and in your experiment you unset it, this is a guess.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Unable to download theme’s demo #1396790

    Hi,
    The demo import worked for me, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Secondary top menu items unclickable on mobile #1396789

    Hi,
    The following css will show the social icons for mobile but then the menu links are hidden by your search bar so we need to move it down also.
    So remove the css above for the search bar and try this:

    @media only screen and (max-width: 479px){
    #header #products_predictive_search-6.widget {
        z-index: 0;
        padding-top: 0;
        top: 58px;
    }
    .responsive #top #wrap_all #header .social_bookmarks, .responsive #top #wrap_all #main .av-logo-container .social_bookmarks {
        display: block;
    }
    }

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

    Best regards,
    Mike

    in reply to: show the pictures smaller #1396787

    Hi,
    I see you have a custom font size set in your css with !important; it would be best if you change this:

    @media only screen and (max-width: 767px)
    h3 {
        font-size: 23px !important;
    }

    If you can’t try this css:

    @media only screen and (max-width: 767px) {
    #vorstand h3.team-member-name {
        font-size: 12px !important;
    }
    }

    To reduce the top margin of the second row on desktop try this css:

    @media only screen and (min-width: 768px) {
    #top #wrap_all #vorstand .flex_column.av_one_fourth.column-top-margin {
        margin-top: 25px;
    }
    }

    adjust the number to suit.

    Best regards,
    Mike

    in reply to: Font does not show on website #1396785

    Hi,
    I tested your font file on my demo site and because it is a OTF file type the Custom Font Manager didn’t extract it it only created a folder so in the setting it looks like an option, so as Ismael pointed out above only Google fonts are allowed in the Custom Font Manager.
    I tested this workaround, first extract your font zip to your computer, you will see the font is named insigne – Belda Norm Regular.otf change to belda-font.otf for easier use and upload to your site via FTP, for example: /wp-content/uploads/dynamic_avia/avia_type_fonts/belda-font/belda-font.otf anywhere should be fine, this is what worked for me.
    Then add this css to your child theme stylesheet, or your parent theme custom.css file or use a plugin like WPcode plugin this plugin supports PHP code snippets, JavaScript code snippets, & CSS code snippets.

    @font-face {
      font-family: 'belda-font';
      src: url('/wp-content/uploads/dynamic_avia/avia_type_fonts/belda-font/belda-font.otf') format('opentype');
    }

    Then to use the font you will create another css rule, this example is for H1 special heading element:

    h1.av-special-heading-tag {
    	font-family: belda-font;
    }

    but you can target any element you wish.
    Then clear your browser cache and check, this is the results I received:
    Enfold_Support_300.jpeg

    Best regards,
    Mike

    in reply to: transparent yes or now #1396781

    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: show the pictures smaller #1396780

    Hi,
    Please try this css:

    @media only screen and (max-width: 767px) {
     .responsive #top #wrap_all #vorstand .flex_column.av_one_fourth:nth-child(odd) {
        width: 48%;
        margin: 0;
    }
    .responsive #top #wrap_all #vorstand .flex_column.av_one_fourth:nth-child(even) {
        width: 48%;
        margin-left: 4%;
    }
    }

    After applying the css, please clear your browser cache and check.
    I set it the section #vorstand to not conflict with other pages, you can remove #vorstand from the code if you wish.

    Best regards,
    Mike

    in reply to: How to remove #top in menu link #1396777

    Hi,
    Please follow these steps to remove the #top from being added to your current page menu links,
    Add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function wp_change_aviajs() {
    	wp_dequeue_script( 'avia-default', $template_url.'/js/avia.js', array('jquery'));
    	wp_deregister_script(  'avia-default', $template_url.'/js/avia.js', array('jquery'));
    	wp_enqueue_script( 'avia-default', get_stylesheet_directory_uri().'/js/avia.js', array('jquery'));
    	
    	}
    	add_action( 'wp_enqueue_scripts', 'wp_change_aviajs', 100 );

    Then in your child theme directory add the directory js via FTP and add this file inside the js directory.
    Then clear your browser cache and any cache plugin, and check.
    You may need to clear the cache a few times.

    For anyone interested, in /enfold/js/avia.js on line 276 (v5.4) find:
    matching_link = this.$body.find(this.selector + "[href='"+current+"']").attr('href',current+'#top');
    and change to:
    matching_link = this.$body.find(this.selector + "[href='"+current+"']").attr('href',current);

    Best regards,
    Mike

    in reply to: Front Page not changing #1396773

    Hey spiritglobe,
    Typically you would change the page shown as the homepage at: Enfold Theme Options ▸ Theme Options ▸ Frontpage Settings
    If you have the page set here but it’s still not right check the WordPress setting to see if it is conflicting with the theme at: WordPress ▸ Settings ▸ Reading ▸ Your homepage displays
    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: show the pictures smaller #1396772

    Hey schweg33,
    Do you want them smaller and still in a single column, or do you want them smaller and in two columns?

    Best regards,
    Mike

    in reply to: Seiten aus der Enfold-Suche ausschließen #1396771

    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

    Hey willbaer,
    Thanks for your screenshots and the screen sizes, for issue on the homepage (Screenshot_20230204-192115) where the text column is below the image column, I tried the different screen sizes above in my browser Dev Tools but I couldn’t recreate the issue, I don’t know why and I don’t have a real tablet to test on, but in my browser Dev Tools I did recreate the issue between 768px – 989px please see the first screenshot in the Private Content area.
    At this size the text column and the image column seem to be on the wrong sides and the text column is below the image column with a white space created by an empty 1/4 column used as a placeholder for larger screens, to correct I tested this css:

    @media only screen and (min-width: 768px) and (max-width: 989px)  { 
      #top.home #av_section_6 .entry-content-wrapper {
      display: flex !important; 
      flex-wrap: wrap !important; 
      }
      #top.home #av_section_6 .flex_column.avia-builder-el-54 {
          order: 1 !important;
          display: flex;
          margin-left: 0;
          margin-right: 4%;
          width: 46%;
      }
      #top.home #av_section_6 .flex_column.avia-builder-el-56 {
          order: 2 !important;
          display: flex;
          flex-direction: column;
          margin-top: 0;
      }
      #top.home #av_section_6 .flex_column.av_one_fourth.el_after_av_hr.first {
      	display: none;
      }
    }

    Please see the second screenshot in the Private Content area.
    Please give this a try, if you see the same error at the other sizes you listed above you could try adjusting the media query size to match, if this is only occurring on devices in landscape mode you could add it to the media query like this:
    @media only screen and (min-width: your-size px) and (max-width: your-size px) and (orientation: landscape) { ... }
    Please try this and then we will look at your second issue in case I’m misunderstanding something.

    Best regards,
    Mike

    in reply to: transparent yes or now #1396762

    Hi,
    If you are going to use this for multiple tables on different pages but do not want to apply it to every table on the site, I recommend adding a custom class to the tables.
    Such as you did above with formatfam for example try adding the custom class and use this css:

    @media only screen and (min-width: 768px) {
    #top .main_color .formatfam .pricing-table>li:nth-child(odd) {
        background: rgba(248, 248, 248, 0.7);
    }
    #top .main_color .formatfam .pricing-table>li:nth-child(even) {
        background-color: rgba(145, 145, 145, 0.7);
    }
    }

    If this doesn’t help after you add the custom class we can check again and adjust the css.

    Best regards,
    Mike

    in reply to: Seiten aus der Enfold-Suche ausschließen #1396760

    Hey Katja,
    Thanks for your question, I found this solution for excluding post or pages from the ajax search and the normal search based on ID.
    I adjusted as the thread suggested to include pages, posts, and portfolio items and then tested it on my demo site to exclude the two demo posts with the title “nice” based on their IDs “68,55” to easily test, and this worked for me.
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    // Use search just for certain post-types and exclude posts by id
    if ( ! function_exists( 'bb_filter_search_results' ) )
    {
    	add_action( 'pre_get_posts', 'bb_filter_search_results' );
    	function bb_filter_search_results( $query )
    	{
    		if ( ! $query->is_admin && $query->is_search )
    		{
    			$query->set( 'post_type', array( 'post', 'portfolio', 'page' ) );
    			$query->set( 'post__not_in', array(68,55) );
    		}
    		return $query;
    	}
    }
    
    if ( ! function_exists( 'bb_filter_ajax_search_results' ) )
    {
    	add_filter('avf_ajax_search_query', 'bb_filter_ajax_search_results', 10, 1);
    	function bb_filter_ajax_search_results( $search_parameters )
    	{
    		$defaults = array('numberposts' => 5, 'post_type' => array( 'post', 'portfolio', 'page' ), 'post__not_in' => array(68,55), 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false);
    		$_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']);
    		$search_parameters = array_merge( $defaults, $_REQUEST );
    		return $search_parameters;
    	}
    }

    and change the IDs “68,55” to your IDs

    Best regards,
    Mike

    in reply to: Unable to download theme’s demo #1396759

    Hi,
    Thanks for the login, I looked at WordPress ▸ Dashboard ▸ Tools ▸ Site Health ▸ Info ▸ Server and it looks ok but I didn’t know which demo you want to install.
    Did you try our documentation: How to manually import a theme demo, if you did and still have trouble please tell us which demo and include FTP access so we can try.

    Best regards,
    Mike

    in reply to: transparent yes or now #1396758

    Hi,
    Thanks for the feedback, for the table which has two different background colors for odd and even rows, I assume that for the desktop you want slightly transparent background colors, and for mobile, you would like the solid two background colors that it is now, correct?
    Try this css:

    @media only screen and (min-width: 768px) {
    #top.page-id-12139 .main_color .pricing-table>li:nth-child(odd) {
        background: rgba(248, 248, 248, 0.7);
    }
    #top.page-id-12139 .main_color .pricing-table>li:nth-child(even) {
        background-color: rgba(145, 145, 145, 0.7);
    }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Audio button of Video not showing on mobile #1396742

    Hey gabrimore98,
    Thanks for the link to your site, I see that you are using v5.1.2, please update to v5.4 and clear your server, website plugin, and browser cache and check again.
    I see that you don’t have a Inserisci un token privato Envato valido in place, please see our documentation: How to generate a Envato Personal Token
    Or you can manually update your version of Enfold you can 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

    Best regards,
    Mike

    in reply to: Portfolio Item & Folders plugin Metadata #1396741

    Hi,
    Glad Ismael 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: Uncaught SyntaxError: Unexpected token ‘<' #1396740

    Hi,
    Thanks for the video and the login, I network deactivated the Classic Editor plugin and the issue is solved.
    This plugin is not needed and the Classic Editor option is built into the theme at Enfold Theme Options ▸ Select Your Editor ▸ Use WP Classic Editor
    Please try using the theme option for your network, I reenabled the Classic Editor plugin so please test by disabling it on the network first.
    **Update I found that your Classic Editor plugin can stay network activated if you change the theme option to Enfold Theme Options ▸ Select Your Editor ▸ Use WP Classic Editor, but I still recommend removeing the network Classic Editor plugin.

    Best regards,
    Mike

    in reply to: Burger – can not klick the main link #1396736

    Hey frasche,
    Please use the theme settings at Enfold Theme Options ▸ Main Menu ▸ Burger/Mobile Menu ▸ Clone title menu items to submenu
    Then will clone the parent menu item so that in it’s dropdown on mobile you will have the option to go to the parent item link.
    On mobile you can’t have the parent item open a drop-down on click and go to the link on click, on mobile there is not hover action.
    If you would like to change the parent item name try this solution, if you are not sure how to adjust the code for your site please like yo your site and tell us what new name you wish to use so we can help.
    Most often people find using the standard Clone title is fine.

    Best regards,
    Mike

    in reply to: transparent yes or now #1396735

    Hi,
    Thanks for the feedback, I believe that I misunderstood, for desktop you would like a slightly transparent background color, and for mobile you would like a solid background color, correct?
    Try this css instead:

    @media only screen and (max-width: 767px) {
    	#top .formatfam {
    		background-color: rgba(255, 255, 255, 1);
    	}
    }
    @media only screen and (min-width: 768px) {
    	#top .formatfam {
    		background-color: rgba(255, 255, 255, 0.7);
    	}
    }

    Best regards,
    Mike

    in reply to: Secondary top menu items unclickable on mobile #1396696

    Hi,
    On mobile your search bar’s padding is over the menu so it can’t be clicked, try this css to correct:

    #header #products_predictive_search-6.widget {
        z-index: 0;
        padding-top: 0;
        top: 21px;
    }

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

    Best regards,
    Mike

    in reply to: Search icon mobile version #1396695

    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: alb footer gone for Costumer #1396694

    Hi,
    Unfortunately, we are not able to test with user role editor pro and we are limited to supporting third-party plugins, since deactivating it clears the issue it points to a conflict. Since you are using a pro version with I imagine plugin support try asking the plugin author, they may have seen this issue before and already has a solution.

    Best regards,
    Mike

Viewing 30 posts - 8,791 through 8,820 (of 34,644 total)