Viewing 30 results - 228,061 through 228,090 (of 243,780 total)
  • Author
    Search Results
  • Hey miketran!

    Please install this plugin: http://wordpress.org/plugins/woocommerce-multilingual/ and configure it. If you think it’s a theme issue I suggest to deactivate Enfold and to activate the default TwentyThirteen theme. I’m pretty sure it’s not a theme issue because Enfold does not hook into the WooCommerce translation functions. If you’ve issues with the WooCommerce translation please contact the WPML support staff.

    Best regards,
    Peter

    This reply has been marked as private.
    #224832

    Hey David!

    Make sure that you use the latest version of Enfold 2.5.2 because otherwise you can’t add a link to your gallery images. Then install this plugin http://wordpress.org/plugins/wp-gallery-custom-links/ and insert this code:

    
    add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4);
    function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta)
    {
        $custom_url = get_post_meta($attachment->ID, '_gallery_link_url', true);
        if(!empty($custom_url))
        {
            $link[0] = $custom_url;
            $link['custom_link_class'] = 'aviaopeninbrowser';
        }
        return $link;
    }
    

    into your child theme functions.php file (at the very bottom).
    Best regards,
    Peter

    #224830

    Hi intrige!

    1) Yes, you can use the “Enfold Latest News” widget – it allows you to select the categories which will be displayed in the sidebar.

    2) No, afaik the “archive” widget does not support a category selection. However maybe you can find a third party widget here: http://wordpress.org/plugins/

    Best regards,
    Peter

    #224825

    Hi davevi!

    You can try: http://www.microlancer.com/ or contact the werkpress devs here: http://kriesi.at/contact/customization

    Regards,
    Peter

    #224824

    Hi pako69!

    Please insert this code into the enfold/functions.php file:

    
                add_filter( 'avf_dropdown_post_query', 'avia_wpml_filter_dropdown_post_query_custom', 10, 4);
    
                function avia_wpml_filter_dropdown_post_query_custom($prepare_sql, $table_name, $limit, $element)
                {
                    if(defined('ICL_LANGUAGE_CODE'))
                    {
    			global $wpdb;
                    	$wpml_lang = ICL_LANGUAGE_CODE;
                    	$wpml_join = " INNER JOIN {$wpdb->prefix}icl_translations ON {$table_name}.ID = {$wpdb->prefix}icl_translations.element_id ";
                    	$wpml_where = " {$wpdb->prefix}icl_translations.language_code LIKE '{$wpml_lang}' AND ";
    
                    	$prepare_sql = "SELECT distinct ID, post_title FROM {$table_name} {$wpml_join} WHERE {$wpml_where} post_status = 'publish' AND post_type = '".$element['subtype']."' ORDER BY post_date ASC LIMIT {$limit}";
                    }
    		else
    		{
                    	$prepare_sql = "SELECT distinct ID, post_title FROM {$table_name} WHERE post_status = 'publish' AND post_type = '".$element['subtype']."' ORDER BY post_date ASC LIMIT {$limit}";
                    }
                    return $prepare_sql;
                }
    

    Best regards,
    Peter

    #224823
    davevi
    Participant

    Although Enfold is an easy to use and excellent WordPress theme, I am looking for a Enfold expert to translate my designs and text into a website. Is there a website like http://www.guru.com where these types of experts can be found?

    #224813

    Hey!

    This should be possible. In wp-content/themes/enfold/js/shortcodes.js replace

    
    		next : function(e)
    		{
    			e.preventDefault();
    			this._stopSlideshow();
    			this._navigate( 'next' );
    		},
    
    		// public method: shows previous image
    		previous : function(e)
    		{
    			e.preventDefault();
    			this._stopSlideshow();
    			this._navigate( 'prev' );
    		},
    

    with

    
    
    		next : function(e)
    		{
    			e.preventDefault();
    			this._stopSlideshow();
    			this._navigate( 'next' );
    
    			setTimeout(this._startSlideshow(),50);
    		},
    
    		// public method: shows previous image
    		previous : function(e)
    		{
    			e.preventDefault();
    			this._stopSlideshow();
    			this._navigate( 'prev' );
    
    			setTimeout(this._startSlideshow(),50);
    		},
    

    Cheers!
    Peter

    #224812

    Hey,

    Now is working, I updated manually and everything is back.

    The problem is because the autoupdate didn’t update all the files correctly, this is a bug on the auto update system

    • This reply was modified 11 years, 10 months ago by andreano.
    #224805

    Hey!

    Please post the login details here as a private reply. We would like to check it. There is really something wrong with the theme because the sidebar is below the content. Deactivate the cache plugin before we can check it.

    Regards,
    Ismael

    #224802

    Hi Mark!

    Can you please give us a link to the website? I think it is the woocommerce update because I used the an older version of the plugin and it works. Please try to ask the woocommerce support team.

    Cheers!
    Ismael

    #224801
    Taloscent
    Participant

    On the Home v8: Frontpage Shop there is a color section with a background image of http://kriesi.at/themes/enfold/files/2013/06/slide3_bg.png.
    I copied this image and am using it on http://dignity.morewireless.net

    Why is the same picture with the same settings pixelated/blocky and yours is not? Have I missed some settings?
    Thanks

    #224800

    Ismael,

    Just one correction, the issue happen in all browser now.

    I deactivated all plugins, remove all the slides, create a new on and the problem still there.

    Don’t know what else to try.

    Any help?

    #224795

    Also I did clean the cache of my cache plugin, initially I thought about that, but it wasn’t

    #224793

    Hi Ismael,

    I don’t think the problems are the plugin. If you open the website using Safari all works, the problem happen when I use Chrome on Mac.

    What do you think?

    Thanks,
    Andreano

    #224792

    Hi toddgeist!

    You can use this plugin to maximize the search power of your website: SearchWP

    Refer to this link in order to integrate the plugin on ajax search: http://kriesi.at/documentation/enfold/use-searchwp-instead-of-the-standard-search/

    Best regards,
    Ismael

    #224790

    Hi andreano!

    You have a lot of plugins installed, please try deactivate them one at a time. Try to recreate the slider from scratch, you may need to update the links as mentioned on the theme changelogs. Please deactivate the cache plugin.

    Cheers!
    Ismael

    Hi!

    Really glad you figured out. :)

    Cheers!
    Ismael

    #224778

    In reply to: Dutch translation

    Hey cbeneden!

    Install the Codestyling Localization plugin. Go to Tools > Localization then scroll below and find Enfold. Look for the Deutsch translation then click “Edit”. Search for “You are here” then click edit and save. :)

    Best regards,
    Ismael

    #224777
    rasa
    Participant

    Everything in the theme seems to be working except that the color of all these elements is black:
    h1, h2, h3, h4, h5, h6, .widgettitle
    In the Enfold Theme Options, I have Header font color set to #600e75 (a dark purple), but even though everything else seems to save. The h1, etc. text colors still remain black.
    Here’s a page we’re working on: http://altogether.com/pages/about-us/team/

    I just now put text shadow on those elements in the theme’s custom CSS, and that worked. I tried to add #600e75 to that CSS rule, but even then the color stayed black. Any idea why?

    #224770

    In reply to: Enfold Showcase

    Hi!


    @costin
    : He added it on a div then set it to fix:

    .main_color {
    background: #ffffff url(https://www.heart-working.de/wp-content/uploads/2013/04/bg3.png) top center no-repeat fixed;
    }

    Cheers!
    Ismael

    bhaydock
    Participant

    I recently switched to the Enfold theme for my WordPress.org site. There was already a fair bit of content on my site already, posted by 2 different older contributors. From here on out I will be posting the majority of content, as well as one other potential new contributor, totaling 4 contributors. For this reason I selected the “multi-author blog”.

    My problem is I don’t know how to get the gravatar pictures to show up next each authors’ post. I just recently set up a gravatar for myself, but it still doesn’t show up next to my posts within my wordpress.org site. I can’t see anything within the WordPress.org dashboard under “users” that will link the gravatar to specific site authors. Nor can I find anything in the Enfold options.

    Once I get my own gravatar figured out, I’d ideally like to have pictures for the older content authors as well.

    #224737

    Hey nonasnonas!

    Disable all active plugins and then re-install the 2.5.2 version by overwriting the theme files following this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750

    Make sure there are no write errors or upload failures and then go to the themes styling options and re-save them by making a small change.

    Regards,
    Devin

    miketran
    Participant

    I am attempting to use Woocommerce with my Enfold Theme…I recently installed WPML (English and Spanish) and I am having problems with the Spanish pages not being available (404 Errors) and Redirect Loops…I have not idea what is causing this…Woocommerce, WPML, or ENFOLD or a combination of two or more…

    I have spent a week on this and really need someone to take a look at my site…I am convinced it probably something small…But I have no idea where to begin…Can someone take a look at my site or give me a suggestion on where I might get help? The WPML support folks are not very responsive…

    I have not been able to create product pages that work…Here is a English Page (but originally written in Spanish) that I get a redirect Loop:
    http://www.acrosolutions.com/wp-admin/edit.php?post_type=product&lang=en

    Here is a Spanish Page (same as English Page) that I get an Error 404- Page not found error…
    http://www.acrosolutions.com/es/producto/entrenamiento-de-dragon-medical-naturallyspeaking-3/

    I have tried numerous things to try to solve this problem…This is really beyond my paygrade…

    How can I get someone to take a look at this?

    Thanks,
    Michael

    • This topic was modified 11 years, 10 months ago by miketran.
    #224713

    Hi!

    Sorry, it’s the link to the Themeforest page, you can see a list of support plugins at the right:
    http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=Kriesi

    Regards,
    Josue

    Is there anyway I can add a form similar to Gravity at the bottom of posts and also drop it on a widget on the sidebar? Something that comes pre-built within ENFOLD?

    What are my choices?

    Thanks Josué!

    Miguel

    #224696
    Place_Creations
    Participant

    Hi there,

    I’m trying to get my site live, after 4 long years of dealing with a poorly coded and not supported other theme (who’s company ended up going out of business). I went through, literally, every theme on Themeforest and decided to choose yours. THANK YOU for making such a great theme.

    So here are my questions (because I’m trying to re-build the site I used to have with my old broken theme, and I could really use your help):

    Header Question:
    1. I would like to put an image at the very top of the theme (that takes up the whole length of the header, (and using the “header with the bottom menu” choice), and also move the header menu down a bit so the space above it is larger and will fit my image. Is this possible? I know it says on the page that their are advanced header options, but I wasn’t sure what is possible. What I’d like to put there is a changing image (based on time of day) of grass and sky. Below that will be the site and bottom menu).

    Audio Question:
    2. I see this beautiful theme supports video, but what about audio files, like podcast, songs or audio reels: Can you add audio files that will show up nicely (like these: http://www.placenarration.com/listen)?

    Sidebar and Footer Widget Areas:
    3. Is it possible to change the color/give borders around and behind the widget areas (in the sidebar and footer) so they can be separated? I prefer them to be in their own boxes if possible, rather than just “floating”.

    Multiple Blogs Pages: Population Question
    4. Can I have, in essence, 2 or 3 blog pages? For example: I’d like to have a “Featured” page which will have a grid of my featured blog posts, but then I would like to have a few other pages that only populate the articles relating to that “category”. For example, “Interviews”, “Inspiration” or “Travel Advice” posts. I know you have the multiple author option, but I wasn’t sure if this was possible.

    You Might Also Like Automatic Boxes?
    5. Does this theme have/support “You might also like” boxes with thumbnails that automatically populate other similar posts below current posts? And/or a shortcode to add them to pages like this: http://dreamthemedesign.com/themes/u-design/features/shortcodes/recent-posts/)

    Ad Ready?
    6. Is the site set up to easily add any ads to the widget areas of pages and/or posts?

    Very many thanks for your kindness and help with my questions!

    Kindest regards,
    Crystal

    P.S.
    Manuel, who built the beautiful Delight theme, mentioned to me that you are the very best and most talented person/team on Theme Forest and that I should take a look at your Enfold (and other themes). He was right. You’re like superheroes! (I just sent you to a group of my friends who were all chatting about getting their own sites. I said, “OH, you HAVE to see this guy on Theme Forest who makes literally the most powerful themes I’ve ever seen for “stupid” people like us! He’s amazing!!” So THANK YOU for making such powerful themes, and for being patient with those of us who don’t understand all you do. (If only we could download or connect via FireWire to your brain! :))

    Hi,

    From the list, the only one which is officially compatible with Enfold is Gravity Forms. The other may work too, but we can’t ensure full compatibility.

    Best regards,
    Josue

    Hello Josue,

    You’ve convinced me with this argument. Thank you.

    As for an opt in form, what would you recommend?

    I’m looking into:
    1) http://hybrid-connect.com/pricing-and-signup/
    2) http://maxblogpress.com/subscribersmagnet/sbmg-trial-2.php
    3) http://optinskin.com/?hop=intheleed1#tab-14
    4) http://www.gravityforms.com/purchase-gravity-forms/

    Out of these, I am favoring the first option.

    What’s your take on that? What do you like best for Enfold?

    Many thanks!

    Miguel

    #224676

    Hi,

    Unfortunately we can’t support third-party plugins that aren’t listed here.

    You could try hiring a freelancer for the job.

    Best regards,
    Josue

Viewing 30 results - 228,061 through 228,090 (of 243,780 total)