Forum Replies Created
-
AuthorPosts
-
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
. 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,
IsmaelHey 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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHey 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,
IsmaelHi,
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,
IsmaelHey 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,
IsmaelJune 2, 2021 at 11:06 am in reply to: Fail to create a Link to Jump to a Specific Part of a Page #1303553Hi,
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,
IsmaelJune 2, 2021 at 10:48 am in reply to: How to force the client to indicate a valid phone number (10 numbers) #1303548Hey 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.
Code examples can be found within the documentation. You may need to override the billing_phone field and make it NOT optional.
Best regards,
IsmaelHey 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,
IsmaelHi,
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,
IsmaelHey 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,
IsmaelHey 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,
IsmaelHey 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,
IsmaelHi,
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-properlyPossible 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,
IsmaelJune 2, 2021 at 9:38 am in reply to: Arrows on when viewing portfolio to scroll when you inside a sub category #1303532Hi,
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,
IsmaelJune 2, 2021 at 9:19 am in reply to: Gallery shows "the image could not be loaded" on click #1303529Hi,
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,
IsmaelJune 2, 2021 at 9:19 am in reply to: Gallery shows "the image could not be loaded" on click #1303528Hi,
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,
IsmaelHey 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/licensesBest regards,
IsmaelHi,
@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,
IsmaelHi,
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,
IsmaelHi,
Yes, this is because of the anchor. This will only work when the destination anchor is in the same page as the column that contains the anchor link. You can find this condition in the enfold/js/shortcodes.js file around line 658.
var reader = column.hasClass('av-cell-link') ? column.prev('a.av-screen-reader-only').first() : column.find('a.av-screen-reader-only').first(); url = url.trim(); if( (0 == url.indexOf("#")) || ((url.indexOf(link) >= 0) && (url.indexOf("#") > 0) ) ) { reader.trigger('click'); return; }Try to remove that line to allow the column link to proceed.
Best regards,
IsmaelHi,
Thank you for the info.
2.) We can now see the issue with the masonry but we are not yet sure what is causing it. Please try to add this css code to adjust the masonry background container a bit.
.av-fixed-size .av-masonry-image-container, .av-fixed-size .av-masonry-outerimage-container { position: absolute; width: 101%; height: 101%; }Best regards,
IsmaelHi,
Thank you for the clarification.
Did you apply a different membership settings for the pages above, or could you think of any difference between them (membership options, settings etc)?
We can now see the issue, but we do not really see any difference with how the pages are created. As far as we know, they are both using the ALB with a code block containing the more tag. We also tried to set Unauthorized Access Management settings for each page manually but it did not change anything. In the Excerpt Options, we selected the following.
More Tag - This option will show the content before the <!--more--> tag in your posts as the teaser content for unauthorized access. It functions similarly to the Post Excerpt setting below.// https://docs.memberpress.com/article/158-per-post-page-unauthorized-access-mangagement
Best regards,
IsmaelJune 1, 2021 at 10:37 am in reply to: Customize category pages to look like "ALB build" blog posts (thumbnails, etc). #1303379Hi,
@s29ers: Which blog layout are you currently using? You can find the Blog Layout option in the Enfold > Blog Layout panel. The main blog page and the archive pages should follow this layout.The instructions above are only necessary when the blog layout is set to the last option or when you are using the advance layout builder to build the main blog page.
Best regards,
IsmaelHi,
Looks like this line of code in the function-set-avia-frontend.php file only returns an image markup without the srcset or the sizes attribute.
$resp_attr = Av_Responsive_Images()->html_attr_image_src( $logo, true );So the following condition is not satisfied and the value of the $dimension is never touched or is not emptied.
/** * https://kriesi.at/support/topic/logo-srcset/ * * Bug that WP removes scrset and sizes when width and/or height is defined * @since 4.8.3 */ if( false !== strpos( $resp_attr, 'srcset' ) || false !== strpos( $resp_attr, 'sizes' ) ) { $dimension = ''; }The modification above still works on our end. Please try it again.
We will report the issue back to our channel.
Best regards,
Ismael -
AuthorPosts
