Forum Replies Created
-
AuthorPosts
-
Hi,
Perfect – glad I could help you :)
Best regards,
DudeHi,
Perfect – glad I could help you :)
Best regards,
DudeHi,
Perfect – glad I could help you :)
Best regards,
DudeJuly 17, 2018 at 6:57 pm in reply to: Abstände der Blog-Artikel in Mobile-Ansicht unterschiedlich! #986574Hi,
Dbzgl verwende bitte folgenden CSS Code:
@media only screen and (max-width: 767px){ #top #wrap_all .avia-content-slider .slide-entry-wrap { margin-bottom: 0; } }
Best regards,
DudeHey leblib,
Unfortunately this requires time-intensive changes to the theme code and the default wordpress search engine. You could try advanced search plugins like WPSearch as a starting point and if necessary you can hire a freelancer here: https://codeable.io/
Best regards,
DudeHey rezaies,
Yes, you can change the order of the arrows by adding this code to your child theme functions.php file:
add_filter( 'avia_post_nav_entries', 'enfold_customization_postnav', 10, 2); function enfold_customization_postnav($entries, $settings) { $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); return $entries; }
Best regards,
DudeHi,
Great, I’ll close this thread.
Best regards,
DudeJuly 17, 2018 at 6:33 pm in reply to: Abstände der Blog-Artikel in Mobile-Ansicht unterschiedlich! #986552Hey sala9552,
Das Problem wird durch die unterschiedlich langen Überschriften verursacht. Ich würde daher empfehlen, für die Überschriften eine Minimalhöhe zu setzen, damit der darunterliegende Inhalt immer “auf derselben Höhe” anfängt. Füge hierzu diesen Code in das Quick CSS Feld oder in die Child Theme style.css ein:
#top #wrap_all .all_colors .slide-entry-wrap h3 { min-height: 72px; }
Natürlich kannst Du den Wert 72 auch durch einen höheren Wert ersetzen (falls zB die Überschriften noch länger werden sollten).
Best regards,
DudeHey CanopyLandHoldings!
Yes please create us a wordpress admin and ftp account and post the login credentials – we’ll look into it asap.
Regards,
PeterHi Beat Brugger!
Can you please post your user name, e-mail address and purchase code you used to register? You can use the private content field to hide the information for other forum users. We’ll then search for your user account. Probably the e-mail address in our database is invalid (i.e. typo).
Best regards,
PeterHi,
Great, glad I could help you :)
Best regards,
DudeHi,
1) You can change the order of the arrows by adding this code to your child theme functions.php file:
add_filter( 'avia_post_nav_entries', 'enfold_customization_postnav', 10, 2); function enfold_customization_postnav($entries, $settings) { $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); return $entries; }
2) To be honest this is not easily possible because the styling of the arrows is optimized for the far left/right of the browser. If you really want to change the position you can use this code (add it to the quick css field):
#top #wrap_all .avia-post-prev { left: 100px; } #top #wrap_all .avia-post-next { right: 100px; }
You can replace 100 with a lower or higher value to change the position (higher values shift the arrows towards the center).
Best regards,
DudeHey!
I found the culprit – the “Simple Custom Post Order” plugin which runs on your website breaks the get_next_post() and get_previous_post() functions. As soon as I deactivate the plugin the arrows work as intended. I’d suggest to contact the plugin author because both functions are standard wordpress functions and this seems to be a plugin issue.
Best regards,
PeterHey!
I added this code to your child theme functions.php to adjust the breadcrumb:
add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 ); function avia_breadcrumbs_trail_mod( $trail, $args ) { if ( is_single() ) { unset($trail[1]); } return $trail; }
Best regards,
PeterHi Esther!
Please try this css code – you can add it o the quick css field or child theme style.css file:
#top #wrap_all .breadcrumb .sep { width: 10px; }
Cheers!
PeterHi,
Please try to clear the browser cache. If this doesn’t work go to Enfold > Theme Options > Performance and set the “CSS file merging and compression” setting to “Disable” (this will clear the css cache).
Best regards,
DudeHey DROR,
You can use this code to hide the breadcrumb on mobile devices – add it to the child theme style.css file or to the quick css field:
@media only screen and (max-width: 767px){ #top #wrap_all .breadcrumb { display: none; } }
If you want to hide the breadcrumb on tablets you can replace 767px with a higher value like 1024px.
Best regards,
DudeJuly 17, 2018 at 5:29 pm in reply to: different problems with jQuery scripts after update to 4.4.x #986519Hey elbnetz,
Please check the performance settings (Enfold > Theme Options > Performance). Try to set the option “Javascript file merging and compression” to “Disable” and make sure the option “Load jQuery in your footer” is not checked.
Best regards,
DudeHey tinschn,
Mir ist jedenfalls ein Syntax-Fehler in deinem Code aufgefallen. CSS-Klassen verwenden einen Punkt ( . ) als Selektor und nicht eine Raute ( # ).
Versuche einmal folgenden Code:
.test1 { background-color: transparent!important; margin-top: -150px; margin-left: -150px; z-index: 55; border: none!important; }
Best regards,
DudeHi,
You can add it to enfold/functions.php – just place it at the end of the file.
Best regards,
DudeHi,
Unfortunately you can’t comment this line out with a child theme. You must go through all filters/actions registered in enfold\config-woocommerce\config.php and use remove_action or remove_filter to remove the default Enfold filters/actions. However probably you don’t need to remove all filters/actions but just some of them which conflict with your plugin.
Reference:
https://codex.wordpress.org/Function_Reference/remove_filter
https://codex.wordpress.org/Function_Reference/remove_actionBest regards,
DudeHey ellenyoung,
Unfortunately we’re not able to help you if you can’t use ftp to install the theme (there’s no other solution if wordpress uploads don’t work). We can’t even check the wp-config.php settings without ftp. I’d suggest to contact the web host to get ftp access to your server or to ask the web host support to install the theme for you (maybe with ssh or another protocol).
Best regards,
DudeJuly 16, 2018 at 8:25 pm in reply to: Enfold theme failed to install, "The theme is missing the style.css stylesheet." #986087Hey danowen777,
Please read https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#missing-style-sheet-error
Best regards,
DudeJuly 16, 2018 at 8:22 pm in reply to: Enfold and the "Opt-Out Facebook Pixel (DSGVO / GDPR)" Plugin #986086Hey dasibaer!
Könntest Du das näher ausführen – welche Fehler treten auf?
Best regards,
PeterHi Jiří Najman!
Yes this is possible. We recommend to use WPML for multilingual websites with Enfold.
Cheers!
PeterHey!
Please try this code to limit the next/prev links to the same category/term:
add_filter( 'avia_post_nav_entries', 'enfold_customization_postnav', 10, 2); function enfold_customization_postnav($entries, $settings) { if($settings['type'] == 'portfolio') { $settings['same_category'] = true; $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); } return $entries; }
I tested it on my website and it worked.
Regards,
PeterHey shermski,
I didn’t test the plugin but you can try https://wordpress.org/plugins/remove-taxonomy-base-slug/ to remove the taxonomy slug (in this case “portfolio-items”) from the urls.
Best regards,
DudeHi,
Basilis forwarded your request to Kriesi. Kriesi is very busy at the moment and I can’t promise he’ll reply soon.
Best regards,
DudeHey royaltask,
Wir sind keine Rechtsanwälte und können daher keine Rechtsberatung bieten. Alle Angaben sind daher ohne Gewähr und allenfalls rechtlich zu überprüfen. Mit dem DSGVO-Update haben wir eine Option beim Instagram-Widget eingeführt, um die Daten von Instagram am Server zu cachen. Hierdurch werden unserer Ansicht nach keine personenbezogenen Daten des Website-Besuchers an Instagram übertragen (weil nur der Server mit Instagram kommuniziert) und der Einsatz des Widgets sollte datenschutzrechtlich unbedenklich sein. Um diese Option zu aktivieren gehe auf die Widget-Seite, öffne die Optionen für das Instagram-Widget und wähle bei “Location of your photos or videos:” die Einstellung “Cache on your server – no instagram connection needed on pageload” aus der Liste aus.
LG,
DudeJuly 16, 2018 at 5:57 pm in reply to: Enfold Theme Optionen werden, nach Server Wechsel nicht angezeigt #986019Hi,
Um ehrlich zu sein, konnte ich den Fehler auf den ersten Blick auch nicht finden. Ich bekomme auf der Theme Option Seite die Fehlermeldung “Uncaught ReferenceError: jQuery is not defined”, was darauf hindeutet, dass das jquery Skript nicht richtig geladen wird. Ich würde Folgendes probieren:
1) WordPress Dateien erneut hochladen – vielleicht passt da etwas nicht.
2) Enfold Dateien erneut hochladen – idealerweise im zip Format und dann entpacken, um Übertragungsfehler oder Schreibrechtefehler zu vermeiden.
3) Notfalls die Theme Optionen zurücksetzen, um Datenbank-/Importierungsfehler ausschließen zu können.LG,
Dude -
AuthorPosts