Forum Replies Created

Viewing 30 posts - 11,911 through 11,940 (of 67,434 total)
  • Author
    Posts
  • in reply to: remove lightboxes from article images #1338125

    Hi,

    Glad to know that you managed to make it work. Please feel free to open another thread if you need anything else. We will close this thread for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: old items color problem #1338124

    Hi,

    Thank you for the screenshots.

    You can use this css code to adjust the font style of the wp captions.

    .wp-caption-text {
    	font-style: normal;
    }
    

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

    in reply to: Problem bei Portfolio-Einträgen #1338123

    Hi,

    Thank you for the update.

    How many portfolio items are there in total? Looks like there are only two portfolio items currently, which is why only one arrow display in each item. Please note that the items that will display in the navigation are those that are adjacent to the current post based on the dates that the posts were published. You can check the order of the porfolio items in the Dashboard > Portfolio Items panel.

    Best regards,
    Ismael

    in reply to: Issues with Z-index #1338122

    Hey amyteslin,

    Thank you for the inquiry.

    You should adjust the z-index or the stack order of the color section containing the donate the button, not the button itself. You may need to apply a unique ID or class name to the section in order to change its style directly without affecting the other sections.

    Example:

    #section-with-donate {
       position: relative;
       z-index: 999;
    }

    Best regards,
    Ismael

    Hey!

    We can use the same admin account that you are currently using. Please provide the info in the private field. If you want to create another admin account, please use the email in the private field. But please note that we do not have access to that email address, so make sure to generate the username and password.

    Did you add some modifications in the functions.php file to move the location of the sidebar?

    Regards,
    Ismael

    in reply to: shop page do not visible #1338113

    Hey margiela,

    Thank you for the inquiry.

    The shop page seems to be displaying correctly on our end. We provided a screenshot in the private field. Are you still having the same problem on your end?

    Best regards,
    Ismael

    Hi,

    Glad to know that the script works. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Masonry excerpts when deleted show text #1338110

    Hi,

    The two masonry.php are put in place, so the load more button is working again.

    We adjusted the code in the functions.php file a bit. It is now displaying the excerpt and not the full content of the masonry item. And only the title displays on items without excerpts.

    This is the updated filter.

    add_filter("avf_masonry_entry_content", function($content, $entry, $atts) {
        $excerpt = get_the_excerpt( $entry["ID"] );
        return $excerpt;
    }, 10, 3);
    

    Best regards,
    Ismael

    in reply to: load more button doesn´t work after update #1338106

    Hi,

    To fix the issue with the load more button, please replace the masonry_entries.php and the masonry_gallery.php with the files below. The files are located in their respective folders in the enfold > config-templatebuilder > aviashortcodes directory.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Masonry excerpts when deleted show text #1338030

    Hi,

    Thank you for the update.

    1.) Do you get the same error when you validate the token in the Enfold > Theme Options > Theme Update panel?

    2.) The shortcode files are located in the config-templatebuilder > aviashortcodes folder. Look for the masonry_entries and the masonry_gallery folders.

    Best regards,
    Ismael

    Hey Insyrge,

    Thank you for the inquiry.

    The font icon upload is not working properly because the PHP ZipArchive Extension is disabled in your server. Please ask your hosting provider to enable the extension.

    Best regards,
    Ismael

    in reply to: ContentUrl or url missing from rich snippets #1338024

    Hi,

    Thank you for the update.

    We will forward the modification to our channel for further consideration. For now, you will have to modify the shortcode file directly, or override it in the child theme. For more info on how to override a shortcode or builder elements, please check this documentation.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    Best regards,
    Ismael

    in reply to: Impossible to edit/add/change a page. #1338019

    Hi,

    Yes, you can now disable the debug mode. Let us know in a different thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: gallery drag and drop sort #1338018

    Hi,

    It will be added in the next update. Temporarily, you will have to add the css override to the site when you need to sort the gallery items.

    Best regards,
    Ismael

    in reply to: Woocomerce Wholesale tabel problem #1338016

    Hi,

    Thank you for the info.

    There are 3 shop table plugin installed in the site. Which plugin are you actually using ?

    The issue seems to be random, the button in the shop table automatically redirects to checkout page and the added products only display when the page is refreshed. Please contact the plugin author for additional assistance.

    Best regards,
    Ismael

    in reply to: 4 column layout issues on ipad #1338011

    Hi,

    No problem. Glad we could be of help. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Blurry logo #1338010

    Hi,

    The latest version of the theme is 4.8.9. You might have to update the theme manually this time. Please check the documentation below for more info about the manual update.

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

    Best regards,
    Ismael

    in reply to: Team Member Shortcode does not work anymore #1338009

    Hi,

    Where can I see the mandatory attributes for your shortcodes? Can I omit empty attributes? I generated the av_team_member with Enfold 4.8.9 and I saw a few new attributes, do I have to add them to my generator code?

    There are no mandatory attributes in a shortcode. You can use the av_team_member shortcode without any attributes and it will still work but it will not render anything because there’s no data.

    What is with the attribute av_uid?

    The builder by default applies a unique id to each elements shortcodes in a page or post, but the element will still render with or without the ID. The ID is generated dynamically using Javascript and is based on the current date, which is then converted to a string and prepended with “av-“.

    'av-' + ( new Date().getTime()).toString(36);
    

    Best regards,
    Ismael

    in reply to: Advanded Layout Editor for The Events Calendar #1338007

    Hi,

    As @Yigit observed, the display property of the avia-builder container is set to “none” when the other user is active. Adding the snippet that he provided above should override the inline css.

    add_action('admin_head', 'ava_custom_admin_css_admin');
    function ava_custom_admin_css_admin() {
      echo '<style>
        #avia_builder {
          display: block !important;
        }
      </style>';
    }
    

    Best regards,
    Ismael

    in reply to: ContentUrl or url missing from rich snippets #1338005

    Hey saschapi,

    Thank you for the inquiry.

    We can manually add the contentURL property to the avia-gallery container, but we have to directly edit the enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.php. Around line 697, look for this code.

    $output .= "<div {$meta['custom_el_id']} class='{$container_class} avia-gallery-" . self::$gallery . "' {$markup_gallery}>";
    

    Below, add the meta element with the contentURL property and the post title as content value.

    			
    $title = get_the_title(get_the_ID());
    $output .=		"<meta itemprop='contentURL' content='{$title}'>{$title}</meta>";
    

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Yes I have made a widget called “Shop sidemenu” and added it on the product page

    What do you mean by “product page”? The widget has to be added in the Single Product Page widget area. Please check the screenshot in the private field. Also, please make sure that the sidebar in the Enfold > Sidebar Settings > Sidebar on Single Post Entries settings is enabled.

    Can we access the dashboard? Please post the login details in the private field so that we can check the site settings.

    Best regards,
    Ismael

    in reply to: gallery drag and drop sort #1337989

    Hi,

    Thank you for your patience.

    Adding this code in the functions.php file should fix the gallery sorting.

    function ava_custom_css_admin_mod() {
        echo '<style>
          .wp-core-ui .attachments:after {
              visibility: hidden;
              display: block;
              font-size: 0;
              content: " ";
              clear: both;
              height: 0;
          }
        </style>';
     }
     add_action('admin_head', 'ava_custom_css_admin_mod');
    

    Best regards,
    Ismael

    in reply to: Woocomerce Wholesale tabel problem #1337988

    Hi,

    Odd. It is not working now. When we add a product using the table, it redirects to an empty cart page and the cart icon doesn’t pop out like it used an to hour earlier. Did you adjust the settings just recently?

    Best regards,
    Ismael

    in reply to: Remove Extra White Space On Mobile #1337987

    Hey navindesigns,

    Thank you for the inquiry.

    The white space is the default 20px margin of the columns on mobile view. You can override it with this css code.

    @media only screen and (max-width: 767px) {
        .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
           margin-bottom: 0;
       }
    }
    

    You do not have to create the same css media query another already exists. Just move the css rule inside the existing css media query.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The above filter is supposed to disable the modification that the theme applies to the ampersand character and the css modifies the default style of the “special_amp” element. Please keep the css modification for now.

    If you want to directly apply the default font to the ampersand, please use this css code.

    .responsive #top .special_amp {
        font-size: 15px;
        font-weight: 400;
        font-family: 'rubik',Helvetica,Arial,sans-serif;
        font-style: normal;
    }
    

    Best regards,
    Ismael

    Hey Angelo,

    Thank you for the inquiry.

    You can use the following script in the functions.php file to insert the title below the horizontal gallery images. You may need to modify the style or css of the av-horizontal-gallery-img-title a bit.

    function ava_custom_script() { ?>
        <script>
            (function($) {
               $(".av-horizontal-gallery-img").each(function() {
                    var title = $(this).attr("title");
                    $("<span class='av-horizontal-gallery-img-title'>" + title + "</span>").insertAfter(this);
               });
            })(jQuery);
    	</script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_script');
    

    Best regards,
    Ismael

    in reply to: Licentie #1337984

    Hey Gerrit Gerrit Rekers,

    Thank you for the inquiry.

    Looks like you are now able to access the forum using your new account or license key. Please continue on this thread.

    // https://kriesi.at/support/topic/woocomerce-wholesale-tabel-problem/#post-1337976

    Best regards,
    Ismael

    in reply to: Masonry Blog Meta Elements #1337978

    Hey jond33,

    Thank you for the inquiry.

    The category info is not included in the masonry template by default but you can still add them using “avf_masonry_entry_content” filter. Please try this code in the functions.php file.

    add_filter("avf_masonry_entry_content", function($content, $entry, $config) {
        $categories = get_the_category($entry["ID"]);
        $separator = ' ';
        $output = '';
        if ( ! empty( $categories ) ) {
            $output .= "<ul>";
            foreach( $categories as $category ) {
                $output .= '<li>' . esc_html( $category->name ) . '</li>';
            }
            $output .= "</ul>";
            $content = $content . $output;
        }
        return $content;
    }, 10, 3);
    

    Please note that the filter above will only on the default post type or post types that supports categories.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    Did you add any widgets in the Appearance > Widgets > Single Product Pages widget area? Only widgets in this area will display in the product sidebar. Also, please note that the sidebar area in the product page is located below the product image by default.

    Best regards,
    Ismael

    in reply to: Woocomerce Wholesale tabel problem #1337976

    Hey rekers,

    Thank you for the inquiry.

    How can we reproduce the issue? The wholesale table seems to be working correctly on our end. The products in the table were automatically added to the cart after we clicked the “order” button. Please check the screenshot in the private field.

    Best regards,
    Ismael

Viewing 30 posts - 11,911 through 11,940 (of 67,434 total)