Forum Replies Created
-
AuthorPosts
-
Hi Ismael,
Thanks for your feedback. It works like a charm! Is it also possible to only display the date and not the time?
Best regards,
Steven
Hi Rikard,
Yep, thanks to Guenni007!
Best regards,
Steven
Hi,
Please see the current settings in the screendump. I doesn’t work on my side and apparently some (CSS) rule somewhere else prevents it to work.
Thanks again for your time and effort. I’ll go for my alternative option in order to save time ;)Best regards,
Steven
EDIT:
I figured out that, when using .container_wrap {z-index: 1;} it does work ….Regards,
Steven
Sorry, was to soon. It does work together with a full width slider but not when using a layerslider.
Please see your e-mail box for preview :)
Otherwise I’ll use my alternative option:
1. Give the complete color section a negative margin to overlap the slider
2. Give the 2/3 column on the left an positive margin so that it’s positioned below the slider while the 1/3 column stays on top of the slider.Best regards,
Steven
Hi,
Thanks again for your effort and support! The overflow: visible; rule was the thing that made it happen!
Stay safe!
Best regards,
Steven
Ah, I see ….
Just send you a mail.
Regards,
Steven
Hi,
Thanks again for help with this issue. With PC I meant Private Content btw ;)
I’m kinda lost. Please see screendump with my settings. I tried to fiddle with z-index etc. but no luck. Funny thing is that it does work on your testsite ….
- Your layerslider doesn’t seem to have a custom class right?
- Your color section has the class: reverse-order<div id=”av_section_1″ class=”avia-section main_color avia-section-large avia-no-border-styling avia-bg-style-scroll avia-builder-el-1 el_after_av_layerslider avia-builder-el-last reverse-order container_wrap fullsize” style=” “>
- The 1/3 column has class:shift-to-top with position relative, top -150px and a box-shadow
The only alternative option I get to work is:
1. Give the complete color section a negative margin to overlap the slider
2. Give the 2/3 column on the left an positive margin so that it’s positioned below the slider while the 1/3 column stays on top of the slider.But that’s quite cumbersome (umständlich) I recon.
We want to hide the submenu on mobile view so that’s not a CSS issue (just display:none;)
Thanks again for your time and effort!
Best regards,
Steven
Hi Günter,
Thanks for your extensive answer. To be honest I think it is a matter of z-index in combination with Layerslider and 1/3 column.
With my CSS rule it does shift up 90px but it shifts under the Layerslider.Although on your page it seems to work ;)
Please see PC.
Best regards,
Steven
Hi Rikard,
Of course ….
Thanks again!
Regards,
Steven
Hi Rikard,
Thanks for the great support (as always…) It works like a charm. One thing I cannot seem to get right is the box-shadow on the right of the div (see screendump here).
I use:background-color: #fff; -webkit-box-shadow: rgba(0,0,0,0.08) 0 4px 14px; box-shadow: rgba(0,0,0,0.08) 0 4px 14px;
Please see privat content for work in progress …
Best regards,
Steven
Hi Rikard,
Sorry for the late reply. I changed the z-index of the layerslider and now it works fine.
Cheers,
Steven
Hi,
I have exactly the same issue. I’m using Enfold version 4.7.6.4
It ‘s visible on Android phones but not on iPhones/Pads.Best regards,
Steven
March 5, 2020 at 3:28 pm in reply to: New Footer Widget – Full length on the bottom of every page #1190464Hi Ismael,
This is exactly what I was looking for and it works like a charm. The only thing is: I’d like to have it under the footer.
I tried to change add_action(‘ava_before_footer’,’avia_footer_top_column’); to add_action(‘ava_after_footer’,’avia_footer_top_column’);but that didn’t work. Could you be so kind to provide me with the right code?
Best regards,
Steven
Hi,
Sorry to bother you again … That didn’t allow me to modify the single-event.php. I gues the last thing I have to do is
wrap the remove_action inside a after_setup_theme hook
Could you tell me how and where?
Best regards,
Steven
Hi,
Just to make sure.
So place the single-events.php in child/tribe-events, replace
`
define( ‘AVIA_CHILD_BASE’, get_stylesheet_directory() .’/’ );
define( ‘AVIA_CHILD_EVENT_PATH’, AVIA_CHILD_BASE . ‘config-events-calendar/’ );add_action(‘tribe_events_template’, ‘avia_events_tempalte_paths’, 10, 2);
function avia_events_tempalte_paths($file, $template)
{
$redirect = array(‘default-template.php’ , ‘single-event.php’ , ‘pro/map.php’ );if(in_array($template, $redirect))
{
$file = AVIA_CHILD_EVENT_PATH . “views/” . $template;if( class_exists( ‘Tribe__Tickets_Plus__Main’ ) )
{
if( ‘single-event.php’ == $template )
{
$file = AVIA_CHILD_EVENT_PATH . ‘views/single-event-no-mobile.php’;
}
}
}return $file;
}With yours
remove_action(‘tribe_events_template’, ‘avia_events_tempalte_paths’, 10, 2);
`Best regards,
Steven
February 28, 2020 at 12:33 pm in reply to: Issues with Events Calendar and Events Calendar Pro #1188813Hi,
What I did was:
1. Followed your instructions in regards to the default-template.php
2. Copied wp-content/plugins/the-events-calendar/src/views/single-event.php to enfold child/tribe-eventsNothing changes when modifying that file.
So what I just did is:
1. Followed your instructions in regards to the default-template.php
2. Followed the instructions as suggested by Nikko in this postNow I can modify the single-event.php. So far so good :)
Best regards,
Steven
Hi Nikko,
Is this a typo or should this stay spelled as is?
add_action(‘tribe_events_template’, ‘avia_events_tempalte_paths’, 10, 2);
Best regards,
Steven
February 27, 2020 at 4:25 pm in reply to: Issues with Events Calendar and Events Calendar Pro #1188512Hi,
Thanks, that worked! Although I hardly see any difference between the Use updated calendar designs box checked/un-checked. What I try to achieve is this look : https://demo.theeventscalendar.com/event/yoga-at-the-park-3/2020-02-14/ (image top and content below)
Could you point me in the right direction?I take it that I have to copy the single-event.php (I’m using the classic editor) file to a certain directory in my child theme
Best regards,
Steven
February 25, 2020 at 1:55 pm in reply to: Issues with Events Calendar and Events Calendar Pro #1187688Hi Ismael,
As you sugested, I created the dir structure (tribe/events/v2 ) in my child theme. Where exactly can I find the file to be copied? Because I can’t find the dir: “config-events-calendar” as you mentioned.
The only default-template file I can find is located here: wp-content/plugins/the-events-calendar/src/views/default-template.php
And where do I place that copy? You write: then place it inside the new directory or the v2 folder
Best regards,
Steven
Hi,
You can close this topic.
Regards,
Steven
Hi Victoria,
Of course! Can’t believe I missed that! Thanks for the reply though.
Best regards,
Steven
Hi Nikko,
Thanks. I guess back to the ol’ list-style-image: url ;)
Cheers, Steven
Thank you!
Hi Victoria,
Thanks for your quick answer. Enfold’s support rocks as always!
Btw: we only need this for the frontpage. So will it be:.page-id-35 #top #av_section_2 .av-flex-placeholder
?March 13, 2019 at 5:09 pm in reply to: On single blog post page sidebar, only show post from that category #1078311Hi Nikko,
Thanks, will look into that.
Cheers,
Steven
February 26, 2019 at 12:22 pm in reply to: On single blog post page sidebar, only show post from that category #1071727Hi Nikko,
No problem and thanks for your time and effort. However, I’m affraid it’s not quite working yet. As you can see with your sample posts, only the title of the widget changes. The list of posts is still a combination of Actueel en Verhalen.
Best regards,
Steven
February 21, 2019 at 3:49 pm in reply to: On single blog post page sidebar, only show post from that category #1069976Hi Nikko,
Please see PC.
Best regards,
Steven
February 19, 2019 at 3:36 pm in reply to: On single blog post page sidebar, only show post from that category #1068995Hi Nikko,
Thanks for your answer and sorry for my late reply. I did figure out from this info, that the two pieces of code are most likely the ones to use. However, I really don’t know how to use it.
I can make two “Latest posts” widgets, one with: is_single() && in_category(‘news’) in the widget logic field and the other with: is_single() && in_category(‘stories’). Both widgets are placed in the Sidebar Blog. See screendump.
How do I set each widget visibility e.g. get it to work?Thanks in advance!
Regards,
Steven
February 1, 2019 at 2:30 pm in reply to: On single blog post page sidebar, only show post from that category #1061559Hi Nikko,
Thank you for your answer. I do understand what you mean and how it should work. However I do not know what exactly I should use in the widget logic field. Could you be more elaborate ?
Thanks in advance!
Best regards,
Steven
Hi Jordan,
Thanks. Works like a charm!
Best,
Steven
-
AuthorPosts