Tagged: enfold, LayerSlider, transparent menu
-
AuthorPosts
-
November 6, 2019 at 4:27 pm #1154318
Hello team,
when we create a layerslider and set “transparent header”, it works perfect when using the “enhanced editor”.
See 1.jpg in the private section.When we switch to “standard editor”, the layerslider is no more transparent behind the menu.
See 2.jpg in the private section.Is there a piece of code, to be inserted?
Any help appreciated.Thanks a lot.
- This topic was modified 5 years ago by jochenmaier.
November 6, 2019 at 9:42 pm #1154445Hey Jochen,
I’m not seeing a different in the images linked above.
Best regards,
Jordan ShannonNovember 7, 2019 at 9:08 am #1154562Hello Jordan,
sorry – I just pasted the correct links in the private content box.Thanks, Jochen
- This reply was modified 5 years ago by jochenmaier.
November 8, 2019 at 4:24 am #1154828Hi Jochen,
Thanks for the screenshots. So you are saying that this happens when you switch to the default WordPress editor? Why do you need to switch to that? If you need it then you can simply add a text block element to your layout.
Best regards,
RikardNovember 8, 2019 at 9:56 am #1154886Hello Rikard,
thanks for your email.
There are a couple of reasons, why we need to create the blogs with the standard editor and we know, that we can add text elements …The question is:
When we create a layerslider and set “transparent header”, it works perfect when using the “enhanced editor”.
See 1.jpg in the private section.When we switch to “standard editor”, the layerslider is no more transparent behind the menu.
See 2.jpg in the private section.Is there a piece of code, to be inserted?
Thanks a lot, Jochen
November 9, 2019 at 3:53 am #1155143Hi Jochen,
I’m not sure why that would happen, could you post login details to your site in private so that we can have a closer look and reproduce this please?
Best regards,
RikardNovember 9, 2019 at 6:24 pm #1155231Hi Rikard,
thanks for your reply – I pasted the required details in the private area.Thanks a lot, Jochen
- This reply was modified 5 years ago by jochenmaier.
November 12, 2019 at 3:16 pm #1156027Hello Rikard,
any news on this?Thanks a lot, Jochen
November 13, 2019 at 4:56 am #1156266Hi,
Thank you for the update.
It looks like that because the content is wrapped inside an entry-content container — the default editor uses a predefined template, which can only be adjusted by modifying the single.php and the includes > loop-index.php file. Why do you need to switch to the default editor? You can always add texts using the text block element from the advance layout builder.
Best regards,
IsmaelNovember 13, 2019 at 9:37 am #1156326Hi Ismael,
thanks for the update. There are a couple of reasons, why we would want to use the standard editor.
One of reasons is, that with extended editor, the Single Post Navigation arrows are NOT shown.So please, the question is:
When we create a layerslider and set “transparent header”, it works perfect when using the “enhanced editor”.
See 1.jpg in the private section.When we switch to “standard editor”, the layerslider is no more transparent behind the menu.
See 2.jpg in the private section.Is there a piece of code, to be inserted?
Thanks a lot, Jochen
- This reply was modified 5 years ago by jochenmaier.
November 15, 2019 at 10:36 am #1157128Hi,
Thank you for the update.
One of reasons is, that with extended editor, the Single Post Navigation arrows are NOT shown.
When a slider or any full width element is added in a page, the post navigation will be automatically disabled because it tends to overlap with the full width element. We have to use the following filter in the functions.php file to change that behavior.
function avf_post_nav_settings_mod($settings) { $settings['is_fullwidth'] = false; $settings['skip_output'] = false; return $settings; } add_filter('avf_post_nav_settings','avf_post_nav_settings_mod', 999, 1);
When we create a layerslider and set “transparent header”, it works perfect when using the “enhanced editor”.
We actually explained it above. The container in the default template, where the layer slider and the rest of the content of the post are added, is not full width and unlike in the ALB, the layer slider is not added directly below the header before the rest of the content. You have to modify the single.php file, or the includes > loop-index.php file. Unfortunately, this will require changes that are beyond the scope of support.
Best regards,
IsmaelNovember 17, 2019 at 10:13 am #1157595THANKS A LOT, you may close this ticket.
November 18, 2019 at 3:24 am #1157718 -
AuthorPosts
- The topic ‘Layerslider behind transparent menu with standard editor’ is closed to new replies.