Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
To hide the post tags, you can add this code in the Quick CSS field or the style.css file:
#top #wrap_all .slide-meta-tags { display: none; }
Let us know the result.
Best regards,
IsmaelHi,
No problem! Feel free to open another thread if you have more questions. Have a nice day.
Best regards,
IsmaelJune 20, 2025 at 9:03 am in reply to: H1 Styling Issue After Embedding Map Using WP Maps Plugin #1485709Hey lara666,
Thank you for the inquiry.
The font looks different on the “our-services” page because the variation 300 is not loaded for some reason, so it falls back to 100 font weight. Technically, the heading element in the “struct-projects-map” has the correct appearance. If you need to make the font weight consistent, you can try this css code:
.av-thin-font .av-special-heading-tag, .modern-quote .av-special-heading-tag { font-weight: 100; }
This is the font in the services page:
<link type="text/css" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:300,400,700%7COpen+Sans:400,600%7CRoboto:100,400,700&display=auto" id="avia-google-webfont">
And this is the one loaded on the other page, probably because of the map:
<link type="text/css" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Google+Sans:400,500,700|Google+Sans+Text:400,500,700&lang=en">
Best regards,
IsmaelHi,
Great! Glad to know it worked. Since you’re loading the font using the wp_enqueue_style, you might be able to simply turn off the font selection in your layer slider, if we’re not mistaken. Feel free to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelHey mrqslmk,
Thank you for the inquiry.
Instead of using shortcodes, you can directly use html in the accordion content. Example:
<div class="av-mod-alternate-section"> <div class="av-mod-image"> <img src="image1.jpg" alt="Image 1"> </div> <div class="av-mod-text"> This is the text for section 1. Image is on the left. </div> </div> <div class="av-mod-alternate-section av-mod-reverse"> <div class="av-mod-text"> This is the text for section 2. Image is on the right. </div> <div class="av-mod-image"> <img src="image2.jpg" alt="Image 2"> </div> </div> <div class="av-mod-alternate-section"> <div class="av-mod-image"> <img src="image3.jpg" alt="Image 3"> </div> <div class="av-mod-text"> This is the text for section 3. Image is on the left again. </div> </div>
Add this code in the Quick CSS field:
.av-mod-alternate-section { display: flex; align-items: center; margin: 2rem 0; gap: 2rem; } .av-mod-reverse { flex-direction: row-reverse; } .av-mod-image img { max-width: 300px; height: auto; display: block; } .av-mod-text { max-width: 600px; }
Let us know if you need more info.
Best regards,
IsmaelJune 20, 2025 at 8:18 am in reply to: Custom Posts No Longer Display After Saving Blog Post Eliment #1485705Hey NicomIT,
Thank you for the inquiry.
Where can we check the issue? Please create a test page and provide the login details in the private field so we can investigate. Make sure that Appearance > Theme File Editor is accessible.
Best regards,
IsmaelHey limedrop,
Thank you for the inquiry.
The button is being covered by the next column because of this css code:
.flex_column.av-jphwa-2f2d0c7ad638153de46afd3b2370f48d { position: relative; right: 250px; padding: 200px 0px 0px 0px; }
You could adjust the z-index of the first column, but it will put the text behind the background of the first column. Try to decrease the value of the right property to 100px or lower.
Let us know the result.
Best regards,
IsmaelHey Sebastian,
Thank you for the inquiry.
Apply a Custom CSS Class name (e.g “avia-custom-gallery”) to the Gallery element in the Advanced > Developer Settings panel, then add this css code to adjust the width of the items on mobile view.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #top .avia-custom-gallery .avia-gallery-thumb a { width: 25%; } }
Best regards,
IsmaelJune 20, 2025 at 7:39 am in reply to: Settings import: couldnt’t import the config because the server didnt resp #1485702Hi,
Thank you for the info.
We uploaded the exported theme options to your installation and got a 403 or forbidden error. The same theme options file works fine on our own installation, so it’s definitely an issue with the server configuration. We could try uploading the theme options directly in your database, but we’ll need access to it.
Best regards,
IsmaelHi,
Thank you for the update.
and when I set it to “scale to fit”, it doesn’t show on mobile.
The background is set to “scale to fit” and it’s still visible on smaller screens when we checked. If the issue still occurs on your end, try to duplicate the section, adjust the background size settings, one using “scale to fit” and the other “stretch to fit”, then toggle the sections’ visibility for different sizes using the Advanced > Responsive > Element Visibility options.
You can also add this css code to manually adjust the background size to “cover” or “stretch to fit” on smaller screens:
@media only screen and (max-width: 989px) { /* Add your Mobile Styles here */ #top #wrap_all .flex_cell.av-m7hqe6b7-0a95c68b280818d6da5bb44681988588 { background-size: cover !important; } }
Best regards,
IsmaelHi,
Thank you for the screenshots.
How did you set the font? It’s only loading on the homepage, probably because you have selected the fonts in the layer slider settings and it only loads on pages where the slider is present. You will need to manually load the fonts on other pages as well.
<link href="https://fonts.googleapis.com/css?family=Jost:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i%7CFraunces:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
Please try this code in the functions.php file:
function ava_load_custom_fonts() { wp_enqueue_style( 'ava-custom-google-fonts', 'https://fonts.googleapis.com/css?family=Jost:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Fraunces:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i', false ); } add_action('wp_enqueue_scripts', 'ava_load_custom_fonts');
Best regards,
IsmaelHi,
We can’t reproduce the issue with the section backgrounds. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot.
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelHey atx_m,
Thank you for the inquiry.
Please try to add this code to the functions.php file to make sure that the post meta info is displayed:
function avf_postslider_posts_meta_data_show_mod(){ return true; } add_filter('avf_postslider_posts_meta_data_show', 'avf_postslider_posts_meta_data_show_mod'); function avf_postslider_posts_meta_data_mod(){ return 'always'; } add_filter('avf_postslider_posts_meta_data', 'avf_postslider_posts_meta_data_mod');
Let us know the result.
Best regards,
IsmaelHi,
Thank you for the update.
You can add this code in the Quick CSS field to keep the thumbnail slide navigation from moving.
.ls-thumbnail-slide { margin-left: 0 !important; }
Let us know the result.
Best regards,
IsmaelJune 19, 2025 at 5:17 am in reply to: Settings import: couldnt’t import the config because the server didnt resp #1485654Hi,
Thank you for the info.
We’ll also need access to the exported theme options so we can test it on our end. Please upload them to Dropbox or any file sharing platform. Do you have a site backup or restore point?
Best regards,
IsmaelHey John,
Thank you for the inquiry.
The theme only supports Smash Balloon Social Photo Feed – Easy Social Feeds Plugin for Instagram posts. For facebook feeds, you may need to use one of the following plugins:
— https://wordpress.org/plugins/custom-facebook-feed/
— https://wordpress.org/plugins/search/facebook+feed/Unfortunately, the theme does not include a default integration for this plugin or for facebook feeds.
Best regards,
IsmaelHey!
Thank you for the inquiry.
Did you add this css code?
@media only screen and (max-width: 767px) { #top .header_color .av-hamburger-inner,#top .header_color .av-hamburger-inner::before,#top .header_color .av-hamburger-inner::after { background-color: var(--enfold-header_burger_color); } }
This sets the color of the hamburger menu icon to white. You can replace it with:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #top .header_color .av-hamburger-inner, #top .header_color .av-hamburger-inner::before, #top .header_color .av-hamburger-inner::after { background-color: var(--enfold-main-color-color); } }
Regards,
IsmaelHi,
Thank you for the clarification.
As mentioned above, it’s not possible to enable the AJAX portfolio on archive or category pages. You will need to create dedicated custom pages for your portfolio categories instead, add the Portfolio Grid element and manually enable the AJAX portfolio option, instead of using the default portfolio category template. You can also redirect the default category pages to the custom pages with the AJAX portfolio enabled.
— https://wordpress.org/plugins/eps-301-redirects/
— https://wordpress.org/plugins/redirection/Best regards,
IsmaelHi,
However, I believe there may have been a misunderstanding regarding the issue. The problem is not with the icon itself or its aria-hidden attribute, but with the structure and function of the link that wraps the icon.
If we’re not mistaken, the issue occurs because the SVG icon includes the aria-hidden attribute, which makes it unreadable to accessibility tools. As a result, the parent link is marked as “suspicious” since the icon is hidden and the link lacks any accessible text or description. The span avia_hidden_link_text, which contains the word “Search” also has its display property set to none, making it inaccessible to screen readers as well.
Removing the aria-hidden attribute from the SVG icon or adjusting the visibility of the avia_hidden_link_text should help.
#top .avia_hidden_link_text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
You can also try editing the enfold/includes/config-enfold/functions-enfold.php, around line 125, change the text “Search” to “Click here to search”.
$items .= '<span class="avia_hidden_link_text">' . __( 'Click Here to Search', 'avia_framework' ) . '</span>';
According to https://wave.webaim.org/, screen readers tend to better interpret buttons or links when it contains more descriptive text.
If this doesn’t help, you can always try the suggestions above.
Let us know the result.
Best regards,
IsmaelHi,
Thank you for the update.
How can I replace the image with a video please?
You can use the Video element or an Image element with a video URL as the link. When the image is clicked, the video will open in a lightbox. Let us know if you need more info.
Best regards,
IsmaelJune 18, 2025 at 7:18 am in reply to: on blogs page after feature images its shiow big space #1485613Hi,
Did you add the css code? Please try to toggle or temporarily disable the Enfold > Performance > File Compression settings, then purge the cache. Let us know the result.
Best regards,
IsmaelHi,
If changes are made, such as css modifications or additional elements added to certain pages, the theme will try to regenerate the post css files and dynamic stylesheets, but this process should not consume significant server resources and will cease immediately once the files are generated. And since changes have been made to the site, the cache plugin will also perform its task of rebuilding cached files to make sure updated content is served to the client. This process may temporarily consume server resources.
We installed the Query Monitor plugin but didn’t find any errors, only minor notices from the WordPress core, which should not impact the site in any way. Let us know in a different ticket if the issue occurs again. We’ll close this one for now.
Best regards,
IsmaelJune 18, 2025 at 6:56 am in reply to: Create a main landmark by placing the element around all the site’s pages #1485611Hi,
Thank you for the update.
For the main menu or navigation, check the
includes > helper-main-menu.php
file and to modify the footer, you can edit thefooter.php
file. Make sure sure to keep notes or logs of each modification in case the parent theme files are updated or changed in the future.Best regards,
IsmaelHi,
If we’re not mistaken, he’s asking if it’s possible to apply the AJAX portfolio on category or archive pages. Unfortunately, there is no option for this by default.
Best regards,
IsmaelHey KevinNorlander,
Thank you for the inquiry.
The “About” page seems to be displaying correctly. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot.
Also, try to temporarily disable the cache plugin and the Enfold > Performance > File Compression settings to make sure that any css modifications are reflected on the front end.
Best regards,
IsmaelHey Aron,
Thank you for the inquiry.
Currently, there are no plans on releasing a new demo or template, but the elements in the theme are fully configurable with some template and css modifications. If you can describe what you’re trying to create, we’d try to help out or provide guidance.
Best regards,
IsmaelHey tonyiatridis,
Thank you for the inquiry.
We enabled the Project Settings > Navigation > Show Navigation Buttons > Slide Navigation Buttons, then added this css code to make the thumbnail navigation fullwidth.
.ls-noskin .ls-thumbnail { top: 0px; width: 100% !important; }
Best regards,
IsmaelHey connect4consulting,
Thank you for the inquiry.
It looks like this code was added, which forces the accordion items to remain open every time.
.js_active .toggle_wrap { display: block; position: static; visibility: visible; left: 0; width: auto; z-index: 1; }
Please remove the css code from the wp-content/themes/gpa-therapy-3/style.css file.
Best regards,
IsmaelHey limedrop,
Thank you for the inquiry.
You can try this css code to apply a linear gradient background color to the header:
#top .av_header_transparency .header_bg { opacity: 1; background: linear-gradient(to bottom, #0f114c, rgba(15, 17, 76, 0)); }
You may need to adjust the color of the main menu items as well.
Best regards,
Ismael -
AuthorPosts