Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the info.
Try to go to the Tools > Site Health panel (wp-admin/site-health.php?tab=debug), then check for the Theme Directory Location in the Info > Active Theme panel. Also, try to check the wp-config.php file and look for these constants:
define('WP_CONTENT_DIR', dirname(__FILE__) . '/custom-content'); // Change 'custom-content' to your desired folder name define('WP_CONTENT_URL', 'https://yourdomain.com/custom-content'); // Change to match the new URL define('WP_THEME_DIR', WP_CONTENT_DIR . '/themes'); // New theme directory define('WP_THEME_URL', WP_CONTENT_URL . '/themes'); // New theme URL
The constants WP_THEME_DIR change the default theme directory, and WP_CONTENT_DIR changes the default wp-content folder. It’s possible that the previous developer adjusted these settings.
Best regards,
IsmaelHey ibuzaev,
Thank you for the inquiry.
This might be an issue with the cache, compression or CDN plugin. We get a lot of resource errors like this:
style.min.css:1 Failed to load resource: net::ERR_NAME_NOT_RESOLVED https://8hnh35p8oe.a.trbcdn.net/wp-includes/css/dist/block-library/style.min.css?ver=6.6.2
Have you tried to temporarily disable the Enfold > Performance > File Compression settings or the cache plugin?
Best regards,
IsmaelHey Reut Rachel,
Thank you for the inquiry.
You will have to manually modify the includes > loop-search.php file in order to add a banner and move the pagination. To move the pagination, look for this line of code at the very bottom of the file:
echo avia_pagination( '', 'nav' );
Move it below this code, around line 4:
global $avia_config;
Best regards,
IsmaelHey es.design.ma,
Thank you for the inquiry.
Please go to the Appearance > Menus panel, then either delete the menu assigned as the Footer Menu or edit it with a new set of menu items. Let us know if this works for you.
Best regards,
IsmaelHey teoniko88,
Thank you for the inquiry.
Have you tried manually importing the demo using the XML files? Please check the link below for more info:
// https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo
Best regards,
IsmaelHey navindesigns,
Thank you for the inquiry.
Have you tried using the Masonry or Masonry Gallery element? You can set the Size Settings to Manual Masonry and upload images with portrait aspect ratios to make the items in the grid taller. You can also set the title and caption to only display on hover. Regarding the loading effect, the only option is to enable Enfold > Theme Options > Preloading.
Best regards,
IsmaelHey Bryan,
Thank you for the inquiry.
The html function for the grid style is in the enfold\config-templatebuilder\avia-shortcodes\postslider\postslider.php file. You can override this file in your child theme. Please check the instructions in the link below.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
Best regards,
IsmaelHi,
Thank you for the update.
How did you enable the Advanced Layout Builder for the glossary? Please provide a link to the page so we can check it. Do you see the content of the builder on the glossary page?
Best regards,
IsmaelOctober 21, 2024 at 5:30 am in reply to: Special characters appearing again, wp-config.php has correct DB_CHARSET #1469529Hi,
We are referring to changing the character set format. This may not fix the issue for characters or content that are already stored in the database, but it should affect newly created content. Please contact your hosting provider for further assistance.
Thank you for your patience.
Best regards,
IsmaelOctober 21, 2024 at 5:27 am in reply to: Bullets on showing in woocommerce short description #1469528Hey sgkeil,
Please continue here: https://kriesi.at/support/topic/bullets-on-showing-in-woocommerce-short-description-2/
Best regards,
IsmaelOctober 21, 2024 at 5:26 am in reply to: Bullets on showing in woocommerce short description #1469527Hey sgkeil,
Thank you for the inquiry.
The list is now bulleted. Did you figure this out?
.woocommerce-tabs #tab-description ul, #top .woocommerce-tabs .commentlist .description ul { list-style-type: disc; list-style-position: inside; }
Best regards,
IsmaelHi,
@cmactv: Have you tried using the avia_post_slide_query filter?add_filter('avia_post_slide_query', 'avia_post_slide_query_mod'); function avia_post_slide_query_mod($query) { $query['orderby'] = 'date'; $query['order'] = 'ASC'; return $query; }
Best regards,
IsmaelHi,
Thank you for the update.
What is the password? Could you provide a keyword or a screenshot of the search results? If you want to block search engines from crawling this specific page, you can install an SEO plugin such as Yoast, All in One SEO, or Rank Math and set the page to noindex. Please check the link below:
// https://yoast.com/help/how-do-i-noindex-urls/
Best regards,
IsmaelHey Dzimnikov,
Thank you for the inquiry.
What do you mean by categories? You can apply a unique class name (e.g., av-google-bad-script) to the h2 element either by defining the attribute manually or by using the Advanced > Developer Settings > Custom CSS Class field if you’re using a Special Element.
.responsive #top .av-google-bad-script { font-family: 'Bad Script', cursive; }
However, before that, you need to manually load the font:
function ava_enqueue_google_fonts() { wp_enqueue_style( 'av-google-font-bad-script', 'https://fonts.googleapis.com/css2?family=Bad+Script&display=swap', false ); } add_action( 'wp_enqueue_scripts', 'ava_enqueue_google_fonts' );
Best regards,
IsmaelOctober 21, 2024 at 4:45 am in reply to: Remove underline for links only in buttons’ is closed to new replies #1469523Hi,
Thank you for the update.
You can remove both css rules and replace them with the code @Mike provided above:
.main_color a { color: #f1f1f1; text-decoration: underline } .alternate_color a { color: #f1f1f1; text-decoration: underline !important;}
Use this if you need to adjust the text color:
#top a:where(:not(.wp-element-button,.avia-button)) { text-decoration: underline; color: #f1f1f1 !important; }
Best regards,
IsmaelHey Monika,
Thank you for the inquiry.
You can only modify a single element when using the Custom Elements Template, and you cannot combine them. To do so, you’ll need to create a Custom Layout and use either the Custom Layout or the Page Content element. Please check the links below for more info.
// https://kriesi.at/documentation/enfold/custom-layout-and-dynamic-content/
// https://kriesi.at/documentation/enfold/custom-element-templates/Best regards,
IsmaelHi,
Thank you for the update.
how to change the page titles (only on mobile view)
Are you referring to the Special Heading element? Please edit the element and adjust the settings under Styling > Font Sizes > Heading Font Sizes. You can toggle the device icons to change the font size for different screen sizes.
Best regards,
IsmaelOctober 18, 2024 at 5:28 am in reply to: Using shortcode without loading element code…is there a way? #1469360Hey CharlieTh,
Thank you for the inquiry.
This will not work because the accordion or toggle relies on resources that are only loaded on the frontend or within the builder. Unfortunately, loading the scripts and css manually can be a bit complicated since they depend on each other. You may need to load all the theme scripts just to make this small tab function properly.
Best regards,
IsmaelOctober 18, 2024 at 5:15 am in reply to: Remove underline for links only in buttons’ is closed to new replies #1469358Hey ScatmanAT,
Thank you for the inquiry.
The button text should not be underlined by default. Where can we see this issue? Please provide the page URL in the private field.
Best regards,
IsmaelHi,
Thank you for the update.
According to the screenshot, the server timed out due to the error “Website Security Network blocked by Origin Firewall.” Did you add or embed any custom scripts on this page? Please contact your hosting provider for more info about the issue.
Best regards,
IsmaelHi,
Thank you for the info.
Did you change the login URL? We can’t access the login page using the default login URL. Please provide the custom link in the private field.
Best regards,
IsmaelOctober 18, 2024 at 5:03 am in reply to: Posts randomly change from Default Classic Editor to Advanced Layout Builder #1469355Hey wema7300,
Thank you for the inquiry.
The editor should not automatically switch to the Advanced Layout Builder (ALB) unless toggled. Have you tried disabling the ALB for posts? You can add this code to the functions.php file:
function avf_alb_supported_post_types_mod($alb_post_types) { unset($alb_post_types[0]); return $alb_post_types; } add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);
Best regards,
IsmaelHi,
Thank you for the info.
Did you add any custom scripts or embed any code in this page? Please try to set the builder to debug mode so that we can check the builder shortcodes:
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
We get an error when we open the page:
load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,wp-hooks&ver=e827396fc34e6c62a26ca19ef49468b3:2 Uncaught TypeError: a(...).tipTip is not a function at Object.initTipTip (erp.min.js?ver=1.13.3:1:4772) at Object.initialize (erp.min.js?ver=1.13.3:1:4721)
This error is from a plugin with the slug “erp”. Are you using the WP ERP plugin?
Best regards,
IsmaelHey Woutski,
Thank you for the inquiry.
The custom font manager only supports Google Fonts, and the uploaded file must have a specific format. You may need to manually upload the font to your server and register it using the @font-face rule. Please refer to the link below.
// https://www.w3schools.com/cssref/css3_pr_font-face_rule.php
Best regards,
IsmaelHey JoStudioDeRijp,
Thank you for the inquiry.
You can use this css code to adjust the font size of the hotspot content:
#top .avia-tooltip.av-tt-hotspot { font-size: 20px; }
Best regards,
IsmaelOctober 18, 2024 at 4:27 am in reply to: Special characters appearing again, wp-config.php has correct DB_CHARSET #1469350Hi,
Thank you for the update.
Instead of changing the database or character set format, have you tried performing a search and replace? We don’t think this will resolve the issue since the invalid characters are already stored in the database. You can search for the incorrect characters and replace them with the correct ones. This can be done manually or by using the following plugin:
//https://wordpress.org/plugins/better-search-replace/
// https://wordpress.org/plugins/search-and-replace/Please don’t forget to create a site backup before doing the search and replace.
Best regards,
IsmaelHey Jason,
Thank you for the inquiry.
You may need to create another shortcode based on the Easy Slider element. Please try this in the functions.php file: https://pastebin.com/Fepy8EJi
Create a repeater field with the ID av_acf_slideshow_ids, then add the IDs of the images that you’d like to display in the slideshow. You can use the shortcode [av_acf_slideshow] in a Code or Text Block element, and optionally specify a different ACF field by using [av_acf_slideshow field=”your_custom_field_name”].
Best regards,
IsmaelHi,
Thank you for the info.
The video is not supposed to display on mobile devices. Please provide the login details in the private field so we can investigate the issue further.
Best regards,
IsmaelHey philthebass,
Thank you for the inquiry.
The editor seems to be loading correctly. Is this happening on a specific page? Please provide the link to the page where the issue occurs.
Best regards,
Ismael -
AuthorPosts