Forum Replies Created
-
AuthorPosts
-
Hi Ismael
We had the problem with the Chrome Browser. This browser is very popular, so I think, this could be an issue that should be fixed at your side?
But this task here you can close ;-)
Thanks very much.
Best regards
MikeHi Ismael
Thanks very much. It works.
But is this a bug of Enfold that the hotspots are clickable on mobile view?
Best regards
MikeHi Ismael
It only happens on a mobile device with a small screen.
I made a video for you, see private content section.
On a mobile device, you can click on a hotspot on the right side, then the navigation shifts to the right and the whole website is broken.
Best regards
MikeHi Mike
I think you can close this issue. We will implement it like in the javascript you mentioned.
Thanks very much.
Best regards
MikeHi Ismael
Thanks for your response and the link.
I could modify the opt-in form and now all works fine.
Before, I could not modify the opt-in form and the email looked very special and not like all other emails.
I think the problem was, that at the beginning, the opt-in was activated at MailChimp and Enfold.
Then we deactivated it only at MailChimp, so there still came the opt-in email but looked strange.
Now we activated it on both sides again and it works and we can modify the email template for opt-in.
You can close the issue.
Best regards
MikeHi Ismael
Sorry, perhaps I do not see it. But I still do not know, how I can edit the email template which is sent to confirm the registration for the newsletter.
See details in the private content section.
The email I receive when I register for the newsletter, I receive an email. But this template I do not see at the mailchimp platform, so it has to be something of Enfold?
Thanks very much.
Best regards
MikeHi Victoria
Ok, no problem.
Thanks very much.
You can close this issue.
Best regards
MikeHi Victoria
No problem. But do you have any manuals or tutorioals how to implement something like that?
Best regards
MikeHi Yigit
I will do that ;-)
You can close this issue. If we will need assistance, we will open a new one.
Best regards
MikeHi Rikard
Thanks for your response.
So perhaps we have other problems with HTML-tags we use inside some components.
We will look into it and contact you, if we need help.
You can close this issue.
Best regards
MikeHi Mike
See the shorcode in the private content section.
The promo boxes at the bottom of the page (before the footer) i.e. “Zucht”, “Garten”, “Tiere”, “Haus” are shown everywhere but shouldn’t.
Thanks for helping.
Best regards
MikeHI Yigit
There is still no update for the plugin.
We deleted it now and will use another, if we need…
You can close this issue.
Thanks very much.
Best regards
MikeHi
This was only an example. It also did not work, when we hide it only on very small and/or small devices.
On this website we only have 5 plugins.
3 of them are WPML and we need this for having multilingual functionality.
The other 2 I disalbed but it still does not work.
Could it be, that this section is corrupted? And if yes, what coud be the reason for that it is corrupted…
Best regards
MikeHi Yigit
Very good. I will give you feedback when the fix of the plugin is here.
Best regards
MikeHi Mike
We added a color section, there you can see the problem.
As you see on the screenshots in the private content section, we deactivated it for all screens. But it is shown on all screens.Then on desktops it looks fine, on mobile it looks very ugly ;-)
It looks like the settings do not have any effect…
Best regards
MikeHi Yigit
Still waiting for the fix of the plugin.
I will contact you, if this does not help ;-)
Thanks vey much.
Best regards
MikeHi Yigit
We looked into the plugins and if we deactivate this plugin, it works:
Enhanced Media Library (https://wpuxsolutions.com/plugins/enhanced-media-library)
It seems, that there is a conflict with Enfold:
https://wordpress.org/support/topic/enfold-theme-conflict/
But we don’t know, if the fix will also fix ou problem.
Let’s wait for the fix.
Thanks very much.
Best regards
MikeHi Yigit
Ok, I will do that.
I think, you can close this issue, when Enfold fixed this problem ;-)
Best regards
MikeHey Yigit
So, the first file (enfold/framework/php/class-megamenu.php) I already edited.
For what the file enfold/functions-enfold.php should be edited?
Should I do this also?
Cheers
MikeHi Yigit
Thanks for your response.
It works fine ;-)
You can close this issue.
Best regards
MikeHi Victoria
Ah ok. I thought, this was an Enfold file (events_upcoming.php), that’s why I thought, you could enhance it in a later release ;-)
But it’s no problem. It works with this modification, so we are still happy ;-)
You can close this issue.
Best regards
MikeHi Victoria
Okey.
So, it would be nice, if Enfold could implement the possibility to show the additional info (is an extensions of The Events Calendar PRO) there ;-)
Until then we would do it like this ;-)
Best regards
MikeHey Victoria
We add this code in the function shortcode_handler, line 276. Here the whole foreach in there:foreach( $entries as $index => $entry ) { $class = 'av-upcoming-event-entry'; $image = get_the_post_thumbnail( $entry->ID, 'square', array( 'class' => 'av-upcoming-event-image' ) ); $class .= ! empty( $image ) ? ' av-upcoming-event-with-image' : ' av-upcoming-event-without-image'; $title = get_the_title( $entry->ID ); $link = get_permalink( $entry->ID ); $post->ID = $entry->ID; //temp set of the post id so that tribe fetches the correct price symbol $price = tribe_get_cost( $entry->ID, true ); $venue = tribe_get_venue( $entry->ID ); /* ADDED FOR INFOS - START */ $additional_fields = tribe_get_custom_fields(); if ($additional_fields['Infos']) { $infos = $additional_fields['Infos']; } else { $infos = " "; } /* ADDED FOR INFOS - END */ $post->ID = $default_id; $event = ''; $event .= "<a href='{$link}' class='{$class}'>"; if( $image ) { $event .= $image; } $event .= "<span class='av-upcoming-event-data'>"; $event .= "<h4 class='av-upcoming-event-title'>{$title}</h4>"; $event .= "<span class='av-upcoming-event-meta'>"; /* ADDED FOR INFOS - START */ if ($infos) $event .= "<span class='av-upcoming-event-infos'><strong>{$infos}</strong></span>"; /* ADDE FOR INFOS - END */ $event .= "<span class='av-upcoming-event-schedule'>" . tribe_events_event_schedule_details($entry) . "</span>"; if( $price ) { $event .= "<span class='av-upcoming-event-cost'>{$price}</span>"; } if( $price && $venue ) { $event .= ' - '; } if( $venue ) { $event .= "<span class='av-upcoming-event-venue'>{$venue}</span>"; } $event .= apply_filters( 'avf_upcoming_event_extra_data', '', $entry ); $event .= '</span>'; $event .= '</span>'; $event .= '</a>'; /** * Allows to change the output * * @since 4.5.6.1 * @param string $event * @param array $entries WP_Post * @param int $index * @return string */ $output .= apply_filters( 'avf_single_event_upcoming_html', $event, $entries, $index ); }
The added code is between the two “ADDED FOR INFOS – START” and “ADDED FOR INFOS – END”
Best regards
MikeHi Victoria
Very good!
So, you can close this issue.
Thanks very much.
Best regards
MikeHi Victoria
After some researchs, I think, we found the solution.
If we use this code, it seems to work:.single-post .avia-post-nav { display: none!important; }
Then, the post navigation only seems to come on portfolio entries, but not on normal posts.
I hope, this code does not crash other things? What do you think?
Best regards
MikeHi Victoria
See the details in the private content section.
We like to have only on the portfolio entries the post naigation, but not on the normal posts. Is this possible?
Thanks very much.
Best regards
MikeHi Yigit
Thanks very much. Who knows, perhaps it will be integrated sometime ;-)
You can close this issue.
Thanks very much.
Best regards
MikeHI again
It was a code error, a comment was not closed so the code was in comment.
You can close this issue.
Best regards
MikeHi Nikko
Thanks very much. It works.
You can close this issue.
Best regards
MikeHi Mike
It works. Thanks very much.
You can close this issue.
Best regards
Mike -
AuthorPosts