Forum Replies Created
-
AuthorPosts
-
July 27, 2024 at 5:45 pm in reply to: Featured Image nor custom image are shown in dynamic ALB #1463118
Hey Frans,
Thank you for your patience, please include an admin login in the Private Content area so we can example why the image is not showing for you.Best regards,
MikeHey Markus,
Thank you for the link to your site, for the tab content width, it looks like you have this custom css:.av-layout-tab-inner { margin-right: 20% !important; margin-left: 1% !important }
please remove it, and add this css instead:
.responsive .av-layout-tab-inner > .container { padding: 0; max-width: 95%; }
To have a line under the tabs instead of an arrow, add this CSS:
.avia_transform .av-tab-arrow-container span { left: 0; width: 100%; transform: none; } .av-active-tab-title .av-tab-arrow-container { top: -9px; } .av-inner-tab-title, .av-tab-arrow-container, .av-tab-section-icon, .av-tab-section-image { width: 100%; }
this also increases your tab width so some of your tab titles are not over two lines.
After applying the css, please clear your browser cache and check.Best regards,
MikeHi,
Thank you for your patience, it looks like the plugin removes the page max-width in:
/wp-content/plugins/flux-checkout/assets/frontend/css/templates/modern/main.css
the plugin css also seems to override using a percentage so you must use a PX width, please try adding this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 325px) { .woocommerce-checkout .flux-checkout.flux-checkout--modern,.woocommerce-checkout .woocommerce { max-width: 320px; } } @media only screen and (min-width: 374px) and (max-width: 380px) { .woocommerce-checkout .flux-checkout.flux-checkout--modern,.woocommerce-checkout .woocommerce { max-width: 375px; } } @media only screen and (min-width: 424px) and (max-width: 430px) { .woocommerce-checkout .flux-checkout.flux-checkout--modern,.woocommerce-checkout .woocommerce { max-width: 425px; } } @media only screen and (min-width: 766px) and (max-width: 770px) { .woocommerce-checkout .flux-checkout.flux-checkout--modern,.woocommerce-checkout .woocommerce { max-width: 768px; } } @media only screen and (min-width: 888px) and (max-width: 900px) { .woocommerce-checkout .flux-checkout.flux-checkout--modern,.woocommerce-checkout .woocommerce { max-width: 890px; } }
This seems to correct for all of the major mobile screen sizes on the checkout page, I don’t see what the conflict might be, but the checkout page doesn’t have this issue when the plugin is disabled.
Best regards,
MikeHey bemodesign,
I checked your pages but I didn’t find an example of images with a border-radius, but when I review your past threads it looks like you wanted a border-radius of 30px, so for this on your shop images try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .av-product-class-minimal img { border-radius: 30px; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeJuly 27, 2024 at 2:06 pm in reply to: Custom layout to display posts for category / year-month #1463106Hey cuccarini,
Thank you for your patience, when I check your category pages the layout seems mostly the same, for example federscacchilazio.com/2024/06/ ▸
and federscacchilazio.com/notizie/ ▸
Then you write that the ideal solution would be to have a header selection for categories like this ▸
For this you can add a category Description
then it will show on the frontend
then with some css we can make the font larger like your example above, is this what you mean?Best regards,
MikeHey Munford,
Thank you for your patience, it looks like you added the BEGIVENHEDER text in the events calendar ▸ settings ▸ display
But I didn’t find any option or custom snippet that adds the SENESTE AFSLUTTEDE BEGIVENHEDER
So to change this try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.tribe-events-calendar-latest-past__heading.tribe-common-h5.tribe-common-h3--min-medium { opacity: 0; }
and add this code to the end of your child theme functions.php file in Appearance ▸ Editor:
function custom_change_text_script() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($) { $(document).ready(function() { var targetElement = $(".tribe-events-calendar-latest-past__heading.tribe-common-h5.tribe-common-h3--min-medium"); if (targetElement.length) { targetElement.text("NEW TEXT HERE"); targetElement.css("opacity", "1"); } }); })(jQuery); }); </script> <?php } add_action( 'wp_footer', 'custom_change_text_script', 99 );
Then in the code above change NEW TEXT HERE to your new text.
Best regards,
MikeHi,
I added this css to your Quick CSS:#top #header .avia_mega_div .sub-menu .avia_mega_text_block a { text-decoration: none; font-size: 12px; } #top #header .avia_mega_div .avia_mega_text_block .avia-bullet { margin-top: 10px; left: -8px; }
please clear your browser cache and check.
Best regards,
MikeHi,
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,
MikeHi,
Thank you for your patience, I changed it to this and it seems to work now, please check:function custom_redirect_after_login( $redirect, $user ) { // URL of your custom My Account page $custom_account_page_url = site_url( '/dashboard/' ); // Check if the user is logging in from the specific login page if ( isset( $_SERVER['REQUEST_URI'] ) && strpos( $_SERVER['REQUEST_URI'], '/for-medlemmer/' ) !== false ) { return $custom_account_page_url; } return $redirect; } add_filter( 'woocommerce_login_redirect', 'custom_redirect_after_login', 10, 2 );
Best regards,
MikeHi,
Thanks, when I check your site I don’t see the same menu as in the screenshots above, so I assume that you wanted RED HAT LEARNING SUBSCRIPTION under Application Development
So I moved RED HAT LEARNING SUBSCRIPTION under Application Development and used the description as a tile option and added the custom class mega_menu_title
Please see the screenshot in the Private Content area, and check the site.Best regards,
MikeHi,
I’m not seeing this on the check out page, please see the screenshots in the Private Content area of what I see.
Please note that iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.Best regards,
MikeHi,
Thanks, when I try to go to the /for-medlemmer/ page as the client I see a 404 error, I find that the page has not been published.
For this to work the page needs to be published, it looks like you have two of these pages, so please publish and try again as a client that is not already logined in, such as in incognito mode. If it still doesn’t work I will check and try to find a solution.Best regards,
MikeHi,
Thanks for the videos, I have asked the rest of the team if that can reproduce and have a idea for a solution, Thank you for your patience.Best regards,
MikeHi,
Not one that we have access to, just use any fake one and posted the login details for both accounts in the Private Content area below.Best regards,
MikeHi,
I believe this would not be a good idea. If you want to try to copy and repair the shortcode in each page, you could try creating a new site with a fresh install on a temp domain and Enable the Avia Layout Builder Debugger on it and your lave site and then copy the debugger shortcode from the live site and paste it into a text editor like VScode or Notepad++ and then search and replace all of the HTML entities like these
and the paste it into the new site, this might work, but you will need to be very careful to not miss any as this would create unclosed tags and break the new page.
But when I view your site it looks like it is based on the health demo with your text added, so in considering the time it would take, it seems to me that it would be a faster and better process to create a new site with a fresh install on a temp domain, then import the health demo, and then copy the text from the frontend to the new site, not the backend because you don’t want to copy the errors over.
Also when you copy the text from the frontend ensure to first paste it into a text editor like VScode or Notepad++ and remove any HTML code before to paste it into the new site, otherwise you might copy unclosed HTML tags into your new site a break it.
This would be a safer method than copying the debugger shortcode if you don’t work with HTML a lot and can spot the errors.Best regards,
MikeHey Jak73,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 767px) { .responsive #top #wrap_all #main { padding-top: 10px !important; } }
feel free to adjust to suit, after applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Ok please leave that disabled, and include a admin login so we can adjust the code and a client login so we can test.
Please note that I don’t think you can test with a admin login, it should be a client level login.Best regards,
MikeHey Kelly,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#av-sc-portfolio-1 .grid-image.avia-hover-fx:hover .image-overlay.overlay-type-extern .image-overlay-inside { content: url(https://www.boomtownbrew.com/wp-content/uploads/2023/04/LasPalmas-BoomtownBrewery_350-2.png); } .main_color #av-sc-portfolio-1 .image-overlay .image-overlay-inside:before { background-color: transparent; } .avia_transform #av-sc-portfolio-1 a:hover .image-overlay { opacity: 1 !important; }
This will make mouse-over a different image, you can change the image to a gif and make each one different, first test the css to see how the image changes.
Best regards,
MikeHi,
Above you linked to /bliv-medlem/, not /dashboard/ perhaps that is the issue?Best regards,
MikeHi,
MACOSX is not the correct font name, it is the name of the directory in the zip file, try deleting this and then extracting the font zip file on your computer and remove all directories including “MACOSX” and then rezip the font file.
Then when you upload it the correct name will show “Blakely”.Best regards,
MikeJuly 22, 2024 at 10:31 pm in reply to: Text colors for Black background for Shop and Products #1462714Hey bemodesign,
The white lines on the sides of your images are in your thumbnails, see the direct link to your image below.
Try changing the size of your images so they are square then when you upload them they will not be cropped with the white sides.
It looks like the images that you are uploading are portrait and not square.Best regards,
MikeHi,
It looks like you are adding the full URL with a leading backslash before it, try using only the page URL like this:function custom_redirect_after_login( $redirect, $user ) { // Check if the user is logging in from the WooCommerce login form $requested_redirect_to = isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : ''; if ( empty( $requested_redirect_to ) && ( is_account_page() || is_page( 'for-medlemmer' ) ) ) { // URL of your custom My Account page $custom_account_page_url = site_url( '/dashboard/' ); $redirect = $custom_account_page_url; } return $redirect; } add_filter( 'woocommerce_login_redirect', 'custom_redirect_after_login', 10, 2 );
Best regards,
MikeJuly 22, 2024 at 5:29 pm in reply to: Menu in transparant box with logo area with separate background #1462686Hi,
Well, I don’t think that my solution above will work for you. I guess you will need to use the standard menu and try to customize it with css to look the way you want for desktop and then use the standard burger menu for mobile devices. So far I have not been successful at this, but I will keep trying.Best regards,
MikeHi,
Often when a page is corrupt in this way, you can not correct it and save again, the error just returns, typically using the page Revisions will also not work, but perhaps if you go back far enough it might work, it might be worth a try. But please note to might not be able to recover if it breaks this page.
I would recommend creating a staging copy of your site first to test on.
I would draw your attention to the av_fullscreen shortcode in the beginning of the text elements, this is your full screen slider at the top of your page, but it shows in the text element below the slider:
and it also shows in the last text element on the page:
so this doesn’t match the frontend of your site, as you don’t have more than one full screen slider on your page, thus this page is corrupt and I don’t see a way to correct it,
this is why I recommend either recreating the page in a new blank page, or using your server backup. I know you said that you would have to go back years, but it sounds like you have not been able to update the page in years, so the backup should be the same as the last time you edited the page. In my guess.Best regards,
MikeHi,
Ok, so you have had this issue for a few years?
The ALB code doesn’t become outdated, but unclosed HTML tags can break the backend of a site and the frontend can still look fine, this is because of how the shortcode is rendered for the frontend.
For your homepage each of the elements on the backend seem to show the code for the whole page and not for the specific element, I copied a couple of them and compared the code.
Unfortunately this page is corrupt and I don’t see a way to correct it, I believe your best option is to restore your site to a older working version, or you could try using the page Revisions to go back to before the page was corrupted, probably by saving it as a Block Editor page, or you could create new pages from scratch.Best regards,
MikeHi,
I don’t believe that there is a issue with backward compatibility, we would have also experienced this on our sites and seen other users post this, but I have seen shortcode in the text element become corrupt as in this screenshot:
https://img.savvyify.com/images/2024/07/21/Enfold_Support_6362.md.jpg
I also note that you seem to have put your ALB shortcodes in a text element, instead of adding the elements to the page, do you recall building your pages like this, it is unusual.
You could try rolling back to the older version, or restore your server backup to before you updated.Best regards,
MikeHi,
Thanks for the screenshot, I have not seen anything like this before so wee will need to login and check, but first you will need to use your new license to register for the support forum and open a new thread so we can help further.
Currently this post is using the contact form which is not appropriate for support questions like this, we are glad could help you so far, but we ask that you use the support forum for further support.
Thank you for understanding and using Enfold.Best regards,
MikeHi,
When you write:top:27%; is my live view in my smartphone good, but the view in the browser development is bad.
it sounds like you are referring to this custom css:
because it is the only one that is a percentage, but this one should not change your device vew because it has the max-width of 736px, which is smaller than your device.
This custom css should be the one that works on your device:
because it’s max-width is the same as your device, but I not sure if you are changing the top:16px; to top:27px; or 27%
If I’m correct about this, change this css to:@media only screen and (max-width: 373px) { .inner-container { position: relative; top: 16px; } }
so it stops working at 373px and then add this css for your device:
@media only screen and (min-width: 374px) and (max-width: 379px) { .inner-container { position: relative; top: your-value; } }
and adjust the your-value to what looks good on your device.
This way other devices will still look correct, it get tricky when a single device doesn’t display correctly, but I think this will work for you.
When I check with my iPhone 7 which has a screen width of 320px, the logo looks just like it does in the browser development tool for the same width.Best regards,
MikeJuly 21, 2024 at 6:55 pm in reply to: Padding conflict in the Menu between COLOURED button and OUTLINE (?) Button #1462619 -
AuthorPosts