Forum Replies Created

Viewing 30 posts - 6,631 through 6,660 (of 67,463 total)
  • Author
    Posts
  • in reply to: WooCommerce issues #1426316

    Hi,

    Thank you for the update.

    To adjust the style of the elements in the cart dropdown widget, please add this css code.

    #top div ul.product_list_widget li a {
        display: block;
        font-weight: bold;
        font-size: 1.5em;
        line-height: 1.6em !important;
    }
    
    #top .dropdown_widget ul.product_list_widget li .quantity {
        color: #ffffff;
        font-size: 1em;
    }
    
    #top .dropdown_widget .total span.woocommerce-Price-currencySymbol, #top .dropdown_widget .total {
        color: #ffffff;
        font-size: 1em;
    }

    Best regards,
    Ismael

    in reply to: Something went wrong with importing demo pages #1426315

    Hi,

    Thank you for the update.

    You may need to reset the database and import the demo again from scratch. Please create a site backup or a restore point, then install the following plugin.

    // https://wordpress.org/plugins/wp-reset/

    Try to import the demo again after the reset.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    You can add this css code to remove the duplicate stars in the customer reviews section.

    .cr-all-reviews-shortcode .crstar-rating::before, .cr-reviews-grid .cr-summaryBox-wrap .crstar-rating::before, #reviews.cr-reviews-ajax-reviews #comments.cr-reviews-ajax-comments .cr-ajax-reviews-list .comment-text .crstar-rating::before, #reviews #comments .cr-summaryBox-wrap .crstar-rating::before {
        content: "";
        display: none !important;
    }

    Best regards,
    Ismael

    in reply to: Colors #1426313

    Hi,

    Thank you for the clarification.

    Please use this css code to adjust the style of the H1 element in the product category page.

    #top #wrap_all .term-description h1 {
        font-size: 2em;
        color: red;
    }

    Best regards,
    Ismael

    in reply to: Upgrade 4.7 #1426312

    Hi,

    Thank you for the update.

    If the error persists with the plugin, you may need to perform the update manually via FTP. Please download the latest version of the theme from your Themeforest account, and then follow the instructions in the provided documentation below.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    in reply to: Breaking Point #1426311

    Hi,

    Thank you for the update.

    We adjusted the css code a bit. Please try it again and temporarily disable the Enfold > Performance > File Compression settings.

    @media only screen and (max-width: 1600px) {
      .responsive #top .av-main-nav .menu-item {
        display: none;
      }
    
      .responsive #top .av-main-nav .menu-item-avia-special {
        display: block;
      }
    }
    

    Best regards,
    Ismael

    in reply to: All content disappears when I click publish #1426310

    Hey teotaban,

    Thank you for the inquiry.

    In the Contact page, the error occurs due to these HTML tags, which were either invalid or not properly closed.

    <b style="color: #ffffff;">Contacto y Localización<b ></b >
    

    If you wish to customize the style of the Special Heading element, you can do so in the Styling tab of the element. For more advanced styling options for heading elements, please go to the Enfold > Advanced Styling panel.

    Best regards,
    Ismael

    in reply to: Error on start #1426309

    Hi!

    Thank you for the update.

    We have discovered another thread displaying the same issue, but there is no explanation about the cause of the problem, and no solution was provided. This appears to be a WordPress core issue.

    // https://kriesi.at/support/topic/warning-on-wp-login-page-after-update-4-8/
    // https://core.trac.wordpress.org/ticket/46387#ticket
    // https://core.trac.wordpress.org/ticket/45256

    We recommend disabling the debug mode or setting the WP_DEBUG_DISPLAY to false temporarily in order to get rid of the warning.

    // https://wordpress.org/documentation/article/debugging-in-wordpress/#wp_debug_display

    Best regards,
    Ismael

    in reply to: Transparent Mobile Header & Logo #1426249

    Hi,

    Glad to know that the modification is working. Please let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Content slider #1426248

    Hi!

    Thank you for the inquiry.

    It seems to be an issue with the margins and padding settings of the Content Slider element. To temporarily fix the issue, please remove the margin or add this css code.

    .slide-entry-wrap {
        display: flex;
    }
    

    Regards,
    Ismael

    in reply to: Problem after updating theme #1426247

    Hi,

    Great! Glad to know that the issue has been resolved. Please do not hesitate to open another thread should you have more questions about theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: WooCommerce issues #1426245

    Hey bemodesign,

    Thank you for the inquiry.

    1.) Please use add this code to adjust the size of the table and product title.

    .is-large.wc-block-cart .wc-block-cart-items th span {
        font-size: 2em;
    }
    
    table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
        font-size: 2em;
    }
    

    2.) And include this code to hide the label while typing on the fields.

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

    3.) Add this code in the functions.php file to remove the additional informations tab.

    /** Remove product data tabs */
    
    add_filter( 'woocommerce_product_tabs', 'my_remove_product_tabs', 98 );
    
    function my_remove_product_tabs( $tabs ) {
      unset( $tabs['additional_information'] ); // To remove the additional information tab
      return $tabs;
    }

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect. Once you have made the required modifications, you can re-enable the file compression settings to optimize the performance of your website.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The function avia_which_archive, responsible for rendering the search count, is located in the enfold/framework/php/function-set-avia-frontend.php file. You can either override this function directly or utilize the avf_which_archive_output filter to modify the breadcrumb title on the search results page.

    Example:

    add_filter('avf_which_archive_output','avf_which_archive_output_mod', 10, 3);
    function avf_which_archive_output_mod($output)
    {
    	if(is_search()){
                $output = __( 'Search results for:', 'avia_framework') . ' ' . esc_attr( get_search_query() );
            } 
    	return $output;
    }
    

    Best regards,
    Ismael

    in reply to: Eingabemasken "Lightboxes" etc. #1426238

    Hey Roland Gienger,

    Thank you for your interests in the theme.

    1.) Replacing Thrive with Enfold should be possible. Enfold is a versatile WordPress theme; although it lacks a native opt-in form feature, there are multiple ways to implement one, similar to Thrive Leads. Enfold is also compatible with Mailchimp, one of the most popular platforms for email marketing services. It is advisable to review the Enfold documentation or seek guidance from a third-party developer for specific information about adding features and external services to the theme. The desired functionality should be achievable, but it will definitely require some adjustments and modifications to the theme. If you require more comprehensive assistance, you can find freelancers who specialize in theme customization by visiting our customization page.

    2.) Aside from the documentation, there are various resources for Enfold tutorials, including potentially on platforms like YouTube. You can search for “Enfold WordPress Tutorial” or “Ferdy Korpershoek enfold theme” to find video guides and courses that can help you better understand and use Enfold. We recommend visiting Ferdy Korpershoek channel. Please check the link below.

    // https://www.youtube.com/watch?v=tpMof6O1QNw
    // https://www.youtube.com/@ferdykorpershoek

    If you have any other questions or require further assistance, please feel free to let us know.

    Best regards,
    Ismael

    in reply to: Eigenes Modul mit ACF Felder #1426237

    Hi,

    Unfortunately, the customization you’re looking for is not currently available. Achieving the changes you described would take a lot of time and modifications to the theme. Unfortunately, our support doesn’t cover this level of customization. However, if it’s really essential for you, you can hire a freelancer to help you. You can find freelancers for theme customization on our customization page.

    If you have more questions or need further help, feel free to ask.

    Best regards,
    Ismael

    in reply to: Enfold Shop page not available #1426236

    Hi,

    Thank you for the update.

    Can you tell me where the setting is so I learn or remember what it is that I guess I had turned off.

    Please edit one of the pages and open the Settings panel. The Visibility setting is located in the Page > Summary box, which is the very first metabox in the panel. For more info, please check the documentation below.

    // https://wordpress.com/support/post-and-page-visibility/#control-how-a-page-or-post-is-viewed

    Best regards,
    Ismael

    in reply to: How to set up Shop page… #1426235

    Hey gb,

    Thank you for the inquiry.

    Yes, you can add filters to the sidebar in the Appearance > Widgets panel. Look for the Filter Product by Attributes widget and add it to the Shop Overview Page widget area. You can add the widget multiple times based on the number of attributes you want to display. There are also widgets to filter the products by price and rating.

    Best regards,
    Ismael

    in reply to: Problem after updating theme #1426234

    Hi,

    Thank you for the inquiry.

    We may need to access the site in order to properly check the issue. Please provide the login details in the private field. In the meantime, please try to disable the cache and compression plugin, then deactivate the Enfold > Performance > File Compression settings.

    Best regards,
    Ismael

    in reply to: Widget Area sidebar pages creating large blank space #1426233

    Hey tlchase,

    Thank you for the inquiry.

    This is the expected layout because the column containing the widget area is rendered before the columns below it, causing them to be pushed beneath as far as its own height. The 1/4 columns containing the images won’t automatically nest or rest below the first 3/4 column. If you wish to position the gallery or images right below the text, you need to place them inside the 3/4 column. Unfortunately, nesting columns is not possible in the builder.

    Have you tried using the Gallery element? Instead of using columns to separate the images, you can add a Gallery element below the text within the 3/4 column.

    Best regards,
    Ismael

    in reply to: Colors #1426232

    Hi,

    Thank you for the update.

    Then the only thing that isn’t solved is the color of the headings for the product categories :)

    We may need to inspect one of the product category pages in order to provide the appropriate solution. Please provide the link in the private field.

    Best regards,
    Ismael

    Hey navindesigns,

    Thank you for the inquiry.

    This is possible before but Youtube removed or disabled the modestbranding and showinfo parameters, so it’s no longer possible to remove the Youtube logo and account info.

    // https://developers.google.com/youtube/player_parameters#release_notes_08_15_2023
    // https://developers.google.com/youtube/player_parameters#release_notes_08_23_2018

    You may need to host the site yourself or try another video platform like Vimeo.

    Best regards,
    Ismael

    in reply to: Error on start #1426230

    Hi,

    Thank you for the update.

    We didn’t find any errors when we checked the site again. Did you fix the issue?

    Best regards,
    Ismael

    in reply to: Portfolio area behaving strangely #1426229

    Hey Dandelion222,

    Thank you for the inquiry.

    The other items (municipalities, houses of worship) are on the second page. Please note that one limitation of the sorting option is that it can only filter items present on the current page. A workaround is to disable pagination and display all items on a single page.

    Best regards,
    Ismael

    in reply to: clean up media library #1426228

    Hi,

    Alright! Please feel free to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Plugin errors #1426117

    Hey Anna Nord-Gold,

    Thank you for the inquiry.

    What is the current version of the theme? You may need to manually update the theme to the latest version 5.6.8 in order to fix these errors. Please check the documentation below for more info.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    in reply to: Blog Author Not Changing #1426116

    Hi,

    Great! Glad to know that you managed to come up with a custom solution. 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: Enfold Shop page not available #1426115

    Hey gb,

    Thank you for the inquiry.

    The visibility of the Shop page was set to Private, which is why it was not available in the Appearance > Menus panel. We set the visibility to Public before adding it to the Primary Menu.

    Best regards,
    Ismael

    in reply to: Database replace #1426114

    Hey strumpumpel,

    Thank you for the inquiry.

    What are the errors that occur after doing the query? Please note that the builder elements are also saved in a custom field called _aviaLayoutBuilderCleanData, which is also attached to the pages. You will have to update these entries as well. We recommend using a search and replace plugin instead of manually doing the query. Select the wp_postmeta table before running search/replace, and make sure that the “dry run” option is off.

    Best regards,
    Ismael

    Hi,

    Did you change the default language? The issue doesn’t occur even when we translate the page to a different language. We checked the site on Chrome MacOS. Please refer to the screenshot below.

    Screenshot: https://1drv.ms/i/s!AjjTfXSRbKTvgrdm7TCMYxN07Rm9eQ?e=u1n208

    Best regards,
    Ismael

    in reply to: Problem saving changes #1426112

    Hi,

    Thank you for the info.

    The changes to the builder elements don’t reflect immediately because the post css file doesn’t get updated or regenerated after updating the page. To address the issue temporarily, we added this code in the functions.php file.

    function avf_post_css_create_file_mod( $create )
    {
    	return false;
    }
    
    add_filter( 'avf_post_css_create_file', 'avf_post_css_create_file_mod', 10, 1 );
    

    The filter will disable the post css files and embed the custom element styles as inline css. Just fyi, we duplicated the Special Heading element for testing.

    Best regards,
    Ismael

Viewing 30 posts - 6,631 through 6,660 (of 67,463 total)