Forum Replies Created
-
AuthorPosts
-
Hey!
I marked this thread for Kriesi.
Regards,
PeterHi!
I tried to login with the credentials you posted here: https://kriesi.at/support/topic/wrong-portfolio-in-widget/#post-225410 but I get an error “ERROR: Incorrect username or password.”.
Regards,
PeterHey!
You’re using 2.5. The latest version is 2.5.2.
Regards,
PeterHey!
CDNs help you to improve the page speed because the client (browser) can download the website files (css, js, images, etc.) from multiple servers (often with a better bandwidth) and because of the simultaneous downloads the loading speed of your website may increase. However the setup isn’t always easy and good CDNs are expensive. Thus it’s imo not always a good idea to use a cdn – especially for small businesses or small websites (= low data traffic).
Regards,
PeterHey!
You can use the “avf_markup_helper_attributes” filter (can be found in wp-content/themes/enfold/includes/helper-markup.php) to add new attributes to the markup output. The $args variable contains all necessary parameters like context, post type, etc. and imo you don’t need to replace the avia_markup_helper function with a custom function. However if you’re not familiar with the concept and/or usage of filters please hire a freelancer.
Cheers!
PeterHi!
If the translation file doesn’t work try to insert this code at the very end of enfold/functions.php. You can also place it in your child theme functions.php file:
add_filter('avia_breadcrumbs_args','avia_remove_breadcrumb_before', 10, 1); function avia_remove_breadcrumb_before($args) { $args['before'] = 'U bevindt zich hier:'; return $args; }
Regards,
PeterHey theroyalvideographer!
1) I’m not sure which social bookmarks plugin you use at the moment but please try: http://wordpress.org/plugins/simple-share-buttons-adder/ – I know some users already use it with Enfold without any issues. You can even use it for advanced share buttons (post slider, etc.: https://kriesi.at/support/topic/add-share-buttons-to-postslider-php/ ).
2) Can you post a link to the comment form? I need to investigate the css code.
Regards,
PeterHi!
O, I’ll close this thread. Please create a new thread if necessary.
Best regards,
PeterHey!
Please create me an admin account – I’ll check the configuration. When I use the login credentials here: https://kriesi.at/support/topic/post_gallery-filter/#post-214021 I just get a white screen.
Regards,
PeterHi aquatucker!
Insert this code into your functions.php file:
add_filter('avf_logo_subtext', 'kriesi_logo_addition'); function kriesi_logo_addition($sub) { $sub .= "<strong class='logo-title'>My Text</strong>"; $sub .= "<strong class='logo-title logo-subtitle'>Another custom text line</strong>"; return $sub; }
and replace the “My Text” text and “Another custom text line” with your custom text. Then insert this code:
#top .logo-subtitle { color: #aaa; top: 7px; } #top .logo-title { transition: opacity 0.4s ease-out; -moz-transition: opacity 0.4s ease-out; -webkit-transition: opacity 0.4s ease-out; -o-transition: opacity 0.4s ease-out; font-size: 12px; color: #000; position: absolute; left: 7px; top: -7px; opacity: 1; white-space: nowrap; } #top .subtext { float: left; position: relative; } #top .header-scrolled .logo-title { opacity: 0; filter: alpha(opacity=0); }
into the quick css field.
Cheers!
PeterHey!
It’s the page title. It should change on every page (i.e. see the demo: http://kriesi.at/themes/enfold/features/ ) but maybe a plugin or some custom code overwrites/breaks the title. Please try to deactivate all plugins and check if this solves the issue. If yes activate the plugins one by one to find the culprit.
Best regards,
PeterHi!
I added a hidden feature in the post to support nofollow links. Insert this code into the child theme functions.php
add_theme_support('avia_rel_nofollow_for_links');
and then you can select the “nofollow” option when you choose “Link” – “Set Manually”.
Regards,
PeterHey!
Yes this is possible. If you want to embed a html5 video use the video shortcode: https://codex.wordpress.org/Video_Shortcode – it looks like:
[video mp4="source.mp4" ogv="source.ogv" mov="source.webm"]
and you just need to replace source.mp4, source.webm and source.ogv with the urls to your video files. If you want to embed a youtube/vimeo video use the embed shortcode: http://codex.wordpress.org/Embeds
[embed] http://www.youtube.com/watch?v=dQw4w9WgXcQ [/embed]
and instead of http://www.youtube.com/watch?v=dQw4w9WgXcQ insert the url to your video.
Cheers!
PeterHey Gstar72!
Please update your theme to the latest version (2.5.2) and clear your browser cache. This way we can be sure that it’s not a bug in a old theme version.
Cheers!
PeterHi nokostudio!
Maybe Enfold can’t regenerate the dynamic stylesheet. Please use a ftp client and connect to your server. Navigate to wp-content/uploads/dynamic_avia/ and set the folder permission to 777. Then delete the enfold.css file and go to Enfold > Theme Options to regenerate the dynamic stylesheet (hit the green “Save all changes” button).
Regards,
PeterFebruary 19, 2014 at 9:23 am in reply to: price range for variable products on woocommerce shop page #226046Hi!
I recommend to add it at the very bottom of functions.php.
Regards,
PeterHi!
Stimmen die Daten wirklich – wenn ich diese eingebe kommt die Fehlermeldung ” Falscher Benutzername” und es scheint, als ob der Benutzer “Enfold” nicht existiert.
Regards,
PeterHey!
Füge diesen Code in das Quick CSS Feld ein:
#socket .container { padding: 15px 0; }
und ersetze 15px durch einen kleineren Wert – zB 10px.
Best regards,
PeterHi pgps!
Open up engold/functions-enfold.php and replace:
$items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"><a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'></a></li>';
with
$items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"><a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'>Search</a></li>';
Best regards,
PeterHi!
Ich würde grundsätzlich davon abraten den Banner so zu platzieren, da beim responsive Design es zu unschönen Darstellungsfehlern kommen kann, wenn der Banner außerhalb der Content Area bzw Sidebar angezeigt wird. Wenn du es trotzdem machen möchtest besteht zB die Möglichkeit das Banner Widget mit position:absolute; oder position:fixed; zu platzieren (um es aus dem Content Bereich zu ziehen) und dann kann man mit top/left Angaben die genaue Position bestimmen. Genaue Hilfestellung (mit CSS Code, etc.) kann ich nur geben, wenn ich mir die Website samt Banner Widget ansehen kann.
Best regards,
PeterHi!
If you want to remove the “Home” link complete try this code instead:
add_filter('avia_breadcrumbs_args', 'avia_change_home_breadcrumb', 10, 1); function avia_change_home_breadcrumb($args){ $args['show_home'] = false; return $args; }
Cheers!
PeterFebruary 19, 2014 at 9:03 am in reply to: Product descriptions disappeared from front end of site #226029Hi!
Great :)
Cheers!
PeterHey!
I think the minify plugin (maybe W3TC) breaks wpml because I get a js error: “Uncaught ReferenceError: icl_vars is not defined ” and this js error also breaks the “smooth scroll” script. Please try to deactivate the javascript minify feature on the W3TC options page and check if this fixes the issue.
Regards,
PeterHey!
Afaik there’s no api for the slider controls but you can use the trigger() function: https://api.jquery.com/trigger/ to simulate an click event if someone uses your external controls. You can try this code (insert it at the bottom of enfold/js/avia.js):
(function($){ $( ".my-custom-next" ).on( "click", function() { $( ".next-slide" ).trigger( "click" ); }); $( ".my-custom-prev" ).on( "click", function() { $( ".prev-slide" ).trigger( "click" ); }); })( jQuery );
and instead of “my-custom-prev” and “my-custom-next” insert the css classes of your external next/prev control buttons.
Cheers!
PeterHi!
You can use the “Duplicate” button but then click the “Translate independently” button to make sure that the “original” entry is not connected to the translated entry. Afterwards you can simply switch to the “Advanced Layout Editor” (Enfold will convert the shortcodes to elements automatically) and then you need to go through your elements to translate them. Make sure that:
1) Blog Elements, Portfolio Grids, etc. use the right categories – every language uses different/translated categories with different ids and you can’t simply query the original categories
2) all images/attachments are correct. Afaik WPML allows you to translate the image/meta data of attachments too and this may change the id of an attachment in the database if you switch to another language because every translation has an unique id.
Cheers!
PeterHi!
Ich konnte diesen Text in den Sprachdateien nicht finden. Versuche einmal alle plugins zu deaktivieren (außer WooCommerce) und aktiviere diese nacheinander um jenes Plugin zu finden, welches diesen Text ausgibt.
Cheers!
PeterHey!
Afaik it’s not possible but I tagged this thread for Kriesi in case he knows a solution.
Regards,
PeterFebruary 19, 2014 at 8:31 am in reply to: Product descriptions disappeared from front end of site #226009Hey!
It seems like this code in your quick css field (Enfold > Theme Options > Styling):
.product-sorting, .product .woocommerce-tabs, .related.products { display: none; }
hides the tabs. If you want to show them replace it with this code:
.product-sorting, .related.products { display: none; }
Regards,
PeterHey ceubri!
Try to insert this code at the bottom of functions.php
add_filter( 'post-format-standard', 'avia_category_content_filter', 15, 1); function avia_category_content_filter($current_post) { global $avia_config; global $more; $more_bak = $more; if(!is_single() && empty($current_post['text_before'])) { $more = 0; $current_post['content'] = get_the_content(__('Read more','avia_framework').'<span class="more-link-arrow"> →</span>'); $more = $more_bak; } return $current_post; }
Cheers!
PeterHi!
I can’t find the “Nyheder” pages in the menu – did you remove these pages?
Cheers!
Peter -
AuthorPosts