Forum Replies Created
-
AuthorPosts
-
September 8, 2013 at 7:58 pm in reply to: Accordion: since enfold 2.1 update: Accordion Initial Open Item is not working #140022
Hi!
Following css code is a quick fix – insert it into the quick css field (Enfold > Styling).
.active_tc.toggle_wrap{
display:block;
}Then open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodestoggles.php and replace
$contentClass = "activeToggle";
with
$contentClass = "active_tc";
I’ll ask Kriesi to fix it in the next update.
Best regards,
Peter
Hey!
Please post a link to your website. I tested it on my localhost and online test server and cpts display properly for me: http://www.screenr.com/r9nH
Regards,
Peter
The overview can be found in the first post: https://kriesi.at/support/topic/please-contribute-and-translate-enfold
We’ll include all files in the next update. Eventually I want to set up a glotpress server which allows us to create community driven translation files without merging existing translations, etc.
Hey!
Yes, great idea. Please post +1 if you need this feature too.
Best regards,
Peter
September 8, 2013 at 1:38 pm in reply to: Cannot see the 'Advanced Layout Editor' after uploading online from local host. #140143Hi!
See https://kriesi.at/support/topic/advanced-layout-editor-dissappeared-please-help
Regards,
Peter
September 8, 2013 at 9:39 am in reply to: Removing Next and Previous event hovers from Event Calendar plugin pages only #140120Hey!
Try
#top.single-tribe_events .avia-post-nav {
display: none !important;
}Best regards,
Peter
Actually the “Content Slider” is a “content element” and the “logo/partner slider” a media element. Try to re-upload all theme files and clear your caches (browser, server, etc. caches).
Basically you need to create a taxonomy template for your cpt and then replace
echo avia_title(array('title' => avia_which_archive()));
with
echo avia_title(array('title' => 'MY ARCHIVE TITLE'));
If you want to show the current term zitle in the headline use something like
echo avia_title(array('title' => 'Archive for '. single_term_title("", false)));
You can also try this plugin: http://wordpress.org/plugins/categories-images/
It’s quite easy to implement it in Enfold. Open up archive.php and replace
<div class='content <?php avia_layout_class( 'content' ); ?> units'>
<?phpwith
<div class='content <?php avia_layout_class( 'content' ); ?> units'>
<?php
if (function_exists('z_taxonomy_image_url')) echo '<img src="'.z_taxonomy_image_url().'" />';Enfold does not set the custom post type url/slug automatically and the theme code also does not manipulate the post type urls in any way. You can use the “rewrite” parameter: http://codex.wordpress.org/Function_Reference/register_post_type to change the slug/url.
If you’re not familiar with php/wordpress code I’d suggest to try a plugin like: http://wordpress.org/plugins/types/
Please use Codestyling: http://wordpress.org/plugins/codestyling-localization/ to translat the plugin.
Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and click on “Add new language”. Then select your language from the list and click the “create po-file” button. Click on “Rescan” to fetch all text strings. Then click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner). If you still can’t find the text strings in the generated po file you can use the title filter to change the text. Add following code at the bottom of functions.php
add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
function fix_single_post_title($args,$id)
{
if ( $args['title'] == 'Blog - Latest News' )
{
$args['title'] = 'MY TEXT';
}
return $args;
}and instead of MY TEXT insert your translation.
The other text strings you mentioned ( “Logged in as… Log out?” “Post comment” , etc.) are not part of the theme code and you can’t translate them with the theme po/mo files. You maybe need to update the translation of wordpress ( http://codex.wordpress.org/WordPress_in_Your_Language ) or a plugin adds these text strings to the website – then you must translate the plugin.
Hi!
Could similar code be added to do this for pages that are in the same category?
No, because pages do not support categories. That’s one of the main differences between posts & pages….
Best regards,
Peter
Hey!
No, but Enfold supports another shop plugin http://wordpress.org/plugins/woocommerce/
Best regards,
Peter
Hi!
Please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out) – I’ll look into it.
Best regards,
Peter
September 7, 2013 at 11:05 am in reply to: Toppanel plugin: messed up widgets & widget areas in ENFOLD #139839Actually there’s no real workaround. You can either deactivate the plugin – then the ids will not change and the widgets work as expected or you can activate the plugin but then you need to re-configure all widgets and assign them to the new widget area. It also doesn’t make sense to change the order of the widget areas and to append them at the very bottom because as soon as you create a new “Enfold Custom Widget Area” the ids and the order will change again. However the good news is: as long as the plugin is activated the order of the widgets won’t change again.
Personally I’d drag’n’drop all widgets into the “Inaktive Widgets” area – WordPress then saves the configuration of the widgets. Then activate the plugin and drag’n’drop all widget back into the proper areas…
September 7, 2013 at 11:00 am in reply to: Toppanel plugin: messed up widgets & widget areas in ENFOLD #139837Unfortunately this is not a bug but a wordpress limitation. WordPress saves the position of widgets with ids (the first widget area has the id 1, the second 2, etc.). If you remove a widget area wordpress will re-calculate/re-count all ids and now another widget area has the id of the previous widget area you deleted. On the other hand (if you add a sidebar area between existing areas) wordpress will increase the ids of the following widget areas. So the widget area with the id “2” will now have the id “3” and will also show the widgets of the widget area with the id “3” and so on.
Hi!
Great :)
Regards,
Peter
September 7, 2013 at 10:05 am in reply to: How to make Google Maps open with custom location in new window #139666The avia map widget is very basic and you can’t i.e. add different locations to it. If you want build advanced maps without taking care of code modifications I recommend to use this plugin: WP Google Maps. I tested it with Enfold and it’s very intuitive & easy to use and it integrates well into our theme. You can create an unlimited number of maps & markers, re-size the maps, etc.
Hey!
You can try: http://wordpress.org/plugins/wp-charts/ – I tested some charts with Enfold and they look pretty neat.
Regards,
Peter
Hi,
please contact the hoster support staff and ask them the questions. We don’t know which server software you’re using, which files are cached by the server or how to clear the cache. We also have no idea how you can change the server configuration or which configuration is used right now, etc.
There’s no need to exclude the file. Just create a “shortcodes” directory in your child theme folder and copy the shortcode file you want to overwrite (by default all files are located in wp-contentthemesenfoldconfig-templatebuilderavia-shortcodes) from the parent theme directory to the child theme “shortcodes” directory. Then modify the shortcode php code as you like. Afterwards insert following code at the very end of the child thrmes functions.php
add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
function avia_include_shortcode_template($paths)
{
$template_url = get_stylesheet_directory();
array_unshift($paths, $template_url.'/shortcodes/');
return $paths;
}Note that Enfold does not support theme files of other themes. You can’t i.e. simply copy the portfolio template from Replete or Propulsion into the Enfold folder but it requires some custom work to implement new features.
You can try to generate the shortcode/content with the shortcode generator (magic wand icon in the TinyMCE toolbar). Then replace the code I posted in my last post with
$error_msg = "MY CONTENT";
$error_msg = do_shortcode($error_msg);
echo $error_msg;and instead of MY CONTENT insert your shortcode/content between the quotes (” “).
September 7, 2013 at 8:52 am in reply to: Poor quality thumbnail images in portfolio gallery #139979You can change the preview image size with a filter. Insert following code at the bottom of functions.php
add_filter('avf_ajax_preview_image_size','avia_change_ajax_preview_image', 10, 1);
function avia_change_ajax_preview_image($size){
$size = 'featured';
return $size;
}and (if necessary) replace the “featured” thumbnail size with “full” or “extra_large”.
Hi!
Try following code instead
@media only screen and (max-width: 767px) {
div.ls-wp-fullwidth-container { display: none !important; }
}If it still doesn’t wrk try to increase the max-width value and set iit to i.e. 1024px
Regards,
Peter
Hi!
Please update your theme to version 2.1. You’re using v1.7.1 which is not compatible with WordPress 3.6 and jquery 1.10.x.
You can download the latest version from themeforest.net.
Best regards,
Peter
Yes, basically you can add shortcodes (eg the icon shortcode) into tabs too. You can use the “magic wand” icon (TinyMCE editor) to generate the shortcode. Then copy/paste it into the tab content editor field.
1) Please update your theme to version 2.1. The “old jquery version” issue was fixed in Enfold 2.0 which includes the latest version of layerslider (4.6.0) and according to the plugin authors this version is fully compatible with jQuery 1.10.x.
2) If this doesn’t help please deactivate ALL plugins except bbpress and WooCommerce and check if the issue still persists. If not a plugin conflicts with the theme. Activate them one by one to find the culprit.
September 7, 2013 at 8:11 am in reply to: Make an Ajax Portfolio without the Title and Excerpt. #139717You can change the preview image size with a filter. Insert following code at the bottom of functions.php
add_filter('avf_ajax_preview_image_size','avia_change_ajax_preview_image', 10, 1);
function avia_change_ajax_preview_image($size){
$size = 'featured';
return $size;
}and (if necessary) replace the “featured” thumbnail size with “full” or “extra_large”.
It seems like the permalink rewrite doesn’t work at all on your server. Other pages like: http://wond.wpengine.com/contact/ or http://wond.wpengine.com/cookie-information/ (hosted on WPengine) also return a 404 error. If the “permalink flush” doesn’t help try to install this plugin: http://wordpress.org/plugins/rewrite-rules-inspector/ and check if all rewrite rules are saved properly. If not click the”Flush rules” button on the right side. If this still doesn’t help please contact the hoster – maybe they need to change the htaccess file or the server configuration for you.
-
AuthorPosts