Forum Replies Created
-
AuthorPosts
-
November 22, 2019 at 11:57 am in reply to: Remove the small white space between the 4 columns #1159080
Hey Bruno,
Please add this css code in Quick CSS:
#welcome .av-screen-reader-only { display: none; }Hope it helps.
Best regards,
NikkoHey wtek,
I have tested it as well on your end but after importing the demo using WordPress Importer I got this:
This site can’t be reached ERR_HTTP2_PROTOCOL_ERRORI’m not really sure what’s causing the issue, the only other workaround we can suggest is to import the demo on a local server (XAMPP, etc) then use a WordPress migration plugin.
Best regards,
NikkoHi snitt,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHey tomhilditch,
Can you try to put:
$exclude = array(43, 44);inside the if statement:
if (!is_admin()) {Hope it helps.
Best regards,
NikkoNovember 22, 2019 at 11:24 am in reply to: How can I add fonts with a font.com subscription? #1159070Hey nini_bacher,
Instead of adding it to header.php file, it’s better to use a hook instead: https://kriesi.at/documentation/enfold/add-custom-js-or-php-script/#add-a-script-to-head-section
In your child theme’s functions.php add this code:function add_custom_script(){ ?> <script type="text/javascript" src="//fast.fonts.net/jsapi/00bb5123-8d46-4c97-92b6-a2ab2217d646.js"></script> <?php } add_action('wp_head', 'add_custom_script');Hope it helps.
Best regards,
NikkoHey DFME,
Can you try the solution posted in here: https://kriesi.at/support/topic/enfold-causes-wrong-update-markers/#post-1132470
Hope it helps.Best regards,
NikkoHey margiela,
I found this error in the web console:
Failed to load resource: the server responded with a status of 500 ()The ftp does not worked when I tried through filezilla.
Can you try to check if there’s an error_log file generated in your root folder?
If not please enable WordPress Debugging: https://wordpress.org/support/article/debugging-in-wordpress/Best regards,
NikkoHi Lee,
Thanks for setting it to admin account.
It was just missing this code in functions.php:add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths) { $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; }However, your video from Vimeo doesn’t seem to stop even if the loop is set to false.
According to https://help.vimeo.com/hc/en-us/articles/115004485728-Autoplaying-and-looping-embedded-videos you’ll just need to add loop=1 to make the video loop, so loop=0 would stop video from looping. I checked the video url (private content) using web inspector and the url parameter is correct but if you open it it does not stop looping.Another way to verify this issue is to go to your Vimeo Link (private content), click on Share button, click Show Options, uncheck Loop this video and other checkboxes, copy the Embed Code and paste it. Then check the video if it loops and after that do the same using another vimeo link (private content). You’ll notice your vimeo video loops while the other one is not. You can check Video Embed Test page (private content). Another test I made is to duplicate the homepage (link in private content) but I used the other vimeo link. The only difference I can think of between the 2 videos is the vimeo settings, I think it should be fixed there.
Best regards,
NikkoNovember 22, 2019 at 5:35 am in reply to: Woocommerce Image Gallery Not Displaying On Product Page #1159004Hi philthebass,
I have checked the link you posted on my android mobile phone and the image galleries worked fine on my end.
Are you using an iphone?Best regards,
NikkoHi crtdude,
This plugin seems to work fine: https://wordpress.org/plugins/ultimate-member/
I haven’t fully explored everything but have tested it’s content restriction and it works fine.
Shortcodes work fine inside Text Block or Code Block, however for other elements, for example a button you’ll need to enable Debug Mode first. And once it’s enabled you should be able to see some shortcodes at the bottom of the Layout Builder, this is where you insert the shortcode for access restriction.The generated pages of Ultimate Member works fine as well (Register, Login, Account, etc).
I hope this would help.@Tia glad that you found a workaround.
Best regards,
NikkoHi Del,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoNovember 22, 2019 at 4:04 am in reply to: Booking Calendar Plugin produces Fatal Error on Enfold version 5.3 #1158984Hey tmalis,
I think it’s not an Enfold theme issue, since Enfold doesn’t have rent-a-condo.php file and get_fields() function is not an Enfold function but from ACF plugin.
Please make sure that you have ACF plugin installed: https://wordpress.org/plugins/advanced-custom-fields/ or it’s pro version and that should fix it.Best regards,
NikkoNovember 22, 2019 at 3:57 am in reply to: Columns centered vetically without being equal height? #1158982Hey AbstraktMarketingGroupWebsites,
Yes, but you’ll need to do the following first:
1. Turn on Custom CSS Class Field: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#turn-on-custom-css-class-field-for-all-alb-elements
2. Then in your page, put 2 1/2 column (only) inside a Color Section.
3. Edit Color Section, then in Developer (tab) > Custom CSS Class, add a class name, for example myflexIn Quick CSS, add this css code:
.myflex .entry-content-wrapper { display: flex; align-items: center; }Best regards,
NikkoHi dondela,
We’re glad that we could help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi GriffinGraffix,
Sure, what I meant with fetching old css is for example in the style.css of your child theme you recently added some css code however when you view you didn’t see its effect, the first thing you can do is check view page source then find the link in style.css: https://purrproject.com/wp-content/themes/enfold-child/style.css?ver=4.6.1
Browsers often stores css/js files in the cache, and when you check on it the css code you added isn’t showing in there, the solution for this is busting css cache or you can clear your browser cache.
If the recently added code is showing but isn’t working on your site, you can try to inspect element and see what css is overriding it.As for the generated css file from Enfold overriding your custom styling, it’s because of the order and the only way ensure that your code won’t be overridden is to put more weight on your selectors. For example you have this code:
.avia-button { font-weight: bold; }and this gets overriden, you can instead replace it with:
#top .avia-button { font-weight: bold; }For more information on this you can check for CSS Specificity: https://www.w3schools.com/css/css_specificity.asp
Best regards,
NikkoHi dondela,
It’s now fixed.
The problem was the page in private content which uses a page content element which is pointing to itself which produces an infinite loop.
The portfolio pages except for the working ones are pointing to that page as well, which in turn wasn’t loading.
I think it should be safe to switched it back to the previous php version.
The ‘So geht vegan’ portfolio page is now restored as well.
Let us know if you need further assistance.Best regards,
NikkoHi dondela,
We apologize for the delayed response.
The ftp login didn’t worked when I checked with filezilla.
It does seem to have an issue with the masonry, after removing it in ‘So geht vegan’ it does show properly.
However after I tested the same content on my local server it does work properly.
Can you also try to switch the php version? maybe 7.1Best regards,
NikkoHi GriffinGraffix,
The only reason why it works in Quick CSS and not on your custom css is because of caching, if you view page source and then check your custom css you’ll see it’s fetching the old css.
Try to check this article: https://technumero.com/css-changes-not-showing-up-in-wordpress-cache-busting-css/
Hope it helps.Best regards,
NikkoHi KosmetikAndNails,
Yes, I agree hopefully it will be added in the future.
Have a great day! and thanks for using Enfold :)Best regards,
NikkoHi Cristina,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Mikhail,
1. No, Enfold doesn’t have such feature but Woocommerce does provides a shortcode for this:
[woocommerce_my_account]The page which contains that shortcode should allow customers to view their orders, but not sure about loyalty program
2. As far as I know there’s no limit except as long as you’re host/server can handle. Enfold doesn’t really change anything in woocommerce except for Visual Aesthetics and provides woocommerce modules which you can drag and drop in our Advanced Layout Builder.
3. I think they are similar in terms of woocommerce integration since themes doesn’t really change backend functionalities but just change some visual aesthetics and user experience, and give you a different way of presenting products for example using a product slider (enfold element).
I hope this answers your questions.
Best regards,
NikkoNovember 15, 2019 at 8:48 am in reply to: Position/ Height/ Size of "figcaption" within masonry grid element #1157087Hi Andreas,
I just checked your site and like you already made progress (screenshot in private content).
You can remove the top margin from the masonry title, by adding this css code:figcaption.av-inner-masonry-content .av-masonry-entry-title { margin-top: 0 !important; }Also, I tried adding height: 25% via web inspector and it seems to work just fine, the problem I see before was the size of the masonry which is about a quarter of its current size.
Best regards,
NikkoHey Jochen,
There’s no standard way in implementing full page scrolling, except the WordPress way of extending features such as using a child theme and enqueueing additional js & css files.
As for assigning class to section/any elements, you can refer to our documentation: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#turn-on-custom-css-class-field-for-all-alb-elementsBest regards,
NikkoNovember 14, 2019 at 9:07 am in reply to: Position/ Height/ Size of "figcaption" within masonry grid element #1156682Hey Kanzleramt,
I think you just need to add height: 25% to your current code. Also remove the top margin for the caption title.
Best regards,
NikkoHi tlkingsland,
PHP is basically just a language used to build wordpress sites: https://www.php.net/manual/en/intro-whatis.php
You can find the php version in Tools > Site Health > Info (tab) > Server. The version you are using is 7.0.33.
Anyway, I have seen a mixed content error which is fixed through a search and replace plugin (I have already removed the plugin).
Then I have switched to a twentynineteen theme then back to Enfold and the product image is now showing fine including the magnification.Best regards,
NikkoHi dondela,
Try the solution written on this post:
– https://www.wpbeginner.com/wp-tutorials/how-to-fix-fatal-error-maximum-execution-time-exceeded-in-wordpress/Best regards,
NikkoHi tlkingsland,
There are some js errors in the console (screenshot in private content).
Can you try to turn off caching and disable all plugins except for woocommerce? and try to check if the issue still persists.Best regards,
NikkoHi dondela,
The first 2 items in your portfolio works fine but when trying to open other portfolio items, it loads for some time then this error shows:
Service Unavailable The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.I could not see any js errors in the web console and the backend of those portfolio pages works fine.
Try to enable WordPress Debugging: https://wordpress.org/support/article/debugging-in-wordpress/ you may see some clues on the problem.Best regards,
NikkoHi BeyondMS,
Glad to hear that, it’s most likely a caching issue.
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Erwin,
We’re glad that we could help :)
Thanks for using Enfold and have a great day!Best regards,
Nikko -
AuthorPosts
