Slider in admin not shown in shopping experiences - shopware6

the slider is not shown in "Landing Page" in "Shopping experiences".
It is blank like this:
enter image description here
Somebody told me by executing: bin/console assets:install it should be shown.
But it does not.
I have also tried: ./bin/build-administration.sh
But it is still not shown.
Do you have an idea why not?
It may be shown in version 6.4.4.0 but after updating to 6.4.14.0 it is gone.

Did you try to run all migrations?: ./bin/console database:migrate --all core
It could be the case, you are missing data from them.

Related

Preview content on site in Sanity not working

I'm following the Sanity docs on how to add a content preview. After updating the sanity.json and adding a resolveProductionUrl.js file according to docs I should be able to see a menu item in context menu:
But it's not happening. Interestingly enough If I add a console log to a resolveProductionUrl.js I can see it on the browser console - meaning that this function is getting called.
This is what I see:
I ran into a similar issue while following along using Sanity's Preview content on site article.
There were three things I had to do after following their article in order to get it to work:
I had do add this line in sanity.json under plugins
add highlighting to the line:
"plugins": [
...
"#sanity/production-preview"
],
(I didn't add this line to my sanity.json file on the first attempt. The article did not highlight that line, so looks like its just provided as context since the parts entry is highlighted.)
I also had to update resolveProductionUrl.js to use document._id instead of document.slug.current as slug is undefined for me and it was throwing errors in the console (and not showing the menu item).
I had to completely stop the site and re-run sanity start to get it to be picked up locally.

Selenium/Chromedriver: Turn off location for a single site

When I run chromedriver, due to my system preferences it turns off "Location" as shown in this image.
The problem is an individual site still think my location is allowed. As shown in this image:
When I manually set this drop-down to "block" then I achieve the desired behavior. Any way to do this programmatically? Here is what I've tried adding in the capabilities/preferences from various posts around the internet, none have worked:
--disable-geolocation
--enable-strict-powerful-feature-restrictions
profile.default_content_settings.geolocation: 2
geolocation: 1
--deny-permission-prompts
Prevents permission prompts from appearing by denying instead of showing prompts. ↪
https://peter.sh/experiments/chromium-command-line-switches/
COuld you try adding this as argument example :7
python ;
options.add_argument('--deny-permission-prompts')

Prestashop Voucher coupon block not showing

Although in my theme the coupon block had showed ok, now it isn't showing nothing. So the costumers can't use the voucher coupons. I add an screenshot to see what i mean. The green block i mean. Image here
Try executing the following line of code on your store.
Configuration::updateGlobalValue('PS_CART_RULE_FEATURE_ACTIVE', '1');
You need to add it to some PHP file (PrestaShop's file) and open a page that runs that PHP file, once it will be executed you should be able to see and use the voucher field on the Checkout page.
Though this is an old topic, I found this with the same problem. In our case this happened when installing / updating PayPal module. The solution is to unhook PayPal module from Header hook. I know it's not a "coding solution", bugt I hope it may help someone...
The solution is not mine, I found it here: https://www.prestaforum.com/threads/un-bug-muy-comentado-en-la-1-6-0-x-cupon-descuento-vs-paypal.357/.

Intellij JavaDoc not in sync or refreshing when I edit

What do I need to do to get Intellij to display the new edited version of my documentation when I view it (using Ctrl+Q).
For example if I create a new class the default template is added and the documentataion looks like this:
And then will display like this:
If I then edit this to this:
It still displays as the original documentaion (2nd image).
I don't think you have anything to do to have the "updated" javadoc displayed.
It is working as expecting for me, and it has been like that for years...
I figured it out. I had the documentation open previously, but pinned to the right hand side. Like below:
This meant that when I edited and tried to view it again it would display the old doc version which was pinned.
If I close that pinned window then the updated doc is displayed every time.

unable to execute pig script for Hue-2.5.0

I have installed Hue-2.5.0 in pseudo mode and also i am able to view the UI.
Beeswax(hive UI), sqoop, oozie editor everything are working efficiently but i dont know why my pig scripts are not working, UI is non resrponsiv & it is not showing any errors or exceptions.
i have checked logs also and found no issue
what could be the issue???
thanks in advance.
You should look at http://hue_host:8888/logs, or right click and 'inspect element' and look for error in the Chrome console. You can also share a screenshot of what happens when you clicked 'submit. Feel free to comment on the hue-user list too.