Forum Replies Created

Viewing 30 posts - 20,761 through 20,790 (of 67,479 total)
  • Author
    Posts
  • in reply to: Category Title in Category/Archive Page #1150926

    Hi,

    Thanks for the update.

    You can modify the archive.php file. If you have a child theme, just create a copy of the file in the child theme directory. Look for the term or category description around line 34:

    <?php 
    
    						$tds =  term_description(); 
    						if($tds)
    						{
    							echo "
    <div class='category-term-description'>{$tds}</div>
    ";
    						}
    					?>
    

    Below, you can add this code to render the category title:

    <?php single_cat_title('Currently browsing '); ?>.
    
    

    More info in the documentation.

    // https://developer.wordpress.org/reference/functions/single_cat_title/

    Best regards,
    Ismael

    in reply to: Avia Layout Builder and Polylang Problem #1150923

    Hi,

    Thank you for the update.

    The WPML plugin is what is currently used in the site. Did you disable the Polylang plugin? Are you able to translate the pages using the current plugin? We will leave the link to the documentation just in case.

    // https://wpml.org/documentation/theme-compatibility/enfold/

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    You can hide the text initially, then only display it when its respective language is active. Please replace the css with the following code.

    .avia_cookie_text span {
        display: none;
    }
    
    html[lang="sl-SI"] .sl-cookie, 
    html[lang="en-US"] .eng-cookie,
    html[lang="it-IT"] .it-cookie {
        display: inline;
    }

    Best regards,
    Ismael

    in reply to: Custom header image for posts? #1150881

    Hi,

    Thank you for the inquiry.

    You can use the is_singular(‘sfwd-courses’) conditional tag to display a slider only on the course pages.

    This is the previous snippet:

    // https://pastebin.com/Gm8U9Z14

    Thread: https://kriesi.at/support/topic/advanced-layout-editor-for-blog-post-page/#post-994194

    You can duplicate the snippet and change the function name “ava_after_main_container_mod” to something else. Then adjust the this line:

     if(is_single()) {
            echo $output;
        }
    

    ,.. to:

     if(is_singular('sfwd-courses')) {
            echo $output;
        }
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We want it to simply pull in the full size image

    That is the default size of the featured image in the single post page. If you want to adjust it, install the following plugin, then go to the Settings > Media panel. Look for the “entry_with_sidebar” thumbnail, adjust the width and height value, update, save and then regenerate the thumbnails. You have to manually upload the images again if you don’t want to regenerate all existing thumbnails.

    // https://wordpress.org/plugins/simple-image-sizes/

    Let us know how it went.

    Best regards,
    Ismael

    in reply to: Blog Single Post Featured Image Size #1150877

    Hi,

    Thank you for the inquiry.

    That is the default size of the featured image in the single post page. If you want to adjust it, install the following plugin, then go to the Settings > Media panel. Look for the “entry_with_sidebar” thumbnail, adjust the width and height value, update, save and then regenerate the thumbnails. You have to manually upload the images again if you don’t want to regenerate all existing thumbnails.

    // https://wordpress.org/plugins/simple-image-sizes/

    Best regards,
    Ismael

    in reply to: Mobile Menu stuck #1150857

    Hi!

    Did you see my link I posted a while back? It can be solved with JavaScript event handlers!

    Yes, we included that in the report and we are currently testing it because it looks promising. We’ll let you know.

    Cheers!
    Ismael

    in reply to: WP caught error in admin-ajax after upgrading to 4.6.2? #1150854

    Hi,

    I see. Another user reported that errors occur when executing WP-CLI commands. Are you still receiving the same errors in the mail?

    Best regards,
    Ismael

    in reply to: Caching Issue #1150850

    Hi,

    Thank you for the update.

    We are not really sure if this is an issue with the theme because we are not able to reproduce the problem on our local installation. The resources are loading properly on incognito mode even when the “aviaCookieSilentConsent” is not added in the local storage. Do you have a staging version of the site, or any other site using Enfold?

    Best regards,
    Ismael

    in reply to: Cookie concent bar on mobile and tablet #1150847

    Hi,

    Great! Glad that the consent bars are now visible.

    1-2) You can definitely enable the file compression settings, but new changes or modifications will not take effect immediately, so make sure that everything in the site is completely done before turning them on again.

    3.) Nothing really. Just make sure that the site is using the updated version of the theme. If you ran into troubles again, you can always come back in the forum.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: wrong tooltip position in firefox #1150831

    Hi,

    What is the login URL? We tried the default login URL, but it redirects to a 404 page. Please include it in the private field.

    Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Have you tried using the Image element as suggested above? You can set the caption to display over the image, and adjust the overlay appearance. It is also possible to display the caption on hover.

    Unfortunately, we can’t set the caption in the partner/logo element to go over the images because they are added as tooltip, which is rendered outside the item container.

    Best regards,
    Ismael

    in reply to: color section background image parallax issue #1150821

    Hi,

    We’ll let you know once we found a fix. For now, you can either use the css code to pull the background upwards or add the script to emulate a resize event. Please don’t hesitate to open a new thread if you need anything else.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: header widget help #1150818

    Hi,

    Glad it worked.

    The only thing is I don’t understand why this code (in documentation) doesn’t work.

    There is probably a missing option that we missed, or another css modification is preventing it from working as is expected. Please open a new thread if you need anything else. We’ll close the thread for now.

    Best regards,
    Ismael

    in reply to: Mobile Menu stuck #1150813

    Hi,

    Sorry about that. We tried to create an overlay behind the mobile menu to cover the main container and hopefully prevent scrolling of the background layers, but it didn’t work. Seems to be an issue with the new iOS update as mentioned.

    The issue has been reported to the dev team, so hopefully they will find a solution. We’ll get back to you once it is available.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Instagram widget in cookie window? #1150797

    Hey L+T,

    Thank you for the inquiry.

    The theme’s Instagram widget doesn’t really generate any cookies because the images are directly scraped from the Instagram server, so it doesn’t have to be included in the privacy options. Unfortunately, Instagram is now discouraging this method in favor of their new API, which requires a proper form of authentication that will probably generate cookies.

    You can find the deprecation notice in the following link.

    // https://www.instagram.com/developer/
    // https://developers.facebook.com/docs/instagram-basic-display-api/

    We don’t really know yet whether this new API will be added in the theme or not, so for now you have to use a plugin.

    // https://wordpress.org/plugins/instagram-feed/
    // https://wordpress.org/plugins/wd-instagram-feed/

    Best regards,
    Ismael

    Hi Justin,

    That’s great! Glad to know that it’s working again now. Please let us know in another thread if you need anything else. We’ll close this one for now.

    Have a nice day.

    Regards,
    Ismael

    Hi!

    All the snippets that we recently added in the functions.php file are necessary, so you should not remove them. They will enable the ALB and the Layout meta box for the custom post types, and execute shortcodes that are added within the builder elements.

    We urged you to close the thread because the initial problems have already been solved — the ALB for custom post type and the duplicate shortcodes. Prolonging threads is actually at your disadvantage because it gets quite confusing not only for us but for other users who might be looking for the same solution. This is why we always ask our users to open a separate thread for each inquiry, and ask them to avoid extending existing ones.

    Thank you for understanding.

    Best regards,
    Ismael

    in reply to: Fixing tab section not showing all of the content #1150774

    Hi,

    Thank you for the info.

    The content of the tab section is taller than the specified maximum height value, cutting off any content at the bottom. Please try to use this css code to remove the height restriction.

    .av-tab-section-outer-container {
    	max-height: none !important;
    }

    And don’t forget to toggle the Performance > File Compression settings after adding the code.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. Could you give us a screenshot of the map section on Safari? I will ask the team to check the thread. Please wait for their response.

    Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    Sorry about that. We only checked the stylesheets and external resources from the network tab, but forgot to inspect the markup. Unfortunately, we are still not sure why the rewrites are not working. Did you contact the WP Rocket support yet? They might be able to help us figure out the issue.

    Do you have a dev version of the js-interactive site? Have you tried disabling some of the plugins to rule out incompatibility? I will ask the rest of the team to check the thread. Please wait for their response.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Comments and comment box missing on pages #1150437

    Hi,


    @kjwaggz
    : The snippet above should fix the issue temporarily. Do you have a staging site where we can see the issue? Please create a new ticket and post the necessary details in the private field so that we can inspect the issue. We’ll close this thread for now.

    Best regards,
    Ismael

    Hi,

    Thank you for the clarification.

    What is the current order of the items in the portfolio grid? Is it by date? Please note that the order of the posts in the post navigation is not directly linked to how they are sort in the main gallery. The navigation, which is based on the get_adjacent_posts function, will contain the adjacent posts based on the date they are published.

    // https://developer.wordpress.org/reference/functions/get_adjacent_post/

    If you want to change the query or sort the adjacent posts by title instead of by date, use this filter in the functions.php file.

    function avf_get_prev_post_sort_mod( $sort ) {
    	return "ORDER BY p.post_title DESC LIMIT 1";
    }
    add_filter( 'get_previous_post_sort', 'avf_get_prev_post_sort_mod' );
    
    function avf_get_next_post_sort_mod( $sort ) {
    	return "ORDER BY p.post_title ASC LIMIT 1";
    }
    add_filter( 'get_next_post_sort', 'avf_get_next_post_sort_mod' );

    Best regards,
    Ismael

    in reply to: Create a slide (texts) in top bar #1150429

    Hi,

    Thank you for the update.

    Can you give us access to the site? We’ll try to implement the modification for you. Please add the login details in the private field, and make sure that the Appearance > Editor panel is accessible.

    Best regards,
    Ismael

    in reply to: Sidebar layout in a woocommerce single product page #1150415

    Hi,


    @HeeHA
    : The single product template is still the same, but you can use the advance layout builder to create your own template. We’ll close the thread for now. Please don’t hesitate to open a new one if you need anything else.

    Best regards,
    Ismael

    in reply to: 502 errors #1150413

    Hi,

    Thank you for following up.

    Yes, we will report the issue to the team and the modification above will probably be added in the next update. We don’t really think that these errors caused the gateway issue (502) because they are only warnings, not something critical that can cause a server to go down. You should contact your hosting provider and ask them to investigate the server issue further.

    Best regards,
    Ismael

    in reply to: Add Custom Labels to Avia Layout Builder Elements? #1150411

    Hi,

    Thank you for the info.

    We understand your concerns. The dev team acknowledged the requests and it might take a while, but they will try to implement it in the next versions.

    Best regards,
    Ismael

    Hi,

    Thank you for the clarification.

    You can use this css code to move the shipping info in its own line, separating it from the tax info.

    .wc-gzd-additional-info.shipping-costs-info.variation_modified {
    	display: block !important;
    }
    

    Best regards,
    Ismael

    in reply to: Auto reload page #1150404

    Hi,

    Thank you for the info.

    Yes, you’re correct. Temporarily, you can use this filter in the functions.php file to replace the double quotes in the reload string with single quotes.

    add_filter('avf_auto_reload_message', function($reload) {
    	return str_replace('"', '\'', $reload);
    }, 10, 1);
    

    The reload string is supposed to be inside the “data-avia-privacy-reload-tooltip” attribute, but it breaks out because of the double quotation marks. We’ll report the issue to the team.

    Best regards,
    Ismael

    in reply to: WP caught error in admin-ajax after upgrading to 4.6.2? #1150401

    Hi,

    We didn’t really see any errors produced in the class-framework-widgets.php or the register-dynamic-styles.php, which is the file that you initially reported. Are you using WP-CLI?

    Best regards,
    Ismael

Viewing 30 posts - 20,761 through 20,790 (of 67,479 total)