Forum Replies Created

Viewing 30 posts - 1 through 30 (of 31,290 total)
  • Author
    Posts
  • in reply to: Blog Layout does not include featured image #1437517

    Hi,
    On your homepage the big white space under the slider looks like the issue that the plugin wp-smushit causes with it’s lazy loading, try disabling the plugin lazy loading or disable the plugin completely and see if that helps.

    Best regards,
    Mike

    in reply to: Gallery plugin recommendation #1437514

    Hey dowlassmoss,
    I have not reviewed any gallery plugins so I can’t advise to what might meet your requirements, but I recommend that any gallery plugin you choose should allow you to use it as a shortcode, so you can add it to your already designed ALB pages, please note that some plugins may only work with the WordPress Block Editor and don’t offer a shortcode for you to use, these plugins will not work for your already designed ALB pages. Here is a good place to start looking.

    Best regards,
    Mike

    in reply to: Serach Bar in Header Styling #1437513

    Hi,
    The screenshot link you posted is not working, but when I check your site all of the search bars that I see are red, please see the screenshot in the Private Content area.
    Try linking to the page with the blue one, or if you are still seeing blue try clearing your browser cache.

    Best regards,
    Mike

    in reply to: Blog page questions #1437511

    Hi,
    If you would like us to investigate this further please include an admin login in the Private Content area so we can investigate, as I wrote above I can’t reproduce this on my demo site, so perhaps there is something else going on like a customization function or script or perhaps a plugin conflict, I’m not sure.
    To be clear, you don’t want to show the newsbox widget thumbnails at all, correct? That is why I offered the css above as a quick solution.
    As for your single posts, do you want the featured images to show?
    I see that you are using v5.6.7 please also update to v5.6.12

    Best regards,
    Mike

    in reply to: Hover effect to increase the column #1437508

    Hi,
    You could add a custom class to the column that you want it to would on and then add the custom class to the css, like this:

    #top .customClass.flex_column:hover {
    	animation: grow 2s;
    	animation-fill-mode: forwards;
    }
    @keyframes grow {
      to {
          transform: scale(1.2);
          border: 1px solid yellow;
      }
    }

    Just change customClass to what you choose to use.

    Best regards,
    Mike

    in reply to: 2 Up Columns on Mobile #1437507

    Hi,
    There is no padding involved, it makes the elements equal height. You might see an overlay if you are emulating a mobile device on the desktop my resizing the window, the script should re-calculate in 300ms if you are doing this but it won’t be an issue for real devices because they don’t change like this, if the auto re-calculate doesn’t work for you as you change the window size then reload the page.
    This is what I see on my Android device:
    1000001981.jpeg
    1000001982.jpeg

    Best regards,
    Mike

    in reply to: Side bar widget showing portfolio items #1437449

    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,
    Thanks for the login, for the burger menu issue with the four extra phone links, this was because in your Enfold Theme Options ▸ Header ▸ Extra Elements ▸ Phone Number or small info text there was no closing tag for the link:
    Enfold_Support_5099.jpeg
    I fixed it for you.
    As for the issue in the video for the other site I don’t know what page to look at, please provide a direct link to the page with the issue.

    Best regards,
    Mike

    in reply to: Side bar widget showing portfolio items #1437424

    Hi,
    Thanks for the login, I see that you are using the Latest Portfolio the original customization above was for the Latest News widget, they both use the class-avia-newsbox.php file, but call different lines of code.
    So everything above can stay and we will change around line 154 look for:

    $new_query = array(
    	'posts_per_page'	=> $count,
    	'post_type'		=> $this->avia_post_type
    );

    and change to:

    $new_query = array(
    	'posts_per_page'	=> $count,
    	'post_type'		=> $this->avia_post_type,
    	'orderby'           => 'title',
    	'order'             => 'ASC'
    );

    and around line 169 look for:

    $new_query = array(
    	'posts_per_page'	=> $count,
    	'tax_query'			=> array(
    							array(
    								'taxonomy'	=> $this->avia_term,
    								'field'		=> 'id',
    								'terms'		=> explode( ',', $cat ),
    								'operator'	=> 'IN'
    							)
    						)
    					);

    and change to:

    $new_query = array(
    	'orderby'           => 'title',
    	'order'             => 'ASC',
    	'posts_per_page'	=> $count,
    	'tax_query'			=> array(
    							array(
    								'taxonomy'	=> $this->avia_term,
    								'field'		=> 'id',
    								'terms'		=> explode( ',', $cat ),
    								'operator'	=> 'IN'
    							)
    						)
    					);

    I did this for you and now your Latest Portfolio is alphabetically, I just wanted to explain this for future readers.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Side bar widget showing portfolio items #1437420

    Hi,
    Thanks, I added the customization above but I believe the widget needs to be opened and resaved before it will take effect and I don’t have a site admin login so you will have to try.

    Best regards,
    Mike

    in reply to: Half the website gone #1437418

    Hi,
    So you see the images fine on your mobile phone, just not on your iMac?
    Try some public computers, like at a library.

    Best regards,
    Mike

    in reply to: Side bar widget showing portfolio items #1437416

    Hi,
    Ok, we will leave this thread open to hear back from you.

    Best regards,
    Mike

    in reply to: Blog page questions #1437415

    Hi,
    Thank you for your patience, the newsbox thumbnails don’t show on the post because the class “no-news-thumb” which is typically added when the featured image has been disabled on the post, I see on your posts the featured image and blog-meta is hidden, I don’t know why it is still showing on your blog page, I’m not able to reproduce this on my demo site, but I don’t know all of your settings and there are many combinations that can me used.
    Nonetheless above you write the micro-thumbnails are way too small to be meaningful so to remove them from your blog page try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .blog .avia-widget-container.newsbox .news-thumb  {
    	display: none;
    }

    Best regards,
    Mike

    in reply to: among each other #1437412

    Hi,
    Try this instead:

    @media only screen and (max-width: 767px) { 
    #footer .av_one_half,
    #footer #text-3,
    #footer #custom_html-2 {
    	width: 100%;
    	margin: 0;
    	text-align: center;
    }
    }

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

    Best regards,
    Mike

    in reply to: Side bar widget showing portfolio items #1437411

    Hi,
    Can you add the child theme ▸ Read about using a Child Theme
    and then include an admin login & FTP access in the Private Content area, I can do the steps above for you.

    Best regards,
    Mike

    Hi,
    Thank you for your patience, in your video it looks like the special heading text is bold, so I believe that you have used “strong” tags in the special heading and perhaps didn’t close it correctly, so when you save the page all of the elements after it are lost, this is a common error, but I can’t check because we don’t have a login to your site. Please include an admin login in the Private Content area so we can be of more assistance.
    As for your burger menu it looks like you have added 4 phone links to your header somehow, none show on the frontend, the one that does show in the top bar is a fifth, so these seem to be causing the issue, try removing these:
    Enfold_Support_5097.jpeg
    If this doesn’t help we can take a look to see what else could be the issue.

    Best regards,
    Mike

    in reply to: Half the website gone #1437407

    Hi,
    Thank you for your patience, I checked again in Windows in Chrome, Firefox, & Edge and in Mac in Safari, Chrome, Firefox and in all cases all of your images show:
    Safari on Mac
    Screen-Shot-2024-03-17-at-9.42.23-AM.png
    Chrome on Mac
    Screen-Shot-2024-03-17-at-9.44.25-AM.png
    Firefox on Mac
    Screen-Shot-2024-03-17-at-9.46.19-AM.png
    Firefox on Windows
    Screen-Shot-2024-03-17-at-9.48.20-AM.png
    I didn’t feel a need to post more images. This is very strange that you can’t see these, your images are still coming from https://i0.wp.com I believe this is the JetPack image server, and you still have a CDN “onesingnal”, did you try disabling all of your plugins to get your images to be served from your domain and wordpress install?
    Are you using a mobile connection or a limited wifi? Often “data saver” will not show huge images. Have you updated your Mac, old Safari versions had problems with parallax and I have been told that some iPads have their Safari version locked and can’t update.
    Have you tried a Windows desktop or a different Mac, try going to your public library or try a VPN and use a IP address from another country.

    Best regards,
    Mike

    in reply to: Side bar widget showing portfolio items #1437406

    Hey hannelynne,
    Thanks for your question to modify the newsbox widget (Latest News) you will need to install a child theme, Read about using a Child Theme otherwise your customizations will be lost the next time you update.
    Then in your child theme directory, via FTP, add a directory “widgets” and copy the file from the parent theme to your new directory: \enfold\framework\php\widgets\widget-classes\class-avia-newsbox.php
    Then add this code to your child theme functions.php:

    function custom_avf_widget_loader_widget_classes_newsbox( array $default_widgets )
    {
    	$namespace = '\\aviaFramework\widgets\\';
    
    	// Create a folder widgets in enfold-child:     enfold-child/widgets
    	$path = trailingslashit( get_stylesheet_directory() ) . 'widgets/';
    
    
    	// Replace link to original file with your child theme modified newsbox widget
    	$default_widgets['newsbox'] = array(
    												'class'	=> $namespace . 'avia_newsbox',
    												'file'	=> $path . 'class-avia-newsbox.php'
    											);
    
    	
    	return $default_widgets;
    }
    
    add_filter( 'avf_widget_loader_widget_classes', 'custom_avf_widget_loader_widget_classes_newsbox', 10, 1 );

    Now you are ready to customize your class-avia-newsbox.php file.
    To make the list alphabetical look around line 143 for this: $additional_loop = new WP_Query( "cat={$cat}&posts_per_page={$count}" );
    and change to this: $additional_loop = new WP_Query("orderby=title&order=ASC&cat=".$cat."&posts_per_page=".$count);
    Then to change how many will show look around line 395 for this: for ($i = 1; $i <= 20; $i++ )
    and change to this: for ($i = 1; $i <= 50; $i++ ) now your option will go to 50, adjust to suit.
    Please note that you will need to resave the widget with the new setting before it will work.
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Hover effect to increase the column #1437404

    Hey leilitacc,
    Typically something like this would work:

    #top .flex_column:hover {
    	animation: grow 2s;
    	animation-fill-mode: forwards;
    }
    @keyframes grow {
      to {
          transform: scale(1.2)
      }
    }

    but you probably will need to adjust the class for your column, if you need help please link to your page so we can examine.

    Best regards,
    Mike

    in reply to: Accessibility #1437403

    Hey Danijela,
    Thanks for your question, we have three Accessibility Conformance Levels:
    Enfold_Support_5093.jpeg
    But please note that we do not guarantee to fulfill any legal rules for accessibility.
    We also are ready for two plugins: One Click Accessibility & WP Accessibility
    Enfold_Support_5095.jpeg
    We don’t have a built-in donations and calendar option, you would need to use a plugin.

    Best regards,
    Mike

    in reply to: among each other #1437402

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

    @media only screen and (max-width: 767px) { 
    #footer .av_one_half {
    	width: 100%;
    }
    }

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

    Best regards,
    Mike

    in reply to: Attributes not showing up in shop #1437401

    Hey StephenStamp,
    Can you link to the steps that you followed and your site, perhaps you made an error.

    Best regards,
    Mike

    in reply to: Table cell heading row equal size #1437399

    Hi,
    When you add a media query you will also want to wrap the above rule, so for example for desktop & mobile try this:

    @media only screen and (min-width: 768px) { 
    .main_color .pricing-table li.avia-heading-row {
        height: 290px;
        min-height: 290px;
    }
    }
    @media only screen and (max-width: 767px) { 
    .main_color .pricing-table li.avia-heading-row {
        height: 150px;
        min-height: 150px;
    }
    }

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

    Best regards,
    Mike

    in reply to: Custom Shop Page sort By #1437392

    Hey StephenStamp,
    Do you mean like the sort in our demo shop
    Enfold_Support_5091.jpeg
    this seems to work when I try. But to change these options I believe you need to use a plugin like this one or perhaps there is a official woocommerce plugin that will do this, but I don’t see any woocommerce options that will change these.

    Best regards,
    Mike

    Hi,
    Thanks for your patience, this is a older thread, I don’t recognize the screenshots that you provide, but most of the threads that I have seen all use javascript to capture the click and send it to GTM, it sounds like you have this part figured out but you want to use classes instead, I would expect that using a clstom class to trigger click would work for any element, like a image, or a button, these are clickable elements. If it will only work on the link “a” tag why don’t you add “a” after your custom class like .customClass a ?
    But if you would like to request a new feature, the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.

    Best regards,
    Mike

    in reply to: Editing the Category Pages #1437390

    Hey menainfosec,
    For your category page please go to Enfold Theme Options ▸ Blog Layout ▸ Blog Layout and choose List Layout – excerpt, or Grid Layout.
    For the author you can go to the user profile and add info in the Biographical Info, or you can create a custom page and use a redirect plugin, or if you are really handy with PHP you can edit the author.php file but this is very advanced and may be tricky if you want to set it up for many authors.

    Best regards,
    Mike

    in reply to: Grid row background pictures not showing on mobile #1437388

    Hey khrntanya,
    Thank you for your patience, for the grid row cell that is not showing on mobile, please add a white space element to it with a height of about 500px so it will show.
    or you can try this css:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .av-flex-cells .avia-builder-el-last.no_margin {
        height: 500px !important;
    }
    }

    Best regards,
    Mike

    in reply to: Serach Bar in Header Styling #1437387

    Hey khrntanya,
    Thank you for your patience, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .ajax_search_response h4,
    .header_color .av_ajax_search_title {
    	color: #d90f38;
    }

    the expected results:
    Enfold_Support_5088.jpeg

    Best regards,
    Mike

    in reply to: This YITH plugin does not work as expected with Enfold #1437386

    Hey marxsvjetlana64,
    Thank you for your patience, the YITH plugin doesn’t work with Enfold because the plugin doesn’t seem to provide correct css to work with our page structure, I tried examining the css but it is just too big of a job to make it work with Enfold, and we are limited to providing support for third party plugins.
    If you really want this to work you could probably hire a freelancer on Upwork to rewite the css for you.

    Best regards,
    Mike

    in reply to: Accordion Custom Icon Showing Fonts #1437384

    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

Viewing 30 posts - 1 through 30 (of 31,290 total)