Forum Replies Created

Viewing 30 posts - 12,061 through 12,090 (of 67,591 total)
  • Author
    Posts
  • in reply to: Advanded Layout Editor for The Events Calendar #1338139

    Hi,

    WHY this happens…

    We are not really sure why this is happening. It works fine on our end, so it might be due to a plugin or because of a custom modification. Adding the snippet above or overriding the inline styling should fix the issue.

    Best regards,
    Ismael

    in reply to: Post CSS overriden by theme CSS #1338137

    Hey mgyura,

    Thank you for the inquiry.

    Where can we see the issue? Please post the page URL in the private field so that we can check the elements. For the meantime, try to disable the Enfold > Performance > File Compression settings and add this code in the functions.php file to temporarily disable the postcss feature.

    /**
     * Filter to skip css file generation.
     * You can add logic to skip for certain pages/posts only.
     * 
     * @since 4.8.6.1
     * @param boolean $create
     * @return boolean					true | false or anything else to skip generation of css file
     */
    function custom_avf_post_css_create_file( $create )
    {
    	return false;
    }
    
    add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );

    We will check this thread again afterwards.

    Best regards,
    Ismael

    in reply to: Sliders/Galeries duplicated without doing anything #1338135

    Hi,

    But what we really do not understand is, WHY the page was broken without doing anything…

    As we have said earlier, we have no idea why the sliders in that particular page were duplicated but creating another and applying the template works fine. Is this happening on a lot of pages?

    This is our previous response.

    Unfortunately, we are not sure why the sliders don’t work in the original page, but as you can see both sliders work perfectly fine in the new page, so you can just delete and trash the old page and rename the other.

    Best regards,
    Ismael

    in reply to: Wrong registration email #1338133

    Hey Raquel Ferreira,

    Thank you for the inquiry.

    We updated the email address in your account. Please make sure to purge the cache to see the changes.

    Best regards,
    Ismael

    in reply to: I cannot move a picture #1338132

    Hey Kurt,

    Thank you for the inquiry.

    This is actually a known issue on the latest version of the theme. To fix the gallery sorting, please add this code in the functions.php file temporarily .

    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');
    

    Related thread: https://kriesi.at/support/topic/gallery-drag-and-drop-sort/#post-1337989

    Best regards,
    Ismael

    in reply to: font list for enfold #1338129

    Hi,

    OR… as requested many times: add an easier font-preview within Enfold. This would save us sooo much time to select and try out fonts…


    @sitesme
    : There is actually a styling preview in the Enfold > General Styling panel, which displays the current color presets and the selected fonts. Please check the screenshot below.

    Screenshot: https://imgur.com/JleQls7

    Best regards,
    Ismael

    in reply to: Masonry Blog Meta Elements #1338127

    Hi,

    Thank you for the update.

    Where do you want to place the categories? You can reverse the position of the $content and the $output in this line to place the categories before the excerpt.

     $content = $content . $output;
    

    Best regards,
    Ismael

    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

Viewing 30 posts - 12,061 through 12,090 (of 67,591 total)