Forum Replies Created

Viewing 30 posts - 6,001 through 6,030 (of 67,463 total)
  • Author
    Posts
  • in reply to: Formatting .Main-Title.Entry-Title #1434151

    Hi,

    Great! Glad to know that you managed to resolve the issue. Please feel free to open another thread should you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Update to 5.6.10 breaks all my widgets in footer #1434148

    Hey xuamox,

    Thank you for the inquiry.

    Did you modify any template files (header.php, footer.php etc) in the child theme? Please make sure to update the template files, then try to toggle or temporarily disable the Enfold > Performance > File Compression.

    Best regards,
    Ismael

    in reply to: Video Element not working for youtube videos #1434147

    Hi,

    Thank you for the update.

    The videos started working again after we deactivated the plugin “BIALTY – Bulk Image Alt Text (Alt tag, Alt Attribute) with Yoast SEO + WooCommerce”. Please contact the plugin developers for further information about the issue.

    Best regards,
    Ismael

    in reply to: reverse order latest portfolio widget #1434146

    Hi,

    You’re welcome! Please don’t hesitate to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: google map api not working #1434144

    Hi,

    Thank you for the update.

    Would you mind providing the API key in the private field so that we can test and validate it on your installation? We attempted to extract it from the screenshot, but when we tried to validate the API key, we encountered the following error, indicating that the API key is invalid.

    // https://developers.google.com/maps/documentation/javascript/error-messages#invalid-key-map-error

    Please try to review the following documentation and generate the API key again.

    // https://kriesi.at/documentation/enfold/google-map/#how-to-register-a-google-maps-api-key

    Best regards,
    Ismael

    in reply to: Header Transparency #1434142

    Hi,

    Thank you for the update.

    You can adjust the menu color in the Enfold > Transparency Logo Options section. Look for the Transparency Menu Color and Transparency Menu Color On Hover fields.

    Best regards,
    Ismael

    in reply to: Comment Moderation Issue #1434141

    Hi,

    Thank you for the info.

    The comment count is visible in the Comments panel, but no items are displayed. We tried to temporarily disable the plugins on the development site, but the issue persists. On further checking, we noticed that the site is still using an older version of the theme, 5.0.1. This outdated version may be contributing to the comment issue. Please try to upgrade the theme to version 5.6.10 and let us know us whether the upgrade resolves the issue.

    Best regards,
    Ismael

    in reply to: ENFOLD – Team Member Pga Sidebar #1434139

    Hey Francesco,

    Thank you for the inquiry.

    You can edit the content of the sidebar in the Appearance > Widgets panel. Add widgets to the Sidebar Pages or Displayed Everywhere widget areas to disable the dummy widgets.

    Best regards,
    Ismael

    in reply to: Overlapping Color Sections #1434138

    Hey codecanyon4148,

    Thank you for the inquiry.

    You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

    in reply to: Change layout of category archive to masonry style #1434137

    Hi,

    Thank you for the update.

    1.) We added this filter in the functions.php file to adjust the query in the archive pages.

    add_filter( 'avia_masonry_entries_query', 'avia_masonry_query_func', 10, 2);
    function avia_masonry_query_func( $query, $params )
    {
        if ( is_tax() ) {
            global $wp_query;
            $term = $wp_query->get_queried_object();
            $tax = $term->taxonomy;
    
            $query['tax_query'] = array( 	array( 	'taxonomy' 	=> $tax,
            								'field' 	=> 'id',
            								'terms' 	=> $term->term_id,
            								'operator' 	=> 'IN'));
        }
        return $query;
    }

    2.) Please look for the “sort” parameter and set its value to “no”

    'sort' => 'yes',
    

    3.) You can also adjust the “size” parameter to change the style of the masonry element.

    'size' => 'fixed masonry',
    

    Available values are “flex”, “fixed”, “fixed masonry” and “fixed manually”.

    Best regards,
    Ismael

    in reply to: WordPress 6.4 & 6.4.1 – Unstable Environment #1434135

    Hi,

    Thank you for the info.

    We can’t access the server using the login info above. Please check the info carefully or provide another S/FTP account. Did you create a backup or restore point?

    Best regards,
    Ismael

    in reply to: Old builder content not showing #1434134

    Hey hanne,

    Thank you for the inquiry.

    What is the name of the previous builder? Please note that you cannot directly convert the existing content into elements in the Advanced Layout Builder. You will need to reconstruct the content from scratch. If there is text in the previous builder, you can copy it and paste it into a Text or Code Block element within the builder. The rest of the content might have to be added and reconfigured manually in the Advance Layout Builder.

    Best regards,
    Ismael

    in reply to: Link with lightbox only content option #1434133

    Hi,

    Thank you for the update.

    You can add the following css code to adjust the space above the post content. However, please note that this modification will also be applied to the actual post template, not just the lightbox content.

    html .postid-2243 #main {
        padding-top: 0 !important;
    }
    
    html .postid-2243 #main .container .content {
        padding-top: 10px;
    }

    Best regards,
    Ismael

    in reply to: 2Timeline – 2 Different views #1434054

    Hi,

    Great! Let us know if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Mobile Radio buttons on cart #1434053

    Hi,

    Great! Glad to know that it worked. Please feel free to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Advanced Custom Fields broken since update #1434047

    Hey Blaise,

    Thank you for the inquiry.

    There have been a few changes in the post meta info and the blog post elements, which might have caused the layout to change. To fix this, you can add the following css code to adjust the layout of the post meta info.

    #top .av-blog-meta-category-disabled .minor-meta.blog-categories, #top .av-blog-meta-category-disabled .text-sep-cat, #top .av-blog-meta-category-disabled .minor-meta.blog-categories, #top .av-blog-meta-category-disabled .text-sep-source {
      display: none;
    }
    
    #top .fullsize .template-blog .post-meta-infos .author {
      display: block;
      font-weight: 600;
    }

    Best regards,
    Ismael

    in reply to: buttons don`t work on the cell phone #1434046

    Hey Diana,

    Thank you for the inquiry.

    Please add this css code to decrease the padding of the slider caption container to create more space and adjust the style of the slider buttons on mobile view.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
    
      #top #wrap_all .av-kvs50u-67fae942c84a74078cfcead2fbe75fa9 .avia-slideshow-button {
        width: 100%;
        margin-top: 10px;
      }
    
      #top #wrap_all .av-kvs50u-67fae942c84a74078cfcead2fbe75fa9__0 .container.caption_container .slideshow_align_caption {
        padding-top: 50px !important;
        vertical-align: top;
      }
    }

    Best regards,
    Ismael

    in reply to: Change layout of category archive to masonry style #1434045

    Hey Vera,

    Thank you for opening a new thread and sorry for the confusion.

    For the portfolio entries, you have to modify the taxonomy-portfolio_entries.php and replace the following code with the modification that we provided in the previous thread.

    $grid = new avia_post_grid(
    				array(
    					'linking'			=> '',
    					'columns'			=> '3',
    					'contents'			=> 'title',
    					'sort'				=> 'no',
    					'paginate'			=> 'yes',
    					'set_breadcrumb'	=> false,
    				));
    
    $grid->use_global_query();
    echo $grid->html( '' );
    

    Or replace the content of the file with the following code: https://pastebin.com/Arw15X5z

    Best regards,
    Ismael

    in reply to: Cart text overlaps entry in change address form #1434044

    Hi,

    Thank you for the screenshot.

    Is the issue only visible on mobile view? If so, then you can try this css code to hide the label when the input field is active.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .wc-block-components-form .wc-block-components-text-input.is-active label,
      .wc-block-components-text-input.is-active label {
        opacity: 0;
      }
    }
    

    If the issue is also happening on desktop view, remove the css media query.

      .wc-block-components-form .wc-block-components-text-input.is-active label,
      .wc-block-components-text-input.is-active label {
        opacity: 0;
      }
    

    Best regards,
    Ismael

    in reply to: Mobile Radio buttons on cart #1434043

    Hey designmek,

    Thank you for the inquiry.

    Please add this css code to adjust the space between the radio buttons and the input label.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .wp-block-woocommerce-cart-order-summary-shipping-block .wc-block-components-radio-control .wc-block-components-radio-control__input {
        margin-left: -10px;
      }
    }
    

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.

    Best regards,
    Ismael

    in reply to: Header Transparency #1434042

    Hey dreamreader,

    Thank you for the inquiry.

    Did you set the Header visibility and transparency settings to Transparent & Glassy Header? If you did, then you can use this css code to adjust the transparency of the header background.

    #top .av_header_glassy.av_header_transparency .header_bg {
        opacity: 0.5;
    }

    Default opacity value is 0.1.

    Best regards,
    Ismael

    in reply to: Video Element not working for youtube videos #1434041

    Hi,

    Thank you for the update.

    We adjusted the URL format for the video element, but it still doesn’t seem to be working. Could you take a quick look and see if embedding is turned off for the video? That might be causing the issue.

    // https://support.google.com/youtube/answer/171780?hl=en#zippy=%2Cturn-on-privacy-enhanced-mode%2Cturn-off-embedding-for-your-videos

    Best regards,
    Ismael

    in reply to: Logo don’t show in mobile screen #1434040

    Hey bcndisseny,

    Thank you for the inquiry.

    The logo looks fine on our end when we checked out the site. We posted a screenshot in the private field. Could you provide a quick screenshot of what you’re seeing?

    Best regards,
    Ismael

    in reply to: WordPress 6.4 & 6.4.1 – Unstable Environment #1434039

    Hi,

    Thank you for the update.

    We were able to reproduce the issue but we are not yet sure what is causing it. Please clone the site to a staging or development environment, switch the installation to debug mode and enable the error logs. Or post the S/FTP details in the private field so that we can debug the issue further.

    // https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/#example-wp-config-php-for-debugging
    // https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/#wp_debug_log

    Best regards,
    Ismael

    in reply to: Blocks are cut at 50% in mobile screen #1434038

    Hey bcndisseny,

    Thank you for the inquiry.

    You can add this css code to adjust the default padding of the cell or column and create more space for the contact form on mobile view.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all .flex_cell.av-c9mynt-bafa8a24bf3e6e0c489a0aa61dc412d0 {
        padding: 20px !important;
      }
    }
    

    Best regards,
    Ismael

    Hey bcndisseny,

    Thank you for the inquiry.

    This seems to be related to the waypoint script, which detects if an element is visible in the viewport and triggers the animation. To work around this issue, you could consider adding more content below the contact form section or enabling the footer widgets. This should create additional scrolling space below the contact form, which may help trigger the waypoint script properly.

    Best regards,
    Ismael

    in reply to: Hi, i need some help for the sorting function #1433786

    Hi,

    Thank you for the update.

    but how can i turn off the overlay on the sorted images which shows at mouse-over the image title?

    Are you asking about the caption overlay? You can disable it by adjusting the settings under Content > Captions > Element Title and Excerpt. Set it to the last option (Display Neither).”

    Best regards,
    Ismael

    in reply to: Empty first line in my html page #1433785

    Hi,

    Great! Glad to know that the issue has been resolved. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Custom Field “Hide on sigle entry”, and Gravity Forms #1433784

    Hi,

    Have you tried selecting Add New Custom Field Value Name from the dropdown (https://img.savvyify.com/image/9vVsp)? Then place true or false in the Value field.

    Best regards,
    Ismael

    in reply to: Custom Field “Hide on sigle entry”, and Gravity Forms #1433783

    Hi,

    But I need to give the possibility to choose to show or hide the Featured image of the post also to the user who creates a new Post via Gravity Forms.

    We are not entirely clear on how that works. Could you please explain further?

    Did you replace the placeholder “your_post_type” with the actual name of the post type?

    add_filter('avf_display_featured_image_posttypes', function($post_types) {
       $post_types[] = 'your_post_type';
       return $post_types;
    }, 10, 1);
    

    then I add the custom field “_avia_hide_featured_image” and edit Value “true”, but the response I get is “Please provide a custom field value.”

    Could you please provide a screenshot or a short clip of the error, or the input field where you entered the custom field?

    Best regards,
    Ismael

Viewing 30 posts - 6,001 through 6,030 (of 67,463 total)