Forum Replies Created
-
AuthorPosts
-
Hi,
Yes, please open a new thread for any other issues you may have. We’ll close this one for now. Thank you for your patience.
Have a nice day.
Best regards,
IsmaelHey Mariarita,
Thank you for the inquiry.
You can add this css code but please note that this will affect all Image elements in the site.
.avia-image-container .avia_image { border-radius: 10px; }
Best regards,
IsmaelOctober 10, 2024 at 6:54 am in reply to: Custom add to cart url adding product twice to the cart in Woocommerce #1468764Hi,
Thank you for the update.
Where can we check the issue? The issue doesn’t occur on our installation when we include the quantity parameter. Please provide the site URL in the private field.
Best regards,
IsmaelHi,
Did you place the code inside this css media query?
@media only screen and (max-width: 767px) { // place the code here }
You can also adjust the font size by editing the slide. Go to Styling > Font Sizes, then adjust the Caption Content Font Size > Font Size for small screens (480px to 767px, e.g., Tablet Portrait) settings. Click the device icon to adjust the font size for different screen sizes.
Best regards,
IsmaelOctober 10, 2024 at 6:43 am in reply to: Errors when saving page edits – not a valid JSON response #1468762Hi,
Thank you for the update.
We saved the page content as a template, applied it to a temporary page, and removed the embedded code blocks. The issue does not occur on the temporary page. Please check the link in the private field.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Please try @Guenni007’s solution above or use this css code:
ul { font-size: 18px; /* Adjust the size as needed */ } ol { font-size: 18px; /* Adjust the size as needed */ }
Best regards,
IsmaelOctober 10, 2024 at 4:43 am in reply to: Membership plugin that works with Avia/Enfold layoutbuilder #1468759Hi,
What is the “old editor”?
It’s the classic editor or the default editor before the release of Gutenberg/Block editor.
I managed to solv the Block vs Classic problems with an awesome plugin called Admin and Site Enhancement aka ASE.
Glad to know that you managed to find a plugin for this. Thank you for sharing the info. Please feel free to open another thread should you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the info.
It seems the string or text is missing from the language files (es_ES.po file, line 29157). As a temporary solution, you can install the Loco Translate plugin and manually add the translations.
Line 29157 of the es_ES.po file:
#: framework/php/class-form-generator.php:509 msgid "" "This contact form is deactivated because you refused to accept Google " "reCaptcha service which is necessary to validate any messages sent by the " "form." msgstr ""
You can also use the filter that we provided above to directly translate the text.
Best regards,
IsmaelHi,
We adjusted the css code again. Please make sure to temporarily disable the Enfold > Performance > File Compression settings and purge the cache before testing the page again. You can also try checking the site on incognito mode:
@media only screen and (max-width: 390px) and (max-height: 844px), only screen and (max-width: 375px) and (max-height: 812px) { .avia-section.av-4yjl9v-7b320115415e977d04047ac1e3f3980a .av-parallax .av-parallax-inner { top: 150px; } }
Best regards,
IsmaelHi,
Thank you for the update.
We adjusted the css code a bit. Please try it again, then temporarily disable the Enfold > Performance > File Compression settings and purge the cache to make sure that the changes take effect.
@media only screen and (max-width: 767px) { .responsive .av-horizontal-gallery.av-4jjnvc9-2446bbdde681cfd04907a6d49c39f8a5 .av-horizontal-gallery-img, .av-horizontal-gallery.av-4jjnvc9-2446bbdde681cfd04907a6d49c39f8a5 .av-horizontal-gallery-inner { height: 400px !important; } }
Best regards,
IsmaelHi,
Yes finally found the way to remove the sidebar only in this category:
Great! Let us know if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelOctober 10, 2024 at 4:01 am in reply to: the events calendar list view disable previous and next event #1468754Hi,
Thank you for the clarification.
Please try this filter in the functions.php file:
add_filter('tribe_event_label_plural', 'avf_custom_tribe_events_label_plural'); function avf_custom_tribe_events_label_plural($label) { return 'Spoeddiensten'; }
Best regards,
IsmaelOctober 9, 2024 at 6:47 am in reply to: Membership plugin that works with Avia/Enfold layoutbuilder #1468704Hi,
Thank you for the update.
As the Membepress uses it’s own posts, I like to exclude the classic editor
What do you mean? In your first post, you mentioned that you don’t want to use the Gutenberg or Block editor for the courses and lessons. Selecting the Classic Editor should disable the Gutenberg editor entirely and enable the Classic Editor or the old editor.
Best regards,
IsmaelOctober 9, 2024 at 6:40 am in reply to: Custom add to cart url adding product twice to the cart in Woocommerce #1468703Hey marketbiz,
Thank you for the inquiry.
We are not sure what’s causing the issue, but we can only reproduce it when the quantity parameter is not included. Please make sure that the quantity parameter is included in the URL and set to 1.
Best regards,
IsmaelOctober 9, 2024 at 6:20 am in reply to: Errors when saving page edits – not a valid JSON response #1468701Hi,
Thank you for the update.
It might be an issue with the embedded code in the Code Block element.
<div class="sked-portal-container" style=""> <iframe id="sked-portal" sandbox="allow-top-navigation allow-scripts allow-forms allow-same-origin" style="border: none; height: 75vh; width: 100vw; " src="https://portal.sked.life/new-patient?key=sfdsfdsf"> </iframe> <script> (function(){ try { const redirectUrl = "https://blossomfamilychiropractic.com/schedule-appointment/appointment-thank-you-orlando/"; const messageHandler = function(event) { if(event && event.data) { const skedMessage = JSON.parse(event.data); if(skedMessage && skedMessage.actionType === 'confirm') { window.location.href = redirectUrl; } } }; window.addEventListener('message', messageHandler); } catch(err){}; })(); </script></div>
Instead of embedding this code directly to the page, try creating a custom shortcode for it. Example:
function sked_portal_shortcode() { ob_start(); ?> <div class="sked-portal-container" style=""> <iframe id="sked-portal" sandbox="allow-top-navigation allow-scripts allow-forms allow-same-origin" style="border: none; height: 75vh; width: 100vw;" src="https://portal.sked.life/new-patient?key=sfsfsdfsfssfds"></iframe> <script> (function(){ try { const redirectUrl = "https://blossomfamilychiropractic.com/schedule-appointment/appointment-thank-you-orlando/"; const messageHandler = function(event) { if(event && event.data) { const skedMessage = JSON.parse(event.data); if(skedMessage && skedMessage.actionType === 'confirm') { window.location.href = redirectUrl; } } }; window.addEventListener('message', messageHandler); } catch(err) {}; })(); </script></div> <?php return ob_get_clean(); } add_shortcode('sked_portal', 'sked_portal_shortcode');
You can use this shortcode in Code Blocke element:
[sked_portal]
Please make sure to update the key value in this URL:
https://portal.sked.life/new-patient?key=sfsfsdfsfssfds
Best regards,
IsmaelHey bemodesign,
Thank you for the inquiry.
This css code causes the issue:
img { border-radius: 30px !important; }
Please check the Quick CSS field or the style.css file and remove the code.
Best regards,
IsmaelHi,
Which elements or shortcodes are you trying to use? Most of the elements in the builder are available through the Shortcode Wand, with some exceptions such as full-width elements like Color Sections and Fullwidth Sliders. We’ll keep you updated if there are any changes regarding this.
Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for the update.
The screenshot was taken using an iPhone SE emulation. What is the actual model of your iPhone device? Please try adding this css code to adjust the parallax background position:
@media only screen and (max-width: 390px) and (max-height: 844px) { .avia-section.av-4yjl9v-7b320115415e977d04047ac1e3f3980a .av-parallax .av-parallax-inner { top: 150px; } }
Best regards,
IsmaelHi,
Thank you for the update.
the issue is the sidebar match in two parts on the sidebar and in the bottom.
Good to know that you found a working solution. However, we cannot find any sidebar on the page. Did you disable it?
Best regards,
IsmaelOctober 9, 2024 at 5:50 am in reply to: the events calendar list view disable previous and next event #1468686Hi,
Thank you for the update.
You can hide the next and previous navigation with this css code:
.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-nav__list-item { display: none; }
What do you mean by “title events”? Would you mind providing a screenshot of the element? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot.
Best regards,
IsmaelHi,
We edited the filter a bit. Please try this code:
add_filter('avia_layout_filter', 'avia_change_post_layout', 10, 2); function avia_change_post_layout($layout, $post_id) { if( is_tax('product_brand') ) { $layout['current'] = $layout['fullsize']; $layout['current']['main'] = 'fullsize'; } return $layout; }
Best regards,
IsmaelHi,
Glad it worked! Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey peterolle,
Thank you for the inquiry.
Are you using a multi-language plugin like WPML or Polylang? The string should automatically translate to the active language, but if you need to change it, you can use the avf_contact_form_recaptcha_disabled_msg filter. Here’s an example:
function avf_custom_recaptcha_disabled_msg( $msg ) { $custom_msg = __( 'The contact form is disabled because you did not consent to Google reCaptcha.', 'avia_framework' ); return $custom_msg; } add_filter( 'avf_contact_form_recaptcha_disabled_msg', 'avf_custom_recaptcha_disabled_msg' );
Best regards,
IsmaelHi,
The issue with the mobile menu occurs because of this css code:
#top #header_main > .container, #top #header_main > .container .main_menu .av-main-nav > li > a, #top #header_main #menu-item-shop .cart_dropdown_link { line-height: 244px !important; }
Please try wrapping the rule in a css media query so that it only affects the desktop view:
@media only screen and (min-width: 989px) { /* Add your Desktop Styles here */ #top #header_main>.container, #top #header_main>.container .main_menu .av-main-nav>li>a, #top #header_main #menu-item-shop .cart_dropdown_link { line-height: 244px !important; } }
Best regards,
IsmaelHi,
Thank you for the update.
Are you referring to the Accordion element? It seems to be displaying correctly on our end. Please review the screenshot in the private field. If this is not the issue, please provide a screenshot to help us better understand and address the problem.
Best regards,
IsmaelHi,
Thank you for the update.
Please include this css rule inside the css media query (max-width: 767px) to adjust the font size of the caption content:
#top .avia-slideshow .av-slideshow-caption.av-m1g8o6g7-f7efce2774fcf0ca4bccdacd45c3be64__0 .avia-caption-content p { font-size: 18px; }
Best regards,
IsmaelOctober 8, 2024 at 4:44 am in reply to: Errors when saving page edits – not a valid JSON response #1468622Hey theminacompany,
Thank you for the inquiry.
Have you tried temporarily deactivating the plugins? It’s possible that one of the plugins is causing the update issue. Please deactivate all plugins one by one to check which one is causing this issue and let us know if this solves the problem.
Best regards,
IsmaelHi,
We’d like to add this to your site, but the Appearance > Theme File Editor is not accessible. Please enable the editor or provide the FTP login details in the private field.
You can enable the editor by setting DISALLOW_FILE_EDIT to false in the wp-config.php file.
Best regards,
IsmaelHi,
Thank you for the screenshots.
It looks like you have fixed this by enabling the parallax option. Please check the screenshot in the private field. Let us know if you need further assistance.
Best regards,
IsmaelOctober 8, 2024 at 4:27 am in reply to: the events calendar list view disable previous and next event #1468619 -
AuthorPosts