Forum Replies Created
-
AuthorPosts
-
Hi!
Enfold is the first theme which we optimized for rtl languages. You can see i.e a Hebrew rtl website here: http://www.snnlaw.co.il/
Best regards,
PeterHey!
Nein, die Einstellungen sollten nicht gelöscht werden. Wir haben aber einige neue Einstellungen hinzugefügt (Header Settings, etc.) und diese sollte man nach dem Update konfigurieren.
Cheers!
PeterHi!
Ok, we’ll close the thread for now. Feel free to open a new thread if you need help.
Regards,
PeterHi!
If LayerSlider doesn’t work for you I recommend to try Revolution Slider: http://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380. We added a “Fullwidth Revolution Slider” element to the template builder and you can use it like the LayerSlider script.
Regards,
PeterHey!
You can also try this code:
add_action('after_setup_theme','avia_deactivate_google_api',10); function avia_deactivate_google_api() { global $avia_config; $avia_config['g_maps_widget_active'] = 1; }
Best regards,
PeterHey!
Did you try if the video link works with the standard wordpress embed sgortcode ( http://codex.wordpress.org/Embeds )? Please create a textblock and insert the youtube link into it. Maybe you need to wrap it into the embed shortcode like:
[embed width="123" height="456"] http://www.youtube.com/watch?v=fYPBgGi180Q [/embed]
Regards,
PeterHi!
Please create us an admin account and post the login credentials as private reply – we’ll look into it.
Best regards,
PeterHi!
Maybe the php memory limit is too low. Please increase the limit to 128M (128 megabyte). At the moment it’s set to 64M. For more information refer to http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/ and http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Cheers!
PeterApril 14, 2014 at 9:39 am in reply to: Google Maps in Beiträgen – keine Width Angaben möglich #250962Hi adrianwackernah!
Derzeit is kein flexibles Google Map Element in Planung, da die meisten Benützer nur ein “Fullwidth Map” Element wollten und keine Nachfrage nach einer Anpassung bzgl der Weite bestand (soweit ich weiß ist dies der erste Request). Ihr könnt aber gerne hier: https://kriesi.at/support/enfold-feature-requests/ einen Feature Request einbringen und wenn genügend Benützer dafür abstimmen, dann bauen wir es ein. Alternativ könnt ihr ein Plugin wie: http://wordpress.org/plugins/wp-google-maps/ verwenden, welches mittels Shortcodes arbeitet und die Weite flexibel anpassen kann.
Best regards,
PeterHey!
Please ask the plugin author if (and how) you can customize the styling of the Ubermenu plugin.
Best regards,
PeterApril 14, 2014 at 9:31 am in reply to: NextGen Gallery with Enfold background fade with Chrome not working #250959Hey!
Great :)
Cheers!
PeterHey!
I’m pretty sure you can’t get http://hackjacket.staging.wpengine.com/bug-list/ (hosted on WPengine) because wordpress needs some slugs to parse the url. However you can try to change the slugs on the forum option page (Settings > Forums and scroll down to the “Forum Root Slug” options).
Best regards,
PeterHey!
This is not possible without additional code. You can try to use the code someone posted here: http://www.sk23.co.uk/code-snippets/php/highlight-current-post-category-in-wordpress-categories-widget-using-jquery-php/ . In single.php replace:
get_header();
with
get_header(); $post_categories = wp_get_post_categories(get_the_ID()); $script_out = ''; foreach($post_categories as $c): $cat = get_category( $c ); $script_out .= "jQuery('.cat-item-".$cat->cat_ID."').addClass('current-cat');"; endforeach; echo '<script>'.$script_out.'</script>';
and then you can use the current-cat class to highlight the current category like:
#top #wrap_all .current-cat{ color: #ff0000; }
Cheers!
PeterHi!
I think they changed the code with WP3.8. Please try this code instead:
add_filter( 'the_password_form', 'custom_password_form' ); function custom_password_form() { global $post; $label = 'pwbox-'.( empty( $post->ID ) ? rand() : $post->ID ); $o = '<form action="' . esc_url( site_url( 'wp-login.php?action=postpass', 'login_post' ) ) . '" class="post-password-form" method="post">' . __( "You can write your own text here" ) . ' <label for="' . $label . '">' . __( "Password:" ) . ' </label><input name="post_password" id="' . $label . '" type="password" size="20" /><input type="submit" name="Submit" value="' . esc_attr__( "Submit" ) . '" /> </form> '; return $o; }
and replace “You can write your own text here” with your custom text. Ref: http://forum.wpde.org/allgemeines/124403-wp-3-8-passwort-text-aendern.html
Best regards,
PeterHi!
You just need to add the “noLightbox” class to the image links – i.e. replace:
<a href="/domestic-hardwood-sizing-and-pricing" class="price-page-icon"><img class="" alt="" src="/wp-content/uploads/2014/04/1396916310_North_America.png"></a>
with
<a href="/domestic-hardwood-sizing-and-pricing" class="price-page-icon noLightbox"><img class="" alt="" src="/wp-content/uploads/2014/04/1396916310_North_America.png"></a>
Cheers!
PeterHey CobbyNelson!
Please view this tutorial video: https://vimeo.com/67651241 – if it doesn’t answer all of your questions please give us more details about the issues.
Regards,
PeterHi!
Please create us an admin account and post the login credentials as private reply.
Best regards,
PeterHey!
Unfortunately you can’t remove the code with css. CSS Code just hides the date for the user but Google and other search engines can still read it from the html code. If you want to remove the date completely you must modify the php template (like Ismael suggested here: https://kriesi.at/support/topic/remove-date/#post-250669 ). If you don’t want to modify the template every time you update the theme I recommend to place the modified loop-index.php into a child theme (complete path is wp-content/themes/YOURCHILDTHEME/includes/loop-index.php).
Cheers!
PeterHey!
You can add a margin-top to the menu like:
#header_main_alternate { margin-top: 20px; }
Cheers!
PeterHey!
Great, you can also try to use this plugin: http://wordpress.org/plugins/wp-resized-image-quality/ to improve the thumbnail quality.
Cheers!
PeterHi!
You just need to copy the entire avia_woocommerce_frontend_search_params function (located in /config-woocommerce/config.php) into your child theme functions.php file. Then modify the function code there. The child theme file will be loaded first and your custom sort function will overwrite the code in the parent theme files because we wrapped all functions into a function_exists() if statement. If you need help with the code implementation please hire a freelancer. I recommend a platform like: http://studio.envato.com/
Best regards,
PeterHi morgantar!
Since 2.6 Enfold will add flags to the main menu. If you want to display the language shortcode instead of the flag images insert this code into your child theme functions.php file:
if(!function_exists('avia_append_lang_flags')) { //first append search item to main menu add_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 ); add_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 ); function avia_append_lang_flags( $items, $args ) { if ((is_object($args) && $args->theme_location == 'avia')) { global $avia_config, $sitepress; if(empty($avia_config['wpml_language_menu_position'])) $avia_config['wpml_language_menu_position'] = apply_filters('avf_wpml_language_switcher_position', 'main_menu'); if($avia_config['wpml_language_menu_position'] != 'main_menu') return $items; $languages = icl_get_languages('skip_missing=0&orderby=custom'); if(is_array($languages)) { foreach($languages as $lang) { $currentlang = (ICL_LANGUAGE_CODE == $lang['language_code']) ? 'avia_current_lang' : ''; if(is_home() || is_front_page()) $lang['url'] = $sitepress->language_url($lang['language_code']); $items .= "<li class='language_".$lang['language_code']." $currentlang'><a href='".$lang['url']."'>"; $items .= $lang['language_code']; $items .= "</a></li>"; } } } return $items; } }
(alternatively insert the code at the very top of enfold/functions.php after the <?php tag). You can also replace $lang[‘language_code’] with
$lang[‘translated_name’]
or
$lang[‘native_name’]
if you want to display the entire language name (and not just the shortcode).
Best regards,
Peter-
This reply was modified 11 years, 3 months ago by
Dude.
Hi!
1) Ich empfehle die neueste Version des themes von themeforest.net herunterzuladen. Anschließend die zip Datei entpacken und den Theme Ordner mittels ftp auf den Server übertragen. Ein Tutorial Video findet sich hier: https://vimeo.com/channels/aviathemes/67209750
2) Wenn der “Warning: uasort(): Array was modified” Fehler dann noch immer auftritt, empfehle ich folgenden Code in die theme functions.php einzufügen:
error_reporting(0);
Dieser verhindert, dass der Server Warnungen & Fehlermeldungen der WordPress PHP Dateien ausgibt.
Best regards,
PeterHi RalphThiele!
I don’t understand the question – maybe you can post it in German?
Best regards,
PeterHey!
I can’t save a custom css class for special headings . I add the class name, hit save, and after i update the page its gone.
Yes, Kriesi is aware of the bug and will fix it with the next theme update.
Cheers!
PeterHey!
I think this is a worpress bug because several other users reported it in the official forum too: http://wordpress.org/support/topic/images-will-not-post-in-38-writing-size-as-1px-by-1px
I recommend to check if you can reproduce the upload issue with the default wordpress theme (TwentyThirteen or TwentyFourteen) too. If yes it’s definitely a wordpress core or server configuration issue which we can’t fix with the theme code.
Cheers!
PeterHey!
I fixed it. It seems like we can’t use the avia_layout_class() return value directly for the haystack of the strpos() function. I now replaced:
$size = strpos($blog_style, 'big') ? strpos(avia_layout_class( 'main' , false), 'sidebar') ? 'entry_with_sidebar' : 'entry_without_sidebar' : 'square';
with:
$layout = avia_layout_class( 'main' , false); $size = strpos($blog_style, 'big') ? (strpos($layout, 'sidebar') !== false) ? 'entry_with_sidebar' : 'entry_without_sidebar' : 'square';
and it started to work. I’ll ask Kriesi to patch it with the next update.
Cheers!
PeterHi squard!
You can hide the “Types” sort link with CSS Code if necessary. Just insert:
.type_sort_button, .type_sort_sep{ display: none !important; }
into the quick css field. You can replace “type” with the category slug of your “Type” category if necessary.
Unfortunately you can’t deactivate the animation of the masonry grid – it’s a fundamental part of the sort/filter script.
Cheers!
PeterHi!
Are you sure the password is correct? I tried it but I get an error message: “The password you entered for the username choa is incorrect”.
Best regards,
PeterHey!
Please create us an admin account and post the login credentials as private reply. If I can find the problem I’ll fix it; otherwise I’ll ask Kriesi to look into it.
Cheers!
Peter -
This reply was modified 11 years, 3 months ago by
-
AuthorPosts