Forum Replies Created
-
AuthorPosts
-
Hey jonrouse,
The quick css is stored in the css file (dynamically generated by Enfold – ) or in the datatbase. I’d recommend to extract the data from the database – use a tool like phpmyadmin to access the database, click on the “search” tab at the top, insert “quick_css” into the search field (without the quotes) and select search “all tables”. Then click “OK”.
The search should return at least one result in the “wp_options” table, open it and you’ll find the css code :)
Best regards,
DudeAugust 6, 2018 at 5:29 pm in reply to: /blog/ -> endless redirect but blog entries are reachable #994000Hi,
Still a strange issue but glad we found a solution :)
Best regards,
DudeAugust 6, 2018 at 5:28 pm in reply to: PARSE ERROR: class-avia-font-management-base.php on line 429 #993999Hey deckerwinters,
Überprüfe bitte, ob unterschiedliche Server-Konfigurationen (htaccess, php.ini, etc.) mit den Domains verbunden sind. Manche Hoster bieten diese Konfigurationen per Domain an, dh könnte zB für die de-Domain eine “alte” PHP-Version konfiguriert sein, für die .net eine neue, wodurch dann dieser Fehler ausgelöst wird.
LG,
DudeHey!
Schön, dass es geklappt hat :)
LG,
PeterHi,
Wenn Du kein Child Theme hast, kannst Du gerne auch die functions.php von Enfold ändern und den Code einfach ganz am Ende einfügen. Der Nachteil: sobald ein Update installiert wird, überschreibt WordPress die Theme-Dateien wieder und Du musst die functions.php neu anpassen.
Ich würde daher empfehlen entweder auf ein Child Theme umzusteigen oder (einfach) ein kleines Plugin zu erstellen. Verwende hierfür diesen Code:
<?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 */ add_filter( 'avia_contact_form_elements', 'avia_translate_cf_captcha', 10, 1 ); function avia_translate_cf_captcha($elements) { if(!empty($elements['avia_age'])) { $elements['avia_age']['label'] = 'Bitte lösen Sie die Gleichung.'; } return $elements; }
und speichere diesen in eine Datei mit der Endung .php (zB enfold_anpassungen.php).
Diese Datei lädst Du dann in den Ordner wp-content/plugins/ hoch. Anschließend unter WordPress Admin Panel > Plugins dieses Plugin aktivieren.
LG,
DudeHi,
The tab element (like demonstrated here: https://kriesi.at/themes/enfold-2017/elements/tabs/ ) does not support such a layout. However you can use the “Tab Section” element instead (see https://kriesi.at/themes/enfold-2017/elements/tab-section/ section “Tab Section with Text – Tabs below the section”) which can display the tabs below the content.
Best regards,
DudeHey wil!
Yes, you just need to install wordpress and enfold on your server. Then you can use one of our theme demos ( https://kriesi.at/themes/enfold-overview/ ) as a starting point and replace the demo content with your content or create new pages which fit your requirements. The drag’n’drop template builder is very user friendly and will also create mobile friendly, responsive websites. The documentation: https://kriesi.at/documentation/enfold/ will help you in most cases – if not you can contact us via support forum: https://kriesi.at/support/
Cheers!
PeterHi Charlotte!
You can use this code to show the social icons (add it to the child theme style.css or quick css field):
@media only screen and (max-width: 479px){ .responsive #top #wrap_all #header .social_bookmarks, .responsive #top #wrap_all #main .av-logo-container .social_bookmarks { display: block !important; } } @media only screen and (max-width: 767px){ .responsive #top #wrap_all .logo img { width: 75%; } }
Cheers!
PeterHi,
In this case you need to hire a developer to debug the code of the plugin and the theme step by step to find the conflicting scripts. If the developer comes to the conclusion we must/should change some scripts on our end please inform us and we’ll include these changes with the next theme update.
Best regards,
DudeHi,
I’d convert the svg file to a png image. You can use a converter like https://svgtopng.com/
Best regards,
DudeHi,
Um die Thumbnailgröße anzupassen, musst Du das Standardtemplate von WooCommerce per Child Theme überschreiben. Lade diese Datei herunter https://raw.githubusercontent.com/woocommerce/woocommerce/master/templates/content-widget-product.php und speichere diese als content-widget-product.php. Dann öffne diese und ersetze
<?php echo $product->get_image(); ?>
mit
<?php echo $product->get_image('widget'); ?>
und speichere die Datei. Dann lade diese per ftp in den Child Theme Ordner hoch und zwar unter wp-content/themes/enfold-child/woocommerce/templates/).
LG,
DudeHey Nik,
Please try this code:
function avia_unregister_taxonomy(){ global $wp_taxonomies; $taxonomy = 'portfolio_entries'; if ( taxonomy_exists( $taxonomy)) unset( $wp_taxonomies[$taxonomy]); } add_action( 'init', 'avia_unregister_taxonomy', 30); // portfolio args add_action( 'init', 'init_reg_portfolio', 50 ); function init_reg_portfolio() { add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod', 50, 1); $tax_args = array( "hierarchical" => true, "label" => "Hall of Fame Categories", "singular_label" => "Hall of Fame Category", "rewrite" => array('slug'=>_x($permalinks['portfolio_entries_taxonomy_base'],'URL slug','avia_framework'), 'with_front'=>true), "query_var" => true ); $avia_config['custom_taxonomy']['portfolio']['portfolio_entries']['args'] = $tax_args; register_taxonomy("portfolio_entries", array("portfolio"), $tax_args); } add_action( 'after_setup_theme', 'init_reg_portfolio' ); function avf_portfolio_cpt_args_mod($args) { $labels = array( 'name' => _x('Hall of Fame', 'post type general name','avia_framework'), 'singular_name' => _x('Hall of Fame Entry', 'post type singular name','avia_framework'), 'add_new' => _x('Add New', 'portfolio','avia_framework'), 'add_new_item' => __('Add New Portfolio Entry','avia_framework'), 'edit_item' => __('Edit Portfolio Entry','avia_framework'), 'new_item' => __('New Portfolio Entry','avia_framework'), 'view_item' => __('View Portfolio Entry','avia_framework'), 'search_items' => __('Search Portfolio Entries','avia_framework'), 'not_found' => __('No Portfolio Entries found','avia_framework'), 'not_found_in_trash' => __('No Portfolio Entries found in Trash','avia_framework'), 'parent_item_colon' => '' ); $args['labels'] = $labels; return $args; }
and replace:
'name' => _x('Hall of Fame', 'post type general name','avia_framework'), 'singular_name' => _x('Hall of Fame Entry', 'post type singular name','avia_framework'),
with your custom text. To change the url slugs go to Settings > Permalinks and enter custom slugs into the “Portfolio Items Base” and “Portfolio Categories Base” setting fields. However be careful – you must not use slugs which are already used by posts or pages.
Best regards,
DudeHey Rustybucket,
I checked the code and probably you need to replace the xlink:href attribute with href. At the moment your links look like:
<a xlink:href="#toggle-id-3"><path class="org_s_3" d="M28.48,277.56A180.55,180.55,0,0,1,69.84,38.78L70,39c17,25,38,43,55,68a331.19,331.19,0,0,1,28,49.73c-14.69,11.79-29.6,23.7-45,36.27C77.07,218.08,51.74,246.66,28.48,277.56Z"></path></a>
and they should look like:
<a href="#toggle-id-3"><path class="org_s_3" d="M28.48,277.56A180.55,180.55,0,0,1,69.84,38.78L70,39c17,25,38,43,55,68a331.19,331.19,0,0,1,28,49.73c-14.69,11.79-29.6,23.7-45,36.27C77.07,218.08,51.74,246.66,28.48,277.56Z"></path></a>
Best regards,
DudeAugust 5, 2018 at 2:32 pm in reply to: Changes to Theme Options are not visible – caching issue? #993681Hi,
Did you try to activate the wpengine cache in the wp-config.php file and to purge the cache manually: https://wpengine.com/support/cache/ (hosted on WPengine)
Best regards,
DudeHi,
ich habe jetzt mal zum Ausprobieren den CSS-Code eingefügt. Jetzt sind aber drei schwarze kleine Striche jeweils zwischen den Links “Startseite”, “Impressum” und “Datenschutzerklärung”. Die möchte ich nicht haben. Da sollen überhaupt keine Elemente zwischen den ausgerichteten drei Links sein.
Ich konnte keine schwarze Striche sehen – wurde das Problem gelöst? Falls nicht, probiere bitte einmal den Browser Cache zu leeren.
Die Schriftgröße kann mit folgenden Code verändert werden:
#top #socket a, #top #socket div{ font-size: 13px; }
Natürlich kann der Wert 13px auch abgeändert werden :)
Die Farbe des Socket kann mit folgenden Code angepasst werden:
#top.page-id-22 .socket_color { background-color: #59e778; }
Wichtig ist, dass der Page ID Wert (im Beispiel 22) je nach Seite angepasst wird, zB hier https://meyerhuber-wondratschek-archiv.de/impressum/ wäre der Wert 83 (#top.page-id-83). Der Farbwert #59e778 kann natürlich auch unterschiedlich gesetzt werden. Der Code für zwei Seiten würde daher so aussehen:
#top.page-id-22 .socket_color { background-color: #59e778; } #top.page-id-83 .socket_color { background-color: #ff0000; }
Wenn Ihr Hilfe beim Auffinden der Page ID braucht empfehle ich dieses Plugin: https://wordpress.org/plugins/wpsite-show-ids/
LG,
DudeHi,
This is not really a bug because woocommerce does not use the schema.org markup anymore but a new format to structured product data called JSON/LD. Thus they can remove the schema.org markup from the title without affecting seo or crawling of the website. However if you want to use both markups for products you need to add it manually again ;)
Best regards,
DudeHey Sergio,
No, unfortunately this is a restriction of mobile browsers to avoid unwanted content and to save data traffic. The user must start the playback manually and can decide if he wants to start the stream or not. If you search the web for “mediaelement autoplay mobile” you’ll find some articles about this issue like https://stackoverflow.com/questions/9075520/how-to-autoplay-html5-mp4-video-on-android or https://stackoverflow.com/questions/42160528/html5-autoplay-video-in-mobile-device#answer-42161532 or https://bitmovin.com/play-not-play-new-autoplay-policies-safari-11-chrome-64/
Best regards,
DudeAugust 5, 2018 at 12:54 pm in reply to: Probleme mit Bilddarstellung in Farb-Section-Umgebung #993666Hi,
I think the problem is the background position. Please set it to “Top Center” (screenshot: http://www.clipular.com/c/6609199258402816.png?k=4hhtZCSZnDTLVXZip8G8P38TnDw ). Probably you also need to change the image a bit otherwise the menu will overlap the text “Das Archiv”. I’d edit the image and shift the text down a bit.
Best regards,
DudeHi,
Can you post a link to the clock/page please? We need to check the code first.
Best regards,
DudeAugust 5, 2018 at 12:35 pm in reply to: av_postcontent shortcode provides non parsed shortcodes of layout builder #993660Hi,
Great, glad I could help you :)
Best regards,
DudeHi,
This is not a theme issue but you can replace the default woocommerce template with a child theme. Download this file https://raw.githubusercontent.com/woocommerce/woocommerce/master/templates/single-product/title.php and save it as title.php. Then open up the file, replace:
the_title( '<h1 class="product_title entry-title">', '</h1>' );
with
the_title( '<h1 class="product_title entry-title" itemprop="headline name">', '</h1>');
save the file and upload it to the child theme folder (folder must be wp-content/themes/enfold-child/woocommerce/templates/single-product/).
Best regards,
DudeHi,
1) You first need to create a page which contains the elements/content you want to include/embed on other pages. Save this page.
2) Then you need to edit the other pages (or posts, portfolio items, etc.) which should display the same content. Add the “Page Content” element to these pages, click on the element and in the popup select the page you created in step 1 from the dropdown (Sreenshot: http://www.clipular.com/posts/6576725597880320?k=GO1uER7vLcN06wrahwWasLZTHkw – here I selected the page “Impressum”). Save these pages – when you view them you’ll notice Enfold replaces the “Page Content” element with the content from the page you selected from the dropdown.
Best regards,
DudeHey Perry,
This css code should do the trick – you can add it to the child theme style.css file or quick css field:@media only screen and (max-width: 989px) and (min-width: 768px){ .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item { display: block !important; } .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item-avia-special { display: none !important; } }
Best regards,
DudeHey kriswilliam,
Go to https://themeforest.net/ and log in (top right corner). Then click on the my account button and go to “Downloads” to download the theme. Alternatively you can go to the theme product page ( https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=Zweistein ) and you should see a download button (after the log in).
Best regards,
DudeHi,
Please try this code instead – it will remove the open-mega-a class from the “Menü” button too:
jQuery('.menu-item-mega-parent').trigger('mouseleave'); jQuery('#menu-item-31 a').removeClass('open-mega-a');
Best regards,
DudeHi,
Glad we could help you :)
Best regards,
DudeHi!
Just a side note – basically all recommended plugins should work with Enfold if they’re configured reasonably. The reason why I didn’t recommend some plugins in the thread I created was that these plugins are already featured on the option panel page. I just wanted to feature some more plugins which I’ve also tested and which worked for me too. Personally I’m a big fan of Borlabs Cache at the moment because it was easy to configure and gave me the best results (best loading times, best compression) on my websites but all plugins do a good job. Now I’m testing WP-Rocket and maybe it will perform better than Borlabs Cache – we’ll see.
Best regards,
PeterHi,
To be honest I’ve no idea why the headline behavior is so weird but it seems like something overwrites the title setting of the contact form element. If I create a second element the title setting works, if I delete the first contact form the title of the second contact form suddenly changes. Maybe you added some custom code which hooks into the contact form parameters and changes the title?
I “fixed” it by adding some code to the functions.php file – I also hooked into the contact form parameters and replaced the title with a custom function. Here’s the code:
add_filter('avia_contact_form_args', 'avia_overwrite_contact_form_title', 10, 2); function avia_overwrite_contact_form_title($form_args, $post_id) { if(is_home() || is_front_page()) { $form_args["heading"] = ' <h3>Wir liefern, was Du brauchst.</h3> '; } return $form_args; }
Best regards,
DudeHey marihonaa,
You should be able to do this by using the dynamic_sidebar_params filter (see https://wordpress.stackexchange.com/questions/136284/insert-custom-content-before-widget-title-after-widget-opening-tag ) but without additional information (sidebar name, widget id, etc.) we can’t provide a working code.
Best regards,
DudeHey deiby,
1. The google map that goes black, can be changed by the normal google or you can put an iframe.
You can configure the styling of the map (saturation, colors, etc.) for each map by using the advanced layout builder or shortcode parameters.
2. Enfold demos all, the menu cart can be changed to another icon. And put more icons of social networks.
Yes you can add more social icons and change the menu cart icon. Depending on your requirements you may need to customize the theme files (i.e. by using a child theme).
3. The images that appear with numbers and web links can be edited for my product.
Yes you can customize all images and links.
4. On the mobile and the iPad or the Tablet you can see the full page
I’m not sure what you mean here – please elaborate.
5. The area to subscribe to the newsletter is enabled to capture subscriptions or is just a non-functional example.
Yes it’s a mailchimp form and will send the data to mailchimp.
6. Your web template has the gpdr of the European Union, or have not yet updated it.
The demo does not demonstrate the gpdr features yet (it would be irritating for users from non EU-countries).
7. To change the colors of the template you have the option for the engine or it is only for the leaves of waterfalls.
Yes you can select the color scheme in the theme options panel.
8. That I need the enfold demo, but with the layer slider 2d. the question is if when you download the web template and install the demo I can get that component.
I’m not sure if I understood your question but LayerSlider is bundled with Enfold and of course you can use the slider and its features.
Best regards,
Dude -
AuthorPosts