Forum Replies Created
-
AuthorPosts
-
August 10, 2018 at 2:41 pm in reply to: Responsive Design nur für News- Beiträge aktivieren? #996001
Hey Vera,
Dies ist meines Wissens nach leider nicht einfach möglich, da diese Masonry-Anpassungen nur beim Responsive Design erfolgen.
LG,
DudeHey Christopher,
I solved this for you. The trick is to use absolute urls for your menu links, i.e. instead of:
#contact
you need to use
etc.
Best regards,
DudeHey reamisag,
Please create us an admin account and we’ll look into it.
Best regards,
DudeAugust 10, 2018 at 2:29 pm in reply to: Disabling Next/Prev. navigation arrows for "Porftfolio Items" #995992Hi!
Great, glad it works now :)Regards,
PeterHi,
Please try to add this code to your child theme functions.php to remove the “Blog” link from 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; }
If you want to remove the “resources” link too you can try this code:
add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 ); function avia_breadcrumbs_trail_mod( $trail, $args ) { if ( is_single() ) { unset($trail[1]); unset($trail[2]); } return $trail; }
Best regards,
DudeHey plichart1,
I simply removed the code I gave you here: https://kriesi.at/support/topic/problem-with-bread-crumb-double-display/ and the category is included again :)
Best regards,
DudeHi!
Glad you found a solution :)
Regards,
PeterHi,
We’ll look into it but I can’t promise it will be included with the next update.
Best regards,
DudeAugust 10, 2018 at 10:10 am in reply to: Missing http(s) in URL & IMG src / Removed by Enfold #995886Hi,
Glad you found the problem :)
Best regards,
DudeHi,
Creating this kind of layout is not possible without customizing the templates. It would be possible but requires time intensive coding and is beyond the scope of our support forum.
As a workaround you could build a separate page for each category (based on the template you used for the “Rezepte” page) and then use a plugin like https://de.wordpress.org/plugins/redirection/ to redirect all category urls to these pages.
I.e. you could build a custom page called “Kuchen und Torten”. Make it a child page of “Rezepte”, then the url of this page should be “https://website.com/rezepte/kuchen-und-torten/”. Then redirect the category url “https:/website.com/kategorie/rezepte/kuchen-und-torten/” to “https://website.com/rezepte/kuchen-und-torten/” and the website visitors will only see this page.
Best regards,
Dude- This reply was modified 6 years, 3 months ago by Dude.
Hi,
I tried to reproduce this issue but when I click on the poster only the lightbox opens and shows the poster image: https://screenshots.firefox.com/RupGkFs5XBeg4mH0/www.sonumishra.com . Around the image there’s just the dark overlay and no other images except the X to close the lightbox. Can you describe the issue and elaborate please?
Best regards,
DudeHi,
This issue is caused by the wp touch plugin which is not required for Enfold (Enfold is already responsive and you don’t need an extra plugin for mobile devices). I deactivated it and now your website looks like the screenshot https://www.dropbox.com/s/ghi5k40qkz9azg6/Desktop%20version.jpg?dl=0 on mobile devices too.
Best regards,
DudeHi,
I now solved this issue by adding a custom id to the footer section (ID = footer_section) and then I added this css code to the quick css field:
#footer_section + div { display: none; }
to hide the content + sidebar area below the footer section.
Best regards,
DudeHi,
Please excuse the late reply – we overlooked it.
1) You can use following css code to change the color of the green box. Just insert it into the quick css field or child theme style.css:
#top #wrap_all div.woocommerce-message { border-color: #8BAF5B; background-color: #E0F1B5; color: #4F5F39; }
and change the color values.
2) Use this code to change the back to shop cart url:
/** * Changes the redirect URL for the Return To Shop button in the cart. * * @return string */ function wc_empty_cart_redirect_url() { return 'http://virtualbewerbung.de/?page_id=1176'; } add_filter( 'woocommerce_return_to_shop_redirect', 'wc_empty_cart_redirect_url' );
and replace 1176 with the ID of the page you want to redirect to.
You can insert it into the functions.php file of your child theme. If you don’t use a child theme I’d recommend to create a small plugin, otherwise the code will be removed on every theme update.
You can use this code for the plugin:
<?php /* Plugin Name: Enfold Anpassungen Description: Anpassungen des Enfold Codes Version: 1.0 Author: InoPlugs Plugin URI: https://inoplugs.com Author URI: https://inoplugs.com */ /** * Changes the redirect URL for the Return To Shop button in the cart. * * @return string */ function wc_empty_cart_redirect_url() { return 'http://virtualbewerbung.de/?page_id=1176'; } add_filter( 'woocommerce_return_to_shop_redirect', 'wc_empty_cart_redirect_url' );
– replace the ID 1176, then save it to a text file with the extension .php (i.e. enfold_anpassungen.php).
Then upload this text fiele to wp-content/plugins/. Afterwards go to the wordpress admin panel > Plugins and activate the new plugin.
Best regards,
DudeHey kallym,
You can use a plugin like: https://de.wordpress.org/plugins/widget-logic/ to display the widget area(s) only on certain pages, category pages, etc.
If you want to display the widget on portfolio category pages you can use this conditional:
is_tax( 'portfolio_entries' )
If you don’t want to mess around with code you can try this plugin instead: https://de.wordpress.org/plugins/ah-display-widgets/
Best regards,
DudeHi,
Mir sind derzeit keine Fehlermeldungen für “WP Recipe Maker” bekannt, jedoch kann ich eine volle Kompatibilität nicht versprechen. Allgemein bemühen wir uns immer eine Lösung für Drittanbieter-Plugins zu finden, aber manchmal sind die Fehler derart komplex oder zeitaufwendig zu finden/zu beheben, dass wir keine Hilfestellung bieten können.
Zum Wechsel Avada – Enfold: diesbezüglich kann ich leider keine Versprechungen machen, da ich Avada von der Struktur her nicht kenne. Klar ist, dass alle Shortcodes von Avada nicht mit unserem Theme kompatibel sind, da – sobald Avada deaktiviert ist – diese nicht mehr ausgeführt werden. Sofern daher Avada Shortcodes in deinen Seiten eingebettet sind müssen diese durch Enfold Shortcodes ersetzt werden.
LG,
DudeHi,
I think your code won’t work because $plugins_url is not defined as global var. You can try this code instead:
function avia_include_shortcode_template($paths) { global $plugins_url; array_unshift($paths, $plugins_url.'shortcodes/'); return $paths; }
or you define the $plugins_url var inside the function like:
function avia_include_shortcode_template($paths) { $plugins_url = plugin_dir_url( __FILE__ ); array_unshift($paths, $plugins_url.'shortcodes/'); return $paths; }
Best regards,
DudeAugust 9, 2018 at 6:51 pm in reply to: Double "title"-Tags for Products Enfold with Woocommerce #995661Hi,
Glad I could help you :)
Best regards,
DudeHi,
Glad we could help you :)
Best regards,
DudeAugust 9, 2018 at 6:48 pm in reply to: Wrong description on mouse over in previous and next product #995655Hi,
I looked into it and the “PB SEO Friendly Images” plugin causes this issue. If I deactivate it everything works as expected.
I’d recommend to copy the function avia_post_nav (can be found in enfold\functions-enfold.php line 507+) to your child theme. Then contact the plugin author and ask him how you need to edit this line:
$image = isset($entry->av_custom_image) ? $entry->av_custom_image : get_the_post_thumbnail($entry->ID, 'thumbnail');
so it doesn’t conflict with the plugin.
Best regards,
DudeHi,
I added following code to the quick css field:
.html_elegant-blog .more-link { display: block; text-align: left; margin-top: 10px; }
to shift the read more link to the next line. You can see it i.e. here: https://www.idt.pf/actualites/actualites-clients/
Best regards,
DudeAugust 9, 2018 at 3:23 pm in reply to: Service Unavailable The server is temporarily unable – 503 Service Temporarily #995531Hi,
Ok, I’ll leave this thread open for now.
Best regards,
DudeHi,
I wasn’t able to reproduce this issue on my Win10 PC and notebook with IE or MS Edge but I’ll leave this thread open for the other support members – maybe they can reproduce it and can give you some hints.
Best regards,
DudeHey Caleb Shultz!
Unfortunately there’s no unlimited license for all Kriesi themes. However you can buy all other themes at themeforest: https://themeforest.net/user/kriesi/portfolio
Regards,
PeterHey steviger,
Please post a link to your website and we’ll check the css code.
Best regards,
DudeHey Kanzleramt,
It seems like you’ve activated the css compression setting (Enfold > Theme Options > Performance). This option will merge and compress all theme css files including the child theme style.css. You can deactivate the option if you want to debug the source code or open the style.css directly in your browser.
Best regards,
DudeHey!
OK after reading the details here: https://de.wordpress.org/plugins/snazzy-maps/ I’m not sure if Snazzy Maps is compatible with our map element. If not you can try to install a third party plugin which is compatible with Snazzy Maps.
Regards,
PeterHey!
I’m not familiar with Snazzy but you’ll probably get an iframe code from Snazzy. You can use the “Code Block” element to embed the map into your advanced layout. If you’re using a standard post/page (without the Advanced Layout editor) please switch to the “Text” editor and paste your code into the editor field.
Regards,
PeterHi!
Bitte nützte einfach das Private Content Feld weiter unten. Andere Kunden können Deine Daten dann nicht sehen und nur Moderatoren haben Zugriff darauf.Cheers!
Peter -
AuthorPosts