Forum Replies Created
-
AuthorPosts
-
Hi,
The error pertains to the masonry element and one of the session function. What is the current PHP version? Please ask your hosting provider if the session package is enabled.
// https://packagist.org/packages/dmitrymomot/php-session
Best regards,
IsmaelJanuary 14, 2019 at 12:51 am in reply to: Kontaktformular: Datenschutz-Anhängsel übersetzen #1053465Hi,
Great! Glad it worked. Please feel free to open a new thread if you need anything else. :)
Best regards,
IsmaelJanuary 14, 2019 at 12:38 am in reply to: Latest Enfold [5.+] not working with H5P plugin [no errors in console] #1053464Hi,
Where can I see the issue again? I created a multiple choice test and it seems to be working properly. (see private field)
Best regards,
IsmaelHi,
Thanks for the update.
This css code should help align or adjust the borders.
.wpml-ls-legacy-list-horizontal a { padding: 0 10px; min-height: 15px; }Best regards,
IsmaelHi,
I selected all the categories but the one I want to exclude.
Did you select the parent categories? It should display only the items from the selected category unless the parent category of the child categories where the posts belong to are selected.
Best regards,
IsmaelHi,
Thank you for using Enfold.
You have to set the Enfold > Blog Layout > Blog Layout settings to “Grid Layout” or use the “avf_blog_style” filter to set the blog style to “grid” when viewing an archive page.
Best regards,
IsmaelHi,
Yes, I am referring to that site. I added the API key again but it’s generating the same error. Please delete the current project, create a new one and generate a new API key. Make sure that the site is added as a http referrer.
Best regards,
IsmaelHi,
Thank you for using Enfold.
This is working properly on my end. Did you select the product categories? Do you have a test page where we can see the issue?
Best regards,
IsmaelJanuary 13, 2019 at 11:59 pm in reply to: Photos taking up a huge amount of space on my site storage – anything I can do? #1053453Hi,
Replace the filter with the following code to remove specific thumbnails:
add_filter('avf_modify_thumb_size', 'avf_modify_thumb_size_mod', 10, 1); function avf_modify_thumb_size_mod($size) { unset($size['magazine']); unset($size['widget']); unset($size['portfolio_small']); unset($size['gallery']); unset($size['entry_with_sidebar']); unset($size['entry_without_sidebar']); unset($size['shop_thumbnail']); unset($size['shop_catalog']); unset($size['shop_single']); return $size; }Best regards,
IsmaelJanuary 13, 2019 at 11:53 pm in reply to: Reducing space between Grid Row and Separator/Whitespace element #1053452Hi,
I moved the separator and the heading inside its own color section so that we can adjust the section’s padding.
Best regards,
IsmaelHi,
You have to use the absolute or the complete url instead of just adding the anchors. Example:
http://www.mysite.com/my-page/#sectionBest regards,
IsmaelHi,
You didn’t echo out the link tags. It should be:
echo '<meta ... />'; echo ' <link ... />'; echo ' <link ... />';Do you get any errors?
Best regards,
IsmaelHey David,
Thank you for using Enfold.
Those are the correct template files but if you’re using the Grid Layout, you have to modify the postslider shortcode.
Best regards,
IsmaelHi,
I can’t reproduce the issue on my end. Do you have a test page where we can see the issue?
Best regards,
IsmaelJanuary 11, 2019 at 12:19 pm in reply to: Menu-Fonts are not correct displayed in the frontend #1052718Hi,
Thanks for the update.
I think it’s not working because of the font weight, so I added this code on the Quick CSS field temporarily.
#top #header .av-main-nav > li > a { font-size: 15px; font-family: 'Courier New', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, Arial, sans-serif; letter-spacing: 0.11em; font-weight: normal; }Best regards,
IsmaelHi,
Thanks for the info.
I fixed the issue but I don’t know what caused it. I found these characters in the enfold.css file, which broke the dynamic css.
qfa9'144+144+144+0(Best regards,
IsmaelHi,
Thanks for the update.
I can’t reproduce the issue on the sample page. Where can we see the issue?
Best regards,
IsmaelHi,
Thanks for the info. How does the maintenance mode work for other sites if the plugin is installed on all of them? The issue is probably cause by combination of the plugins. Have you check that?
Best regards,
IsmaelJanuary 11, 2019 at 8:18 am in reply to: improved: added rel='nofollow' ? Excuse me? What? This is the biggest nonsense #1052624Hi,
My mistake. I misunderstood the previous thread. The “rel=nofollow” attribute was not added to fix duplicate content, it was added in an attempt to fix duplicate url or to remove the “?s=” query from the search page URL.
// https://kriesi.at/support/topic/how-to-remove-s-from-search-url/
same problem for me: I detected it using Screaming Frog and I was alerted for duplicate titles, so I discovered duplicated URL with ?s=.
I’ll forward the thread to our developers.
Best regards,
IsmaelHey isaaccolavecchio,
Thank you for using Enfold.
I ran a test in the page speed insights and according to the report, the site is slow because of the images and the number of nodes that has to be rendered. You should move some of the products to other pages or make use of the category pages.
Best regards,
IsmaelHi,
This should help resize the image on the frontend.
#top .wp-caption img { height: fit-content; }Have you tried to upload a larger image?
Best regards,
IsmaelHi,
Thank you for using Enfold.
That is the inner border and I’m not quite sure how it ends up there. Use this css code to hide it on mobile view:
@media only screen and (max-width: 767px) { .avia_transform .av-extra-border-element.border-extra-diagonal.border-extra-diagonal-inverse .av-extra-border-inner { display: none !important; } }Best regards,
IsmaelHey flightdeck,
Thank you for using Enfold.
Is there a way to hide the Hide Form Labels like in the enfold as well?
You have to enable the placeholder text for each field: https://contactform7.com/setting-placeholder-text/
And put the input field outside the label tag. You can then use this css code to hide the label:.wpcf7 label { display: none !important; }Best regards,
IsmaelHey Munford,
Thank you for using Enfold.
Are you using images with the same size for every masonry item? The isotope script is responsible for the items’ position and in a few cases such as this one, it doesn’t sort the items as you would expect if the images or grid items differ in sizes.
Related thread: https://kriesi.at/support/topic/masonry-grid-not-properly-sorting-alphabetically/#post-981621
Best regards,
IsmaelHi,
It has nothing to do with the lightbox issue. Did you enable the sidebar for these pages? The ad is inside the sidebar container.
Best regards,
IsmaelHi,
Set the p tag width to 100%:
.home .avia_ajax_form p { width: 100% !important; }… and then add this css code:
#top fieldset { width: 100%; min-inline-size: auto; }Best regards,
IsmaelHi,
This is what I get on my end.
Forbidden
You don’t have permission to access /wp-admin/ on this server.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.Please contact your hosting provider.
Best regards,
IsmaelHey serial-buddha,
Thank you for using Enfold.
The welcome section is at the very top of the page and the header is not sticky on mobile devices, so I’m not sure how you expect this to work. And besides, mobile devices has a “tap to top” feature, so this is not needed. You can also re-enable the back to top button on mobile view.
@media only screen and (max-width: 767px) { .responsive #scroll-top-link { display: block; } }Best regards,
IsmaelHi,
The site is running on a very old version of the theme, 2.9.2. You have to update the theme manually to version 4.5.2 and make sure that your WordPress installation is version 5.0.2.
// https://kriesi.at/documentation/enfold/install-enfold-theme/#reinstall-or-update-using-ftp
Best regards,
IsmaelJanuary 10, 2019 at 12:19 pm in reply to: child theme problem with overwriting php from parent #1052309Hey nfgraphicdesign,
Thank you for using Enfold.
It is possible but you have to use this filter first.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
After adding that filter, create a folder called “shortcodes” in your child theme directory and copy the shortcode files that you want to override inside of that folder.
Best regards,
Ismael -
AuthorPosts
