Forum Replies Created

Viewing 30 posts - 7,321 through 7,350 (of 9,352 total)
  • Author
    Posts
  • in reply to: Browser Page Titles #161592

    Hi,
    personally I’d recommend to install a seo plugin like http://wordpress.org/plugins/wordpress-seo/ – since v2.1 Yoast SEO integrates seamlessly into Enfold and gives you full control over the page title, met tags (description, opengraph, etc.) and it will also generate the xml sitemap for you. If you don’t want to install a seo plugin or if the plugin doesn’t solve the issue please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out) and I’ll look into because I can’t reproduce the issue on my test servers.

    Hi,
    No, the Enfold contact form does not save the submissions into the database and it also doesn’t generate a csv file. I’d recommend to use an advanced contact form plugin like: Formidable. It integrates pretty well into our theme – i.e. I’m using it on my website here: http://inoplugs.com/contact/

    in reply to: Install Demo Content #161582

    Which theme are you using? You posted the question in the “FAQ” section and not in a theme sub-forum :)

    in reply to: Main Slider gone after update #161575

    Hi,
    the php warning message Warning: session_start() [function.session-start]: open(/tmp/sess_46680e3906ea01c73ff670f94e8344a3, O_RDWR) failed: Permission denied (13) tells you that the server can’t create a php session because the access to the temporary file which stores the session data is denied/blocked. Please contact your hoster and ask them to fix the session file permission(s) for you. Our theme uses sessions to generate a proper breadcrumb for portfolio items.

    • This reply was modified 11 years, 5 months ago by Dude.
    in reply to: Menu link to section ID loses menu in responsive mode #161572
    in reply to: How to add custom font for Chinese version of site only #161570

    You can use a font face generator like: http://www.fontsquirrel.com/tools/webfont-generator to generate your font files. Then copy the css code from the included css file (can be found in the zip file which is generated by the fontsquirrel generator) into your child theme style.css and place the font files (eot, woff, etc.) into the child theme directory. You can also add the code from this post: http://wpml.org/forums/topic/body-class-based-on-language/#post-18785

    
    add_filter('body_class', 'append_language_class');
    function append_language_class($classes){
      $classes[] = ICL_LANGUAGE_CODE;  //or however you want to name your class based on the language code
      return $classes;
    }
    

    to the child theme functions.php to add a language specific class to the body. Then you can apply the font face font to the Chinese version of the website only.

    • This reply was modified 11 years, 5 months ago by Dude.
    in reply to: anchor links in fly-out menu not working #161566

    Please excuse the late reply – to fix the issue open up enfold/js/avia.js and replace

    
    mobile_advanced.find('.noMobile').remove();
    

    with

    
    mobile_advanced.find('.noMobile').remove();
    
    				jQuery(document).on('click', '#mobile-advanced li a[href*=#]', function()
    				{
    					container.removeClass('show_mobile_menu');
    					container.css({'height':"auto"});
    					return false;
    				});
    
    

    and

    
    						      // cancel default click action
    						      return false;
    

    with

    
    						      // cancel default click action
                                   if(!$(this).parents('#mobile-advanced')) return false;
    
    in reply to: Problem with different browsers – Images don't show properly #161557

    I wonder if the website looks different for logged in/logged out users? I tested in with the latest version of Chrome on Win8, the latest available version of Safari and Opera on Win8 and everything seems to be fine on my end: http://www.screenr.com/nTlH

    • This reply was modified 11 years, 5 months ago by Dude.
    in reply to: Google Maps Bubble automatisch anzeigen lassen? #141186

    Hi!

    Sehr gut :)

    Regards,

    Peter

    in reply to: responsive menu quit working #139569

    Hi,

    I found the cause – the “W3TC” minify setting breaks one or more javascript files and causes a global js error which also affects our menu function. I deactivated the minify option for now because W3TC ignored all my setting changes. I think the problem is that there’re several theme folders which all contain the “Enfold” theme (theme name in style.css) and W3TC doesn’t recognize your current theme as “Enfold” but thinks one of the “backup folder” themes is the current theme. I’d suggest to delete these enfold backup folders (make an offline backup or move them to another server directory) and then you can try to manually exclude the js file from the w3tc file compression which causes the error.

    Hey!

    Did you find the solution? I’m asking because the thread is marked as resolved?

    Regards,

    Peter

    in reply to: Accordian Slider Issues with Recent WP #141025

    Hey!

    Yes we’ll fix it in v2.2. but we didn’t release an update yet. We want to include some other fixes/improvements first before we release the update.

    Best regards,

    Peter

    in reply to: Problem content IE 8 #140911

    Hi!

    I forgot the style tag around the css code. Please try it again – I corrected the code above.

    Best regards,

    Peter

    in reply to: How to restore ENFOLD's styling and css files? #139805

    Hey!

    Try following fix – open up enfold/config-woocommerce/config.php and replace

    echo "</div>"; // end tempate-shop content

    with

    echo "</div>"; // end tempate-shop content
    echo "</div>"; // close default .container_wrap element

    Regards,

    Peter

    in reply to: Add image in text block not working inside layout builder #140845

    Hi!

    I can’t reproduce this issue – maybe it’s a third party plugin conflict? Try to deactivate all plugins and check if the “Add Media” button works afterwards.

    Best regards,

    Peter

    in reply to: Where to hook the code for FB, G+ & Twitter buttons? #140688

    Hi!

    I’d recommend to use the the_content filter/hook: http://codex.wordpress.org/Plugin_API/Filter_Reference/the_content to insert your icons/links after the page/post content.

    Best regards,

    Peter

    in reply to: Easy Slider on IE9 #140850

    Yes, afaik this is a browser limitation because Kriesi uses css3 code/animations to slide the images/captions and not all animations are supported by IE8 or IE9. However I’ll mark this thread for Kriesi in case it’s a bug or he wants to improve the script somehow.

    in reply to: responsive menu quit working #139568

    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.

    Regards,

    Peter

    in reply to: woocommerce colors and catalog mode #140870

    Hi,

    1) Please elaborate – I don’t understand the question. If you refer to the fact that Enfold doesn’t use the styling settings you made on the WooCommerce option page you’re right – Enfold uses its own style settings (Enfold > Styling) and doesn’t take care of the WooCommerce colors, etc.

    2) Yes you can remove the “Add to cart” button. Open up /wp-content/themes/enfold/config-woocommerce/config.php and delete following code

    ob_start();
    woocommerce_template_loop_add_to_cart();
    $output = ob_get_clean();

    if(!empty($output))
    {
    $pos = strpos($output, ">");

    if ($pos !== false) {
    $output = substr_replace($output,"><span class='avia-font-entypo-fontello'>". $avia_config['font_icons']['cart'] ."</span> ", $pos , strlen(1));
    }
    }

    if($product->product_type == 'variable' && empty($output))
    {
    $output = "<a class='add_to_cart_button button product_type_variable' href='".get_permalink($product->id)."'><span class='avia-font-entypo-fontello'>". $avia_config['font_icons']['details'] ."</span> ".__('Select options','avia_framework')."</a>";
    }

    in reply to: Problem content IE 8 #140909

    Hey!

    Please try to insert following code into header.php – place it before the closing </head> tag

    <!--[if lt IE 9]>
    <style type="text/css">
    .ls-wp-container{ padding-left: 120px; }
    </style>
    <![endif]-->

    I tested it with IE8 and it seems to fix the issue on your website. I’m not sure if it works with IE7 because officially Enfold doesn’t support this browser version and I didn’t test it.

    Regards,

    Peter

    in reply to: ie9.0.8 image alignment off #137630

    Hi!

    Yes, it seems to work now. I couldn’t reproduce the bug with IE8, IE9 or IE10. The 1/1 element obviously solved the issue.

    Regards,

    Peter

    in reply to: Portfolio Entry leads to 404 page #140948

    Hi!

    Glad you found the culprit :)

    Best regards,

    Peter

    in reply to: Enfold is the only theme that doesn't work ! #134635

    Hey!

    No, I don’t think so but did you restart the server?

    Regards,

    Peter

    I think this is a bug/problem with the TGM-Plugin-Activation class (wp-contentthemesenfoldframeworkphpclass-tgm-plugin-activation.php). Basically it’s not required but the new Envato theme guidelines force the theme authors to use this class to “recommend” required plugins (i.e. Enfold requires WooCommerce for the shop and bbpress for the forum). You can deactivate this class easily though – open up enfold/functions.php and delete following line

    require_once( 'includes/admin/register-plugins.php');			// register the plugins we need

    With this code mod Enfold doesn’t initialize this class anymore and you also don’t see the warning message.

    in reply to: Stack Columns #141092

    Basically you can do this with a small workaround but I’m not sure if the content will display properly. You just need to switch to the standard editor, then use the “Magic Wand” icon to generate your columns shortcode(s) for the 3/4 column. Then copy the shortcode from the text editor field and switch to the advanced editor. Add a textblock element into the 3/4 column and click on the textblock element to edit the content. At least paste your shortcode into the text field and save it. Voila now you’ve a 2 column shortcode inside a 3/4 column.

    in reply to: wp layer slider not working #140895

    Hey!

    Actually it’s possible to use a fullwidth Revolution Slider with Enfold. Add a color section to the advanced layout and insert some text into the “Custom ID” field (eg insert “aviarevolution” into the field). Afterwards place a text block into the color section and insert the RevolutionSlider shortcode into the textblock. Save the element and the layout template. At least insert following code into the quick css field to stretch the slider to the screen width

    #aviarevolution .container {
    width: 100%;
    }

    That said I’m sorry you didn’t like Enfold but hopefully Avada will do the job. Good luck with your project!

    Best regards,
    Peter

    in reply to: Google Map not showing correctly #134307

    I think a html syntax error causes both issues. I checked your website with w3v validator and this line

    <p><H3>SELECT A PROPERTY OR LAND USING THE MARKER:</H4></p>

    opens a h3 headline and closes a h4 headline which can break the design & html structure of the document. Especially IEs don’t handle invalid documents well…

    Hi!

    I marked this thread for Kriesi – maybe he can provide a solution.

    Regards,

    Peter

    in reply to: Please contribute and translate Enfold #114993

    @infoportugal – not all strings are translatable with the theme files. Sometimes you need to translate the wordpress core files (see: http://codex.wordpress.org/WordPress_in_Your_Language ) or you must translate the third party plugin code – each plugin uses its own textdomain files (mo/po files).

    in reply to: Please contribute and translate Enfold #114992

    I noticed that Kriesi only added the po file and not the mo file. You can generate the mo file with PoEdit (just open the po file located in the enfold/lang folder and save it) or download both files from here: http://www.file-upload.net/download-8076337/pt_BR.zip.html and upload them into the enfold/lang folder.

Viewing 30 posts - 7,321 through 7,350 (of 9,352 total)