Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
We modified the display_custom_attribute_in_product_grid function a bit to get the term or autore link and to redirect to the author page, you have to add this script in the functions.php file.
function av_custom_inline_script() { // redirect to autore page wp_add_inline_script( 'jquery', " (function($) { $(document).ready(function() { $('.products .product a').on('click', function(e) { e.preventDefault(); var link = $(this).attr('href'); if(e.target.className.includes('attribute-value')) link = $(e.target).data('url') window.location.href = link; }); }); })(jQuery); " ); } add_action( 'wp_enqueue_scripts', 'av_custom_inline_script' );Best regards,
IsmaelHi,
Thanks for following up.
You may have forgotten the links to the screenshot. Please use platforms like Savvyify, Imgur or Dropbox for the screenshot.
Best regards,
IsmaelHey Hans K.,
Thank you for the inquriy.
Could you specify the dimensions of the image you are trying to upload? If you want to ensure it appears exactly as 1500x430px, we recommend resizing the image to those dimensions before uploading it to the slider. However, it’s important to keep in mind that the actual display of the images may still be influenced by the slider’s size and the viewer’s screen resolution. The theme may also have to further adjust the size of the image in order to keep its aspect ratio.
Best regards,
IsmaelHey John,
Thank you for hte inquiry.
You can add this css code to apply a border around the wpforms container.
.avia_codeblock .wpforms-container { border: 1px solid #777777; padding: 2em; border-radius: 5px; }If you need to apply this modification to a specific element, try to add a custom css class name or ID to the code block element.
// https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support
Best regards,
IsmaelHey neotel2k,
Thank you for the inquiry.
We found the following error in the console but we are not yet what is causing it because the files are compressed. Please disable Autoptimize compression temporarily, and make sure that the Enfold > Performance > File Compression settings are also disabled.
Uncaught SyntaxError: Invalid regular expression flagsBest regards,
IsmaelHi,
Thank you for the update.
When it says “standard theme”, it probably refers to the default TwentyX themes provided by WordPress. You can ignore these suggestions since you’re using a premium theme. Again, a screenshot of the issue or suggestions will help.
Best regards,
IsmaelSeptember 25, 2023 at 6:50 am in reply to: Spacebar not working in “Special Heading” and “Timeline” with SPECTRA plugin #1420223Hi,
Thank you for the info.
We are not sure why the issue occurs, and it appears to affect all input fields, not just the Special Heading element. We couldn’t find any specific errors or issues. Unfortunately, we will not be able to provide support for plugin-related issues and since the theme includes its own Advanced Layout Builder (ALB), we recommend disabling the plugin and using the default builder instead.
We apologize for any inconvenience caused. If you have any other questions or require assistance with any other aspects of the theme, please don’t hesitate to reach out.
Best regards,
IsmaelSeptember 25, 2023 at 5:52 am in reply to: Saving didnt work! Please reload the page and try again #1420221Hi,
Thank you for the info.
We managed to create and publish a page using the Advance Layout Builder (ALB) without encountering any errors, but we always get a 404 not found error for the wp-admin/admin-ajax.php when we try to save the theme options. Where is the site hosted? Please try to set the installation to debug mode and post the S/FTP details in the private field so that we can trace the errors.
// https://wordpress.org/documentation/article/debugging-in-wordpress/#wp_debug
Regarding the private token, please review the documentation and make sure to check the required permissions.
// https://kriesi.at/documentation/enfold/theme-registration/#toggle-id-5
Unfortunately, we do not handle refunds or sales inquiries in this forum. Please contact Themeforest support for more information.
Best regards,
IsmaelHi,
. But the recurring events still only seem to be showing the one/next future event
Only the next occurrence of a recurring event is displayed because there seems to be no way to retrieve recurring events when using query_posts, which is the default function used by the Blog Posts element. When we try to retrieve the post object ID based on the occurrence ID, it always return the ID of the parent event, not the actual post object ID of the occurrence. We can’t find any solutions in the documentation.
Have you tried using the tribe events shortcodes instead of the the Blog Posts element?
// https://theeventscalendar.com/knowledgebase/embedding-calendar-views-with-the-tribe_events-shortcode/
// https://theeventscalendar.com/knowledgebase/shortcodes/Best regards,
IsmaelHi,
UPDATE: Re-uploading the font files to the Custom Font Manager should also help.
Best regards,
IsmaelHey hostworks,
Thank you for the inquiry.
The following documentation should help.
// https://kriesi.at/documentation/enfold/icon/#icons-are-showing-as-rectangular-boxes-
The font are not displaying because of the following CORS error, which can be fixed by adding the directive in the .htaccess file, as described in the documentation above .
other.site.org/:1 Access to font at 'http://resource.site.org/wp-content/uploads/dynamic_avia/avia_type_fonts/itc-legacysanitcboo-1/itc%20-%20legacysanitcboo.ttf' from origin 'http://other.site.org' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.Best regards,
IsmaelSeptember 25, 2023 at 4:24 am in reply to: Change background position on Fullwidth Easy Slider on mobile #1420217Hey Dzimnikov,
Thank you for the inquiry.
You can use this css code to adjust the position of the image for smaller screens.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #top .av_slideshow_full .av-lmy2017r-6f332ec5b1caff086e271debf2f4483e__0 img { border-radius: 0px; left: -100px !important; } }Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
IsmaelHi,
Sorry for the confusion. It turned out that the start date are already displayed in the frontend but for recurring events, only the initial event start date is displayed instead of the occurrence start date. To fix this issue, we modified the loop-index.php file in the child theme.
if(get_post_type(get_the_ID() == 'tribe_event')) { $time = tribe_get_start_date(get_the_ID(), true); $next_occurrence = tribe_events()->where( 'series', get_the_ID() )->where( 'starts_after', 'now' )->first()->ID; if($next_occurrence !== NULL) { $time = tribe_get_start_date($next_occurrence, true); } }If you want to display more items, just edit the avia_blog_post_query_mod filter in the functions.php file. Adjust the value of the posts_per_page parameter around line 15 and 34.
line 15:
$events = tribe_get_events( [ 'posts_per_page' => 10, 'start_date' => 'now', 'tribeHideRecurrence' => 0 ] );line 34:
$query['posts_per_page'] = 10;Best regards,
IsmaelHi,
Thank you for the update.
Yes, we may have to access the site in order to properly check the modification. Please provide the WP and S/FTP details in the private field, and make sure that the theme is updated to version 5.6.6.
Best regards,
IsmaelSeptember 22, 2023 at 7:58 am in reply to: Sorry your session has expired error after updating Woocommerce #1419997Hi,
Thank you for the info.
Does it work correctly when you temporarily disable the Enfold > Performance > File Compression settings. It is possible that the file compression conflicts with the plugin’s scripts, causing the error. If the issue persists, please try to contact the plugin developers for additional assistance.
Best regards,
IsmaelSeptember 22, 2023 at 7:55 am in reply to: Sidebar widgets on single product pages are not showing all of the widgets #1419996Hi,
No worries! Glad we could be of help. Please do not hesitate to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
The changes should not have affected the previous script. Please make sure to copy the code directly from the forum, not from your email. This is the previous script without the scrollTo changes.
function av_custom_inline_script() { // apply inputmode to datepicker wp_add_inline_script( 'jquery', " (function($) { $('.avia_datepicker').attr('inputmode', 'none'); })(jQuery); " ); } add_action( 'wp_enqueue_scripts', 'av_custom_inline_script' );Best regards,
IsmaelSeptember 22, 2023 at 7:51 am in reply to: Accessibility issue: subnav menus need a role=”menu” #1419994Hey davidkfry,
Thank you for the inquiry.
Please add this script in the functions.php file to apply the role attribute to the submenu container.
function av_custom_inline_script() { // apply role menu to subnav wp_add_inline_script( 'jquery', " (function($) { $('.av-subnav-menu').attr('role', 'menu'); })(jQuery); " ); } add_action( 'wp_enqueue_scripts', 'av_custom_inline_script' );Best regards,
IsmaelHi,
The visual and code editor mode is for the block or gutenberg editor. It will not affect the display of the Advance Layout Builder.
Best regards,
IsmaelHi,
We may nee to access the site in order to debug the issue properly. Please provide the WP and S/FTP details in the private field. Would it be alright if we deactivate the plugins temporarily while testing the site?
Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for the update.
What do you mean by “thanone window”? Please provide a screenshot so that we can better understand the issue.
Best regards,
IsmaelHi,
Thank you for the screenshot.
Looks like the caption title of the other slides have different configuration. Please edit the slider item, then look for the Styling > Font Sizes settings.
Best regards,
IsmaelHey Andreas,
Thank you for the inquiry.
The lightest weight for the Open Sans font is 300, so it is not possible to set it to 100.
// https://fonts.google.com/specimen/Open+Sans
This is the font loaded by the theme.
<link type="text/css" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:300,400,700%7COpen+Sans:400,600&display=auto" id="avia-google-webfont">Best regards,
IsmaelHi,
Thank you for the update.
there is no cod block and full-width menu
There is a Code Block and Fullwidth Sub Menu element in the Content Elements tab of the ALB. In order to easily find elements, try to adjust the sorting of the ALB elements by name (ascending).
Best regards,
IsmaelHi,
Thank you for the update.
The section seems to be displaying correctly when we check the site on Firefox. Please check the screenshot in the private field.
Best regards,
IsmaelHi,
Thank you for the update.
Yes, we can now see the image, but we can’t see the content of the “Inicio” page. We saved the content as template named “inicio template a” and applied it to another page. Please delete the current home page then replace it with the page in the private field.
To adjust the style of the column shown in your screenshot, consider using this css code. Avoid setting a fixed width in pixels because it will not respond properly on different screen sizes.
.responsive #top #wrap_all .flex_column.av-3p5h0yj-7ac6c7bb93c2a48afb5f04e07516a84b { width: 60%; }Best regards,
IsmaelHey daimonart,
Thank you for the inquiry.
A dedicated page is automatically created for each author, displaying posts they have written or published.
Example:
http://site.com/author/admin/You can also create a custom author template, but this will require a bit of coding.
// https://codex.wordpress.org/Author_Templates#Custom_Author_Information
Best regards,
IsmaelHi,
Thank you for the update.
makes the phone number top section sticky on desktop and mobile
Yes, that should be possible. Please add this css code and make sure that the Enfold > Header > Header Behavior > Unstick Topbar option is deactivated.
#header_meta { position: fixed; width: 100%; } #header_main, .header_bg { top: 30px; }Best regards,
IsmaelHi,
Thank you for the update.
You may need to purge the cache or do a hard refresh. It’s possible that you’re viewing a cached version of the page. If the issue persists, let us know.
Best regards,
IsmaelSeptember 21, 2023 at 12:15 pm in reply to: Enfold (FORM) not working with correctly configured SMTP. #1419890 -
AuthorPosts
