Forum Replies Created

Viewing 30 posts - 7,441 through 7,470 (of 9,352 total)
  • Author
    Posts
  • 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

    in reply to: Bug CSS Custom post type #130239

    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

    in reply to: Please contribute and translate Enfold #114989

    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.

    in reply to: Go Go RTL Support Feature! :) #140148

    Hey!

    Yes, great idea. Please post +1 if you need this feature too.

    Best regards,

    Peter

    Hey!

    Try

    #top.single-tribe_events .avia-post-nav {
    display: none !important;
    }

    Best regards,

    Peter

    in reply to: Logo/partner element & Content Slider #140073

    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).

    in reply to: Custom post type Archive pages #140016

    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)));

    in reply to: Another photo per category (banners) #140028

    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'>
    <?php

    with

    <div class='content <?php avia_layout_class( 'content' ); ?> units'>
    <?php

    if (function_exists('z_taxonomy_image_url')) echo '<img src="'.z_taxonomy_image_url().'" />';

    in reply to: How to remove 'blog' in URL of custom post type #139871

    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/

    in reply to: Translate "Blog – Latest News" #139827

    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.

    in reply to: Posts – Navigation #139392

    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

    in reply to: Google Map Full Width #140043

    Hey!

    I did a quick test and I think it can be done: http://www.screenr.com/KQnH

    Best regards,

    Peter

    in reply to: WP e-commerce #140037

    Hey!

    No, but Enfold supports another shop plugin http://wordpress.org/plugins/woocommerce/

    Best regards,

    Peter

    in reply to: Support for Internet Explorer 6 #138043

    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

    in reply to: Toppanel plugin: messed up widgets & widget areas in ENFOLD #139839

    Actually 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…

    in reply to: Toppanel plugin: messed up widgets & widget areas in ENFOLD #139837

    Unfortunately 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.

    in reply to: Disable Slider for mobile size responsive theme #139989

    Hi!

    Great :)

    Regards,

    Peter

    The 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.

    in reply to: Enfold Feature Requests #114836

    Hey!

    You can try: http://wordpress.org/plugins/wp-charts/ – I tested some charts with Enfold and they look pretty neat.

    Regards,

    Peter

    in reply to: applying modified file #139811

    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.

    in reply to: Portfolio meta #134009

    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.

    in reply to: Edit the 404 Tabs #139824

    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 (” “).

    in reply to: Poor quality thumbnail images in portfolio gallery #139979

    You 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”.

    in reply to: Disable Slider for mobile size responsive theme #139987

    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

    in reply to: Google Map not showing correctly #134305

    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

    in reply to: Shortcodes in Tabs #138417

    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.

    in reply to: responsive menu quit working #139566

    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.

    in reply to: Make an Ajax Portfolio without the Title and Excerpt. #139717

    You 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”.

    in reply to: Blog – Error 404 – page not found #138288

    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.

Viewing 30 posts - 7,441 through 7,470 (of 9,352 total)