Forum Replies Created

Viewing 30 posts - 7,531 through 7,560 (of 9,352 total)
  • Author
    Posts
  • in reply to: Enfold Combo Widget not working on Single Blog page #138526

    Hi,

    I can’t reproduce the issue on my test server. Please try following

    1) Update your theme to the latest version (2.0.1). Check if the update fixed your issue.

    2) If 1) doesn’t help try to deactivate all plugins – if the widget starts to work a plugin causes a conflict (probably manipulates the query somehow). In this case you can activate the plugins one by one to find the culprit.

    3) If 2) doesn’t help 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.

    in reply to: Please contribute and translate Enfold #114980

    Hey!

    Thanks for providing your translation :)

    Best regards,

    Peter

    in reply to: Icon List Malfunction #136797

    Hi!

    I sent you a mail. I can’t log in because of the server/user authentication is enabled.

    Best regards,

    Peter

    in reply to: Theme update of 8/17 #138729

    Please install version 2.0.x . Then Go to “Enfold > Theme Update” to enter the themeforest credentials (Username & API key).This screenshot: http://www.mediafire.com/?4o1fidt35fn4zdl will help you to generate this api key.

    in reply to: Leave reply section not shown.How can i display it? #136229

    To add a comment form to standard pages open up wp-contentthemesenfoldpage.php and replace

    get_template_part( 'includes/loop', 'page' );

    with

    get_template_part( 'includes/loop', 'page' );

    //wordpress function that loads the comments template "comments.php"
    comments_template( '/includes/comments.php');

    I’m not sure if pages which use the advanced layout builder support comments but afaik they don’t.

    in reply to: conflict with easy table plugin #138663

    Hi!

    Can you please post a link to your website? Maybe it’s a js conflict but I’m not sure.

    Regards,

    Peter

    in reply to: Create New Gravity Form Modal Issue On Enfold #135050

    Please try to insert following code at the bottom of functions.php

    add_action('admin_print_scripts', 'avia_gravity_forms_admin');
    function avia_gravity_forms_admin()
    {
    echo "n <style type='text/css'> n";
    echo "body #TB_window{margin-top: 0 !important;}";
    echo "</style>n n ";
    }

    in reply to: WPML translation for widgets that displayed in the footer #138671

    The WPML devs recommend to use the “Widget Logic” plugin (see: http://wpml.org/2011/03/howto-display-different-widgets-per-language/ )

    in reply to: Conflict with Simplepress plugin #138690

    I didn’t test the front end of Simple Press with Enfold yet and it’s possible that not all functions/features are fully compatible. At the moment I don’t have enough time to look into it because we work on theme/framework improvements which are important for us but I’d recommend to ask the plugin authors for help: http://simple-press.com/support-forum/

    The attachment issue is probably related to a missing css file – I get following error message when I close the uploader:

    Failed to load resource: the server responded with a status of 404 (Not Found) http://jessesneider.com/wp-includes/js/tinymce/themes/advanced/skins/thebigreason/content.css

    The poll works for me and it also submits the vote. I didn’t notice any javascript conflicts or ajax error messages. I only noticed that it doesn’t display a “thank you” message but as soon as you reload the page the vote is there and it displays the voting results.

    in reply to: Hide/Exclude a category from WooCommerce Shop page #138144

    Not sure why it doesn’t work in your case. I tested it with

    add_action( 'pre_get_posts', 'custom_pre_get_posts_query' );
    function custom_pre_get_posts_query( $q )
    {

    if (!$q->is_main_query() || !is_shop()) return;
    if ( ! is_admin() )
    {
    $q->set( 'tax_query', array(array(
    'taxonomy' => 'product_cat',
    'field' => 'id',
    'terms' => array( 57 ),
    'operator' => 'NOT IN'
    )));

    }
    }

    (57 is the id of the category I excluded) and it worked for me. If it doesn’t work try to deactivate all third party plugins/extensions except WooCommerce – maybe another plugin hooks into the query and breaks it.

    in reply to: Search Broken on The Events Calendar Pro Calendar pages #138616

    Hey!

    I marked this thread for Kriesi. It seems like the tooltip function is attached to the wrong element (body instead of search icon/link) and this breaks the tooltip.

    Best regards,

    Peter

    in reply to: Related Portfolio Entries #138386

    I didn’t test this code but please try it – add it at the very bottom of functions.php

    add_filter('avia_post_grid_query','avia_exclude_current_portfolio_item',10, 2);

    function avia_exclude_current_portfolio_item($query, $params)
    {
    global $wp_query;
    $postid = $wp_query->post->ID;

    $query['post__not_in'] = array($postid);

    return $query;
    }

    in reply to: Ajax Gallery #136435

    Hey!

    1) gelöst. Der Fehler wurde durch ein Plugin verursacht.

    Bzgl 2) warte ich auf Feedback von Kriesi.

    Best regards,

    Peter

    in reply to: Easy slider navigation arrows not responsive #137473

    Because the layout is fluid the image size can vary. It also depends on the layout you’ve chosen (1030px or 1210px). The best tool to determine the resolution of the image is the Chrome developer console ( https://developers.google.com/chrome-developer-tools/ ) or Firebug for Firefox. I made a small video to demonstrate the workflow: http://www.screenr.com/hdrH

    The browser will show the calculated resolution in the yellow tooltip.

    in reply to: How to change portfolio_entries slug? #138474

    I wouldn’t recommend to change the portfolio_entries slug because it’s the taxonomy name of the portfolio posts and it’s hardcoded in the theme files & framework. You can try to replace all occurrences of “portfolio_entries” with “myslug” in all theme files but there’s a risk that you’ll break something, In addition this change is not update safe and you must redo it every time you update the theme.

    in reply to: Conditional Menu not working #138525

    Hi!

    Actually when I developed the conditional menu code it was intended to work with the mega menu only. But I found an easy way to rewrite the code and with the next theme update you’ll be able to use this feature with all menus.

    Best regards,

    Peter

    in reply to: Enfold Menus disappear on Category & Tag Archive Pages #138291

    We use the standard wp_nav_menu() function to show the menus and maybe the plugin hooks into this function and breaks it on tag archive pages. I don’t have a copy of the plugin right now and your best bet is to contact the plugin authors. If they need help to find the problem ask them to send a mail to (Email address hidden if logged out) and I’ll try to help them.

    Problem found. The Leaflet Maps Pro plugin seems to be incompatible with WPML or at least it messes up our post queries if the user switches the language. Solution: Deactivate it to select the right categories, then save the element/page and reactivate the Leaflet Maps plugin.

    in reply to: Lost Avia Page Builder #138329

    Hey!

    I’m not sure but maybe this thread: https://kriesi.at/support/topic/advanced-layout-editor-dissappeared-please-help will help you. If not please elaborate on “I lost the ability to use the Avia page builder”.

    Best regards,

    Peter

    in reply to: Social snippets not displaying #137325

    Hi!

    Glad you found a solution :)

    Best regards,

    Peter

    Hey!

    Glad you found a solution :)

    Best regards,

    Peter

    in reply to: Portfolio archive page bag #138551

    Hey!

    This will be fixed in the next update. We had to create a special tag.php template which takes care of the different post types.

    Best regards,

    Peter

    in reply to: No Layout Builder für Blog Posts? #138559

    Hi,

    yes, the advanced layout builder is not supported by standard posts because it would be incompatible with post archives pages and with the post formats feature. Only standard pages and portfolio items support the advanced layout builder.

    in reply to: Avia Layout Builder not saving content #138573

    1) Please try to increase the allocated php memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    2) If 1) doesn’t help deactivate all plugins and check if you can save the elements. If yes a plugin conflits with the theme and you can activate the plugins one by one to find the culprit.

    3) If 2) doesn’t help try to re-upload the latest version of the theme. I’d also suggest to re-download the theme files from themeforest again to be on the safe side (corrupt files, etc.)

    in reply to: Remove Date from Pages #138238

    Hi,

    afaik pages do not show any dates (publishing date or update date). I checked all pages on the demo website: http://kriesi.at/themes/enfold/ and I couldn’t find dates on standard pages and portfolio items. Only blog pages, post sliders and articles display the publishing date underneath the title.

    However you’re using Yoast’s sitemap: http://www.rcgauto.com/sitemap_index.xml and maybe google fetches the date from the sitemap.xml file. If you want to get rid of it deactivate the sitemap generator (SEO > XMl Sitemaps).

    in reply to: One column portfolio option #138309

    Hi,

    yes we plan to add this option to the theme but we have no ETA yet. If you’re in a hurry I’d recommend to use another theme like Replete or Propulsion which already support a 1 column portfolio.

    Tbh I think this is the intended behavior of the slider and the video controls do not affect the slider autoplay feature. If you want to change it please contact the plugin authors because we just bundle the original slider code with the theme and we can’t read/work with the obfuscated Layerslider source code.

    in reply to: gallery images Link #138302

    Hi,

    1) No, the gallery images just support a lightbox link.

    2) Can you post a link to the gallery please? I couldn’t reproduce the issue on the demo page: http://kriesi.at/themes/enfold/shortcodes/gallery/ or on my test server.

    in reply to: Enfold Main Menu broken #138085

    Please replace following ode in your quick css field

    .social_header #header_main .container, .social_header .main_menu ul:first-child > li a {
    height: 80px !important;
    line-height: 80px !important;
    }

    with

    .social_header #header_main .container, .social_header .main_menu > ul > li a {
    height: 80px !important;
    line-height: 80px !important;
    }

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

    Hey!

    Please try to flush the rewrite rules. Go to Settings > Permalinks and hit the “Save” button. Then try to open the blog page in your browser.

    Regards,

    Peter

Viewing 30 posts - 7,531 through 7,560 (of 9,352 total)