Forum Replies Created

Viewing 30 posts - 8,161 through 8,190 (of 9,352 total)
  • Author
    Posts
  • in reply to: Lining Up Table Lines & Content #130217

    Hey!

    Try following css code to add a bottom border to the table.

    .pricing-table {
    border-bottom: 1px solid;
    }

    Best regards,

    Peter

    in reply to: Remove Space above/below slider #124968

    Hi!

    It seems like you’re using a “short” hr on this page – you can use following code to reduce the margin

    .hr-short {
    margin: 10px 0;
    }

    Regards,

    Peter

    in reply to: Customizing info and functionality on blog posts #129057

    The quick css field can be found on the theme options page (Enfold > Styling).

    The custom.css file is located in the enfold/css folder but WordPress won’t show it on the theme editor page. You can use ftp to download the file (navigate to wp-content/themes/enfold/css) or install an advanced editor plugin like: http://wordpress.org/plugins/solid-code-theme-editor/

    in reply to: Mobile menu not show as an icon #130419

    Hey!

    Thanks meanster99 for helping us out :)

    Regards,

    Peter

    in reply to: Hiring a professional to set up Enfold for me #130235

    If you’ve general questions how to configure the theme options or how to set up a certain element we’ll gladly help you (for free) in the support forum. If you need help with the theme customization, server configuration (database transfer, ftp setup, etc.), etc. which is beyond the scope of our support forum you can try a service like: https://codeable.io/ or you can contact us here: http://inoplugs.com/contact/ and we’ll make you a quote.

    in reply to: Search Sources and Search Facets #129954

    You can use the avia_frontend_search_form hook to add your custom form fields (eg with a child theme function, etc.) without modifying the searchform.php file itself. I.e. use the hook to call a function like:

    if(!function_exists('add_custom_avia_search_fields'))
    {
    add_action('avia_frontend_search_form', 'add_custom_avia_search_fields');
    function add_custom_avia_search_fields()
    {
    echo '<input type="hidden" id="post_type" name="post_type" value="my_post_type" />';
    }
    }

    – this function would add a hidden field to the search form which limits the search to the “my_post_type” post type.

    You can obviously build more complex forms (checkboxes, maybe with conditional logic and javascript code, etc.) but that’s beyond our support service and depending on your skills I’d suggest to hire a freelancer who can help you to build the form.

    in reply to: Custom Backgrounds per page #130177

    Enfold doesn’t support this feature out of the box and you can add it to the wishlist. WP-Backgrounds Lite should work with Enfold because I tested it. However you must use the “Boxed Layout” otherwise you won’t see the background image. I used following settings for WP-Backgrounds Lite:

    You can select the background image on the post/page editor page:

    “Using theme forest themes always result in updates ruining optimizations. Its best not to use a themeforest.net theme if

    you are changing the interface. If you do any update will overwrite the styling applied.” – imo that’s not true because even if you create a custom theme you maybe need to update/hack the theme when a WordPress/browser, etc. update breaks your code. This can happen with all themes and it’s not just a problem of themeforest.net themes. Maybe the developer wanted to say that some themeforest authors do not support their themes anymore after 3,6,12,etc. months and tbh he’s right – some authors just drop the support if the theme doesn’t sell anymore. However Enfold is the most popular Kriesi theme and we are not interested in loosing the customers by dropping the support. In addition you have the same problem with all other themes – if your developer doesn’t work for you anymore you also need to hire someone to update the custom theme for you…

    Can you rebuild JOVENIAJUVELER.SE with Enfold? I don’t think this is feasible because you’d need to use many html5/css3 techniques and then you’ll have the problem of “downwards compatibility” with older browsers. In addition the animations of html5/jQuery are imo not as good as flash animations. If you want a new website you can use Enfold – however imo a 1:1 copy of the flash website doesn’t make much sense and you’ll just burn money…

    in reply to: Custom marker for Google map #130173

    Hey!

    Thanks. The next update (Enfold 1.8) will add an custom marker option and I also created an address search option which fetches the coordinates automatically :)

    Regards,

    Peter

    in reply to: Single Product Page Sidebars #130197

    1) Single product pages have a sidebar – you just need to drag’n’drop widgets into the “Single Product Pages” widget area. Afaik the “Displayed Everywhere” widget area is also supported on single product pages.

    2) There seem to be sidebars for everything else except single pages. My question then become why?

    First (standard) single pages support sidebars and even product pages have a sidebar but it’s not located on the right. We choose this layout because the design wouldn’t look good with a separate sidebar area. The product thumbnails are displayed on the left side and take one third of the page width. The space on the right is required for the product description, add to cart button, etc. Thus the only reasonable location for the widget areas is below the product thumbnails on the left side.

    in reply to: Advanced Layout Editor Stopped Working #130206
    in reply to: Adding featured image to RSS feed #130042

    Sure – add following code to the bottom of functions.php

    function avia_add_images_to_rss_feed($content)
    {
    global $post;
    if ( has_post_thumbnail( $post->ID ) )
    {
    $content = get_the_post_thumbnail( $post->ID, 'full', array( 'style' => 'display: block;' ) ) . '<br/>' . $content;
    }
    return $content;
    }

    add_filter('the_excerpt_rss', 'avia_add_images_to_rss_feed');
    add_filter('the_content_feed', 'avia_add_images_to_rss_feed');

    in reply to: Triggering comment_post #130009

    No, afaik there’s no function which uses the “comment_post” hook. I searched all theme files for “triggered” or “comment_post” but I couldn’t find any results which indicate that Kriesi calls or triggers a custom function by using the comment_post action. Did you try another service? A list of popular services can be found here: http://www.kevinmuldoon.com/feedburner-alternatives/

    in reply to: Javascript broken on POST EDIT page #115185

    Hey!

    I forwarded the login data.

    Best regards,

    Peter

    in reply to: Toggle – images and colums inside #129975

    Hi!

    Maybe it’s not possible to use a column shortcode within a toggle shortcode because the floating columns will break the toggle container. However you can try following code:

    .toggle_content{
    display: inline-block;
    }

    Best regards,

    Peter

    in reply to: Postslider bug #129928

    1) Can you post a link to the homepage please?

    2) You can use the excerpt field

    to enter a manual excerpt. If some words are bold in the generated excerpt it’s probably a problem of missing closing strong tags in the excerpt text. We’ll fix this problem in the next update, for now open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodespostslider.php and replace

    $prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 60) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true);

    with

    $prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate(strip_tags($entry->post_content,''), apply_filters( 'avf_postgrid_excerpt_length' , 60) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true);

    Typically this is related to a memory issue on your wordpress install. Try upping your php memory limit to 128mb or above using one or all of the steps here: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    in reply to: Warning: trim() expects parameter ERROR MESSAGE #130023

    Hi!

    Great – maybe this thread will help you too: https://kriesi.at/support/topic/warning-message-2

    Best regards,

    Peter

    Hi!

    Yes, I’d recommend to insert it into the quick css field.

    Regards,

    Peter

    in reply to: Thumbnail Porportions #129763

    You can reduce the menu height with following code

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

    Insert it into the quick css field and increase/decrease the px value. If you decrease the value the white space will become smaller.

    in reply to: Ajax Suche wird auf der Home Seite nicht angezeigt #129613

    Hi!

    Bitte richte mir einen Admin Account ein und sende die Daten zu: (Email address hidden if logged out) – ich sehe mir das Problem an.

    Regards,

    Peter

    in reply to: Fullwidth in showbiz pro #129738

    Hi!

    Glad it works now :)

    Best regards,

    Peter

    in reply to: Manual multi language site based on Enfold? #130040

    No, but you can read http://wpml.org/documentation/translating-your-contents/ – it will explain all WPML features/options.

    Just one configuration step which is “theme related” – you need to configure the theme options for each language – i.e. you can set a different logo, different colors, different copyright text, etc for each language. Just select the current language from the language dropdown in the admin panel; the theme name will change – eg to Enfold (DE) if you select German – then you can configure & save the options for the German website. Then select another language and configure the options for this language, etc.

    in reply to: No pages in the menu section of admin panel #129978

    Hey!

    Please create me a wordpress admin account and send me the login data and more details about the issue to: (Email address hidden if logged out) – I’ll look into it.

    Regards,

    Peter

    in reply to: Warning: trim() expects parameter ERROR MESSAGE #130021

    Please try following fix – open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesslideshow.php and replace

    if(trim($content) != "") $content 	= "<div class='avia-caption-content'>".wpautop(ShortcodeHelper::avia_remove_autop(trim($content)))."</div>";

    with

    if(!is_string($content)) $content = (string)$content;
    if(trim($content) != "") $content = "<div class='avia-caption-content'>".wpautop(ShortcodeHelper::avia_remove_autop(trim($content)))."</div>";

    in reply to: NOT A SUPPORT TOPIC #130024

    Hey!

    Not sure – I sent him a mail. Thank you for the hint :)

    Regards,

    Peter

    in reply to: Visual Composer #130020

    Tbh we did not test this plugin with Enfold. Enfold uses the “Avia Layout Builder” which (probably) works similar to the “Visual Composer” plugin and I guess you don’t need to use a separate third party plugin to create page layouts. However you can try to install & use the Visual Composer and the chances high that it will work just fine.

    in reply to: enfold: multilanguage and contact form #129922

    1) I’d recommend to use: WPML. Enfold supports this plugin and we’re collaborating with the WPML devs (we can work with them if we find bugs, etc.). Other translation plugins (like qtranslate, etc.) are not supported.

    2) I’d recommend a text widget – you just need to insert the contact form shortcode into the text field and then save the widget. You can generate the contact form shortcode by using the “Magic Wand” icon on the post editor page. Then copy/paste the code into the text widget field.

    in reply to: Dashboard filter of posts, pages is broken, unusable #129204

    I could reproduce the issue and we’ll fix it with the next update. For now open up wp-contentthemesenfoldincludeshelper-template-logic.php and replace:

    function avia_search_query_filter($query)
    {

    with

    function avia_search_query_filter($query)
    {

    if(is_admin()) return;

    in reply to: Slider only slides twice #129864

    Hi!

    Can you post a link to your slider page please? Maybe it’s a js error.

    Regards,

    Peter

Viewing 30 posts - 8,161 through 8,190 (of 9,352 total)