Forum Replies Created

Viewing 30 posts - 17,371 through 17,400 (of 67,463 total)
  • Author
    Posts
  • in reply to: FAQ Accordion – Tab did not open on Link anymore #1243898

    Hi,

    Sorry. We don’t have a static IP address. Could you maybe set the account so that it can be accessed by any IP address or from any country?

    Best regards,
    Ismael

    in reply to: Add subtitle to magazine and masonry #1243852

    Hey stupaul22,

    Thank you for the inquiry.

    The shortcode files or templates are located in the enfold/config-templatebuilder/aviashortcodes directory and in order to include anything in the Masonry element, we have to modify the av-helper-masonry.php file. The markup for the title and excerpt starts from line 485. You can include the additional content from the plugin around that block.

    $items .=	"<{$heading} class='av-masonry-entry-title entry-title {$css}' {$markup}>{$the_title}</{$heading}>";
    

    Best regards,
    Ismael

    in reply to: Home page with Layer Slider – reduce menu bar at the top #1243851

    Hi,

    Thank you for the inquiry.

    This css code should remove the top bar and adjust the height of the header as if the page has been scrolled down.

    .home #header_meta {
    	display: none !important;
    }
    
    .home .container.av-logo-container, .home .container.av-logo-container li, .home .container.av-logo-container li a, .home .container.av-logo-container .logo a, .home .container.av-logo-container .logo a img {
    	height: 58px !important;
    	max-height: 58px !important;
    	line-height: 58px !important;
    }
    
    .html_header_top.html_header_topbar_active.html_header_sticky.html_large .home #main {
    	padding-top: 90px;
    }

    Best regards,
    Ismael

    in reply to: Full width background image in menu bar #1243848

    Hi,

    Thank you the update. Please check our locations in the following page.

    // https://kriesi.at/about

    The size of the selected background for the header is only 300px. Please make sure to select the original size in the media library or uploader when setting the image as background.

    Best regards,
    Ismael

    in reply to: Back to top anchor link not working #1243847

    Hey genno,

    Thank you for the inquiry.

    The whole page is already visible above the fold and there’s nothing else below, so the “back to top” button doesn’t display because it’s not needed. Could you explain the issue a bit more, or maybe provide a screenshot so that we can understand it better?

    Best regards,
    Ismael

    in reply to: Tab Section Anchor Links #1243842

    Hey Ramon,

    Thank you for the inquiry.

    Did you try the script from this thread?

    // https://kriesi.at/support/topic/linking-to-an-open-tab/#post-1225309

    The URL format should contain the tabsort parameter with the ID of the tab as its value. The URL should look like something like this.

    http://site.com/sample-page/?tabsort=3
    

    The selector or tab section ID in this line might have to be adjusted as well.

    scrollTop: $("#av-tab-section-1").offset().top
    

    Best regards,
    Ismael

    Hey Biju,

    Sorry for the delay. Unfortunately, the builder is not compatible with the analysis tool, so it won’t be able to recognize content inside the builder, but this shouldn’t affect how search engines crawl the site in the frontend.

    Best regards,
    Ismael

    in reply to: Mobile view on tablet (Portrait) #1243835

    Hi,

    Do you want the grid layout to display in a single column on tablet portrait mode? We could use this css code to adjust the width of the columns on tablet view.

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

    Best regards,
    Ismael

    in reply to: Home page Mobile Menu not loading #1243832

    Hi,

    Thank you for the update. Is it working properly now? Please don’t hesitate to open a new thread if you need anything else.

    Best regards,
    Ismael

    in reply to: Woocommerce Checkout fields are visible two times #1243831

    Hi,

    Thank you for the info.

    We can use this css code to remove the duplicated field “Ondernemingsnummer”.

    #billing_wooccm11-description {
    	display: none;
    }
    

    Please add it in the Quick CSS field or the child theme’s style.css file, then toggle the Performance > File Compression settings.

    Best regards,
    Ismael

    Hey pramedia,

    Thank you for the inquiry.

    There are plugins that adds conditional options to the menu items which allow the users to control their visibility in the front end. You might be able to use one of these plugins to display or hide specific menu items based on certain conditions.

    // https://wordpress.org/plugins/if-menu/
    // https://wordpress.org/plugins/menu-items-visibility-control/

    Best regards,
    Ismael

    in reply to: Blurry Thumbnails #1243822

    Hi,

    You’re welcome! Glad we could help. In the gallery editor there is an option (Styling > Gallery Preview Image Size) where you could select the thumbnail size that the gallery should use or display in the front end.

    Best regards,
    Ismael

    in reply to: Yoast – Enfold – Highlight #1243821

    Hi,

    The analysis tool can only read content inside the main or default editor, and in most cases it doesn’t recognize content that were created using visual builders including the theme’s advance layout builder.

    // https://yoast.com/help/is-the-plugin-compatible-with-xyz-visual-page-builder/

    By default, our plugin does not analyze content that is outside of the main content box of a page or post. Some visual composer developers have modified their code to add compatibility with our plugins while others have not.

    Best regards,
    Ismael

    in reply to: Page and column headings not showing at all #1243819

    Hi,

    Did you figure out the issue? The heading inside each column is now displaying properly on our end. Please check the screenshot below.

    Screenshot: https://imgur.com/a/0PkFseZ

    Best regards,
    Ismael

    in reply to: Woocommerce checkout dropdown length #1243815

    Hi,

    Sorry for the delay. We could use this css code to add a scrollbar within the mini cart container when there are a lot of items in the cart.

    #top .widget_shopping_cart_content {
    	overflow-y: scroll !important;
    	max-height: 80vh !important;
    }

    Best regards,
    Ismael

    in reply to: Error message at the top of my frontend website #1243812

    Hey Chris,

    Thank you for the inquiry.

    Did you modify any of the theme files? The attribute controls should have a default value, or should be defined by default.

    To fix the issue temporarily, please edit the /enfold/framework/php/function-set-avia-frontend.php line 779..

    $controls = $attributes['controls'] == 1 ? 'controls' : '';
    

    .. and replace it with:

    $controls = isset($attributes['controls']) && $attributes['controls'] == 1 ? 'controls' : '';
    

    Best regards,
    Ismael

    in reply to: page as footer issue with woocommerce+wpml #1243140

    Hi,

    Thank you for the update.

    Could you also include access or an account for the file server (FTP)? Unfortunately, we are not yet sure why this is not working, or why the language switch notification pops up after adding the product to the cart. We’ll forward this thread to our channel and check the issue further.

    Best regards,
    Ismael

    Hi,

    Have you tried setting the Performance > Disabling of template builder elements settings to the second option (Load only use elements)? As the option title says, it will only load elements that actually exist in the page.

    Each shortcode registers its own script and stylesheets in their designated templates using the extra_asset function.

    Example in the config-templatebuilder\avia-shortcodes\buttonrow\buttonrow.php file.

    public function extra_assets()
            {
                //load css
    			wp_enqueue_style( 'avia-module-button', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/buttons/buttons.css', array( 'avia-layout' ), false );
                wp_enqueue_style( 'avia-module-buttonrow', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/buttonrow/buttonrow.css', array( 'avia-layout' ), false );
            }
    

    Best regards,
    Ismael

    in reply to: Auto replay an YouTube video. #1243129

    Hi,

    Thank you for the update.

    Have you tried appending the loop parameter to the Youtube URL?

    // https://developers.google.com/youtube/player_parameters#loop

    Set the parameter to 1.

    Example:

    https://www.youtube.com/v/VIDEO_ID?version=3&loop=1
    

    Best regards,
    Ismael

    in reply to: Contact Form HTML-field (label not showing) #1243126

    Hey ThorstenFB,

    Thank you for the inquiry.

    The html field is not supposed to display the label field by default. You can include the title in the description or content editor.

    Best regards,
    Ismael

    in reply to: Column link: Youtube lightbox not working #1243124

    Hey JBkvns,

    Thank you for the inquiry.

    Did you try this css code?

    .av-screen-reader-only.lightbox-added {
      position: absolute;
      left: auto;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      opacity: 0;
    }
    

    Please toggle the Performance > File Compressions settings after adding the css code.

    Best regards,
    Ismael

    in reply to: Trouble with PDF generator plugin #1243120

    Hey SGH-GROUP,

    Thank you for the inquiry.

    We tried to check the page above but it doesn’t seem to exist. Did you remove the page?

    Please note that we don’t provide support for third party plugins as stated on our support policy. You may need to contact the plugin developers for additional help.

    Best regards,
    Ismael

    in reply to: Layer Slider Sliders are not showing in String Translation #1243119

    Hey emilconsor,

    Thank you for the inquiry.

    Where can we see the issue? Please post the login details in the private field so that we can check the layer slider.

    Best regards,
    Ismael

    in reply to: How to make the lightbox size bigger? #1243116

    Hi,

    Thank you for the update.

    You might have to increase or adjust the size of the Large thumbnail in the Settings > Media panel. After the size adjustment, make sure to regenerate the thumbnails or upload the images again.

    // https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    in reply to: Woocommerce cart on mobile bigger #1243113

    Hi,

    We can wrap the previous css inside a css media query so that it will only affect the mobile view.

    @media only screen and (max-width: 767px) {
        #top .cart_dropdown_first .cart_dropdown_link {
            font-size: 30px;
        }
    }
    

    Best regards,
    Ismael

    in reply to: Search input field does not display #1243102

    Hi,

    Thank you for the update.

    For some reason, this inline css code which also affects the search button gets added too many times.

    .button {
    	background-color: #b0008d;
    	color: #ffffff;
    	border-color: #90006b !important;
    	width: 100% !important;
    }

    Did you create a script that adds this inline style?

    Best regards,
    Ismael

    in reply to: primary category not working #1243098

    Hey Biju,

    Thank you for the inquiry.

    The plugin will not really affect the markup of the breadcrumb, so it will just display the very first category of the post. You may need to use the avia_breadcrumbs_trail filter to adjust the breadcrumb trail or the links included in it.

    Best regards,
    Ismael

    in reply to: Images in Gallery not arranged correcty #1243093

    Hey cschmimo,

    Thank you for the inquiry.

    The site is on maintenance, so we couldn’t check the gallery page. Please provide a direct link to the page containing the gallery and post the login details in the private field so that we can access the site.

    Best regards,
    Ismael

    in reply to: Full width grid-row spacing issues #1243092

    Hi,

    Thank you for the update.

    Try to use this css code to remove the margin above the first column table.

    #top .flex_column_table.av-equal-height-column-flextable:not(:first-child) {
    	margin-top: 0;
    }

    Best regards,
    Ismael

    Hi,

    This css code should remove the padding around the toggle graphic and vertically align the title.

    .toggler {
    	max-height: 44px !important;
    	height: 44px !important;
    }
    
    .toggler::before {
        float: left;
    }
    
    .av-accordion-bg-multi .av_toggle_section .toggler {
    	padding: 0 !important;
    }

    Best regards,
    Ismael

Viewing 30 posts - 17,371 through 17,400 (of 67,463 total)