Forum Replies Created

Viewing 30 posts - 13,981 through 14,010 (of 66,839 total)
  • Author
    Posts
  • in reply to: Social Media Icons – Alignment #1303711

    Hey designyvr,

    Thank you for the inquiry.

    This css code should align the social icons.

    .social-media .av_font_icon {
        display: inline-block;
        float: none;
        width: auto;
    }

    We removed the link selector from the previous css code.

    Best regards,
    Ismael

    in reply to: Mobile issues for Advanced Slider #1303710

    Hi,

    Thank you for the update.

    In the layer settings, there is an option where you can define the minimum font size. The option is located in the layers’ Styles > Text | Font Style panel. For images or non-text layers, you can use the Custom CSS field in the same Styles panel to define a minimum height or width for the layer.

    Best regards,
    Ismael

    Hi,

    No worries. We have found a few invalid css code in the Quick CSS field, and so we corrected those and formatted the rest of the code. We also adjusted the previous css code a bit so that it actually targets the very first layer slider in the home page. This seems to be working correctly now. Please do not forget to purge the cache before testing the page.

    This is the updated css.

     .home #layer_slider_1.avia-layerslider .ls-wp-container,
      .home #layer_slider_1.avia-layerslider .ls-wp-container .ls-inner {
        height: 100vh !important;
      }
    

    And we also deactivated the Performance > File Compression settings temporarily.

    Best regards,
    Ismael

    Hi,

    You can override the avia_google_maps_api.js file by dequeueing it using its handle avia_google_maps_api_script.

    function ava_admin_enqueue_scripts() {
        wp_deregister_script( 'avia_google_maps_api_script' );
        wp_dequeue_script( 'avia_google_maps_api_script' );
    }
    add_action( 'admin_enqueue_scripts', 'ava_admin_enqueue_scripts', 10 );
    

    Yon can then register the modified script back using the new path in the child theme directory.

    // https://developer.wordpress.org/reference/functions/wp_enqueue_script/

    Please note that this might affect the privacy options, if it is enabled, because the theme will not be able to stop the script from executing even if the map scripts are supposed to be blocked.

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    in reply to: iFrame in full height #1303700

    Hey HenkS5,

    Thank you for the inquiry.

    We tried to access the site above but it is not loading properly. Did you move the site? Please post the new URL so that we could inspect the iframe. We may be able to remove the scrollbar with css.

    Best regards,
    Ismael

    in reply to: Problem with color section with a customized ID #1303698

    Hey emanuelecocchiaro,

    Thank you for the inquiry.

    We cannot find those buttons in the landing page. Where did you add them? Please provide a direct link to the page so that we could check it. Are you referring to the contatti3 section?

    Did you add a slider or any elements with animation in the page? It is possible that the scroll happens while those elements are still loading or in transition, so the anchor lands incorrectly.

    Best regards,
    Ismael

    in reply to: Fatal Error with enfold Theme #1303697

    Hi,

    The site contains an old version of the theme, 4.5.7. Please update it to the latest version (4.8.3) manually via FTP. Updating the theme should fix the error.

    For more info about FTP update or theme update in general, please check the following documentation.

    // https://kriesi.at/documentation/enfold/theme-update/

    Best regards,
    Ismael

    in reply to: Portefolio items are with odd behaviour #1303696

    Hi,

    We added a new filter called avf_masonry_entry_content in the latest version (4.8.3) that should allow processing of the masonry content before returning it. We can use this filter to return a content without the tags and the extra spaces. The filter can be added in the functions.php file.

    Example:

     add_filter("avf_masonry_entry_content", function($content) {
    	$content = strip_tags(trim($content));
    	return $content;
     }, 10, 1);
    

    Let us know if that helps.

    Best regards,
    Ismael

    in reply to: direct link to masonry category #1303692

    Hi,

    . If I call the link with var psort=entwicklung the filter item is not active.

    @Onlineplaner: Are you trying to access the link from the same page where the sorting button are? Please note that the script above will only work on page load, not on menu click. You may need to add a click event listener to the menu items manually. Please feel to open a new thread if you need further assistance.


    @purmar
    : You might be trying to do a different thing. This thread is about the sorting button, not about redirecting to category pages. Please open a new thread and post the details in the private field.

    We will close this thread for now.

    Best regards,
    Ismael

    in reply to: Problems with polish text #1303691

    Hey mkuzman,

    Thank you for the inquiry.

    Looks like the diacritics are not responding correctly on the specified font weight. What happens when you use @font-face instead of uploading the font as custom font? Please note that the font manager is intended for Google Fonts, and so uploading fonts from different sources might return unexpected results.

    // https://css-tricks.com/snippets/css/using-font-face/

    Best regards,
    Ismael

    in reply to: Logo SrcSet? #1303690

    Hi,

    Thank you for sharing.

    According to @Guenter, this should work if you manually enter the image or logo ID in the Enfold > Theme Options > Logo field. When you upload or select an image, it returns the image URL but you could manually input the image ID in the field instead. This should allow the theme to properly generate the image markup with the sizes and srcset attribute.

    NOTE: Please do not forget to revert the function-set-frontend.php file back before testing this.

    Best regards,
    Ismael

    in reply to: Enfold Theme did not import correctly #1303689

    Hi,

    Yes, we understand. We would like to ask again if we could reset the database and import the demo again from scratch. Would that be OK with you?

    Regarding the images, they can always be replaced with the actual images that you are actually going to use for the site. They are there as placeholder and most of them will probably be replaced as you go along building the site. The styles can also be adjusted in the Enfold > General Styling panel.

    We cannot try the import again without your permission.

    Best regards,
    Ismael

    in reply to: Enfold Theme did not import correctly #1303613

    Hi,

    Thank you for the update.

    Looks like you managed to import the demo successfully, aside from the menu, which is currently displaying all pages. We can try and import the demo again but we will have to reset the installation, remove the database and everything. Is that alright?

    Best regards,
    Ismael

    in reply to: Fill in 'Uploaded in' field automatically #1303611

    Hey Peter,

    Thank you for the inquiry.

    Are you trying to redirect the gallery item to the actual attachment page? The wp_get_attachment_link function might help.

    // https://developer.wordpress.org/reference/functions/wp_get_attachment_link/

    You may need to modify the enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.php file to apply the attachment link.

    Best regards,
    Ismael

    in reply to: Adding EVENT Informations #1303609

    Hi,

    There are calendar libraries or script out there, but you will have to implement them manually.

    // https://fullcalendar.io/docs/initialize-globals
    // https://jqueryui.com/datepicker/

    WP also has a simple calendar widget, but it can only display links to posts by published date.

    // https://wordpress.com/support/widgets/calendar-widget/

    Best regards,
    Ismael

    in reply to: Pass SESSION variables into ENFOLD settings #1303606

    Hey stupaul22,

    Thank you for the inquiry.

    Are you trying to create a membership site or hide/display content exclusively? Unfortunately, this is not available in the theme out of the box, and adding this feature will require significant amount of modification, which is beyond the scope of support.

    You might be able to use a plugin WP Membership or Simple Membership to restrict the visibility of a certain page or content.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    For some reason, the height of #jumphere section spans from the beginning of the content container up to where it is actually located. This is probably a float issue. To fix it, please try this css code.

    #jumphere {
    	clear: both;
    }
    

    Best regards,
    Ismael

    Hey laboiteapixels12,

    Thank you for the inquiry.

    You might be able to use the following hooks or filters (woocommerce_billing_fields & woocommerce_shipping_fields) to customize the checkout page and require users to input their phone numbers.

    // https://docs.woocommerce.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/

    Code examples can be found within the documentation. You may need to override the billing_phone field and make it NOT optional.

    Best regards,
    Ismael

    in reply to: Table columns custom colored cells #1303546

    Hey Saskbison,

    Thank you for the inquiry.

    This should adjust the width of the first column.

    #custom-table-1 tbody tr td:nth-child(1) {
    	vertical-align: middle !important;
    	width: 30%;
    }

    To change the color of the cell in each row, try this css code.

    #top #custom-table-1 tbody tr:nth-child(1) td:nth-child(1) {
    	background-color: red !important;
    }
    
    #top #custom-table-1 tbody tr:nth-child(2) td:nth-child(1) {
    	background-color: green !important;
    }
    
    #top #custom-table-1 tbody tr:nth-child(3) td:nth-child(1) {
    	background-color: blue!important;
    }
    

    We used the nth-child selector to target each table row (tr) element.

    Best regards,
    Ismael

    in reply to: Layerslider WP Glitching between transitions #1303538

    Hi,

    Sorry for the delay. The issue seems to be only happening on Chrome, it works fine on Firefox.

    We found this error in the console but we are not exactly sure where it is generated because the scripts are compressed with Autoptimize. But we know that it is within the Froogaloop script, which creates the Vimeo player.

    utoptimize_single_76e81a43d2fca9572290c3a9251745d1.js:96 Uncaught TypeError: Cannot read property 'value' of undefined
        at a (autoptimize_single_76e81a43d2fca9572290c3a9251745d1.js:96)
    

    Is there a staging or development version of the site?

    Have you tried using Youtube or locally hosting mp4 videos?

    Best regards,
    Ismael

    in reply to: Theme Renewal #1303537

    Hey Paul Simbeck-Hampson,

    Thank you for the inquiry.

    The extended support is only valid for a single license or a single domain/site, so when you require support for two different domains, extending support or renewal for both domain is necessary.

    Best regards,
    Ismael

    in reply to: Gallery with category filter #1303536

    Hey fabio1981OK,

    Thank you for the inquiry.

    You can actually set the Portfolio Grid element to open lightbox instead of redirecting to the actual portfolio item page. Please edit the element, go to the Advanced > Link Setting toggle, then set Link Handling to the third option. This is available on version 4.8.3.

    Best regards,
    Ismael

    in reply to: Can't embed Mailchimp Archive on webpage #1303535

    Hey PHLwebmaster,

    Thank you for the inquiry.

    How did you add the archive code? Please post the code on pastebin.com so that we could inspect it. We tried to login using the user account above, but it seems to be invalid. Please check the info carefully, or provide another valid account.

    Best regards,
    Ismael

    in reply to: Masonry Gallery #1303533

    Hi,

    Thank you for the update.

    The same issue was discussed in the following threads.

    // https://kriesi.at/support/topic/massonry-gallery-not-loading-properly
    // https://kriesi.at/support/topic/several-masonry-galleries-on-single-page-not-loading-properly

    Possible fix is also available within those threads.

    We can also disable the masonry animation so that they are immediately visible on page load without the fade in transition.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The filter above will only work if the portfolio items contains a single category. When you go to a single portfolio page, the navigation or arrows should only allow you to access portfolio items that belong to that same category. However, in your installation, the portfolio items contain more than one category, so every post that has the same category will still be accessible in the navigation. Unfortunately, there is no way to alter this behavior without significant modification in the theme.

    Best regards,
    Ismael

    Hi,

    Yes, an access to the staging or development site would be nice. To keep us from accidentally breaking the live site. We cannot reproduce the same issue on our end, so there is a great chance that a plugin or a custom modification is causing the issue on your site. You can always keep the suggested script if the issue persists.

    Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    Yes, an access to the staging or development site would be nice. To keep us from accidentally breaking the live site. We cannot reproduce the same issue on our end, so there is a great chance that a plugin or a custom modification is causing the issue on your site. You can always keep the suggested script if the issue persists.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Licensing for agencies #1303527

    Hey Thomas Stollberger,

    Thank you for the inquiry.

    1.) A single license is only valid for a single site or domain, so you have to purchase separate licenses for each domain or frontend on a multisite installation.

    2.) There is an extended license for the theme, but this is only valid for a single end product, which might not be what you are looking for. Please review the Themeforest license documentation for more info about each license and for the complete definition of a single end product.

    // https://themeforest.net/licenses/faq
    // https://themeforest.net/licenses

    Best regards,
    Ismael

    in reply to: Woocommerce sorting option #1303525

    Hi,

    @chiliharstad: What do you mean? You should be able to modify the sorting option in the themes\enfold\config-woocommerce\config.php file if you want to add or remove a sorting option. Look for the avia_woocommerce_overwrite_catalog_ordering function around line 1750.

    Best regards,
    Ismael

    in reply to: How to reduce spacing before Easy Slider ? #1303390

    Hi,

    Disabling the image optimization plugin should not affect images that are already optimized. The only thing you should be concern about is when you are continuously uploading images to the site. The new images will not be optimized since the plugin is disabled.

    Thank you for your patience.

    Best regards,
    Ismael

Viewing 30 posts - 13,981 through 14,010 (of 66,839 total)