Viewing 30 results - 224,551 through 224,580 (of 244,526 total)
  • Author
    Search Results
  • #248167

    Hi!

    It seems to be working fine on my iphone now. I navigated through this page using iconbox on your home page – http://i.imgur.com/OKauiau.png
    Social links work fine as well. Can you check once again and confirm that it is working fine for you too?

    Cheers!
    Yigit

    #248158

    Topic: How to use EasySlider

    in forum Enfold
    mareva
    Participant

    Hello
    I’m just beginning with Enfold that is just installed on my wordpress.
    I’ve a very very basic question : where can I find the Easyslider’s menu in wordpress?
    I’ve just found LayerSlider WP but tis module seems to be to much complicate for what I need to do.

    Thank you for your answer

    #248144

    Hi gunpowderboy!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .post-type-archive .avia-content-slider {
    display: none;
    }

    Best regards,
    Yigit

    #248142

    Topic: LayerSlider issues

    in forum Enfold
    ChecMark
    Participant

    This is a technical question, a design issue and possibly a feature request.

    Please reference this page –
    http://www.prismcareernetworks.com/prism_wordpress/candidates/

    First, the technical question. Is there any way to have a “play” button similar to a video so that the user can start the slider? If you look at my design the intent is for them to read the text at the top, then scroll down to view the slider. Although I out a twenty second delay on the slider, everyone reads at a different pace, so when they take a little longer the slider has already started. If there isn’t the ability to have a start button, is there any other design feature that could be inserted to start the slider when a button is pressed?

    The design issue is, being new to Enfold and “flat design” I’m not sure if it’s possible in general, but I don’t want content to appear until the viewer is at that point. I LOVE the features of the LayerSlider in making content more dynamic and holding the viewer’s interest, but endless loops don’t solve the problem. To me, there always has to be a logical progression of the content of the slider. Throughout my many years of building websites they have always been menu and resulting page driven. If the LayerSlider were on a different page, then it would be easy to have a link on the previous page, but this flies in the face of “flat design”.

    #248140

    In reply to: Pricing Table Colors

    Hey!

    Sorry about that. Please note that our queue goes from oldest threads to the newest. Self posting probably pushed your thread to the end of the queue.
    Please add following code to Quick CSS in Enfold theme options under Styling tab to make bold color the same color as your text color

    .main_color strong, .alternate_color strong { color: inherit; }

    Cheers!
    Yigit

    #248136

    Hey Kayzel!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed

    #top #wrap_all .avia-gallery-1 .avia-gallery-thumb a {
    width: 10%;
    }

    Regards,
    Yigit

    #248132

    Thank you, Yigit. This code will make all the dots desappear. Good for me, but I thing there is a bug somewhere in the code, cause the adv still remains not in place.

    About my last question:

    I found line 34 in header.php file: I have only to change the line
    <link rel="profile" href="http://gmpg.org/xfn/11" />
    with
    <link rel="author" href="https://plus.google.com/profilecode/posts" />
    then add at the very end of functions.php file the code

    add_action('wp_head', 'add_google_rel_author');
    function add_google_rel_author() {
    echo '<link rel="author" href="https://plus.google.com/profilecode/posts" />';
    }

    Can you confirm? Thank you, have a nice day!

    #248093

    Hey!

    The documentation has a step by step on adding new portfolio items here: http://kriesi.at/documentation/enfold/create-new-portfolio-item/

    Regards,
    Devin

    Hey!

    Du möchtest daher den Texblock nach links schieben? Wenn ja, verwende folgenden Code:

    
    #av_section_1.avia-section .container {
    width: 100%;
    }
    

    Ich empfehle aber, eine Custom ID für die Color Section zu verwenden und diese dann statt “av_section_1” einzusetzen: http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png – damit vermeidest du, dass andere Color Sections durch diesen Code manipuliert werden.

    Cheers!
    Peter

    #248090
    This reply has been marked as private.
    #248088

    In reply to: Table rows moveable?

    Hey Bruno!

    No, but you can vote for the feature here – https://kriesi.at/support/enfold-feature-requests/ – page 2 “Table Sorting”.

    Cheers!
    Peter

    #248086

    Hi GijsWeterings!

    No, Enfold does not support such a feature. You can suggest it here: https://kriesi.at/support/enfold-feature-requests/ and if it gets enough votes we’ll probably add it with a theme update.

    Regards,
    Peter

    #248070

    Hey!

    We’ll fix this with the next update. For now open up wp-content/themes/enfold/framework/php/class-form-generator.php and replace:

    
            function helper_print_datepicker_script()
            {
                echo "\n<script type='text/javascript'>\n";
                echo 'jQuery(document).ready(function(){ jQuery(".avia_datepicker").datepicker({
                	beforeShow: function(input, inst) {
    			       jQuery("#ui-datepicker-div").addClass(this.id);
    			       inst.dpDiv.addClass("avia-datepicker-div");
    			   },
                    showButtonPanel: true,
                    closeText: AviaDatepickerTranslation.closeText,
                    currentText: AviaDatepickerTranslation.currentText,
                    monthNames: AviaDatepickerTranslation.monthNames,
                    monthNamesShort: AviaDatepickerTranslation.monthNamesShort,
                    dayName: AviaDatepickerTranslation.dayNames,
                    dayNamesShort: AviaDatepickerTranslation.dayNamesShort,
                    dayNamesMin: AviaDatepickerTranslation.dayNamesMin,
                    dateFormat: AviaDatepickerTranslation.dateFormat,
                    firstDay: AviaDatepickerTranslation.firstDay,
                    isRTL: AviaDatepickerTranslation.isRTL
                }); });';
    			echo "\n</script>\n";
            }
    

    with

    
            function helper_print_datepicker_script()
            {
                echo "\n<script type='text/javascript'>\n";
                echo 'jQuery(document).ready(function(){ jQuery(".avia_datepicker").datepicker({
                	beforeShow: function(input, inst) {
    			       jQuery("#ui-datepicker-div").addClass(this.id);
    			       inst.dpDiv.addClass("avia-datepicker-div");
    			   },
                    showButtonPanel: true,
                    closeText: AviaDatepickerTranslation.closeText,
                    currentText: AviaDatepickerTranslation.currentText,
                    nextText: AviaDatepickerTranslation.nextText,
                    prevText: AviaDatepickerTranslation.prevText,
                    monthNames: AviaDatepickerTranslation.monthNames,
                    monthNamesShort: AviaDatepickerTranslation.monthNamesShort,
                    dayName: AviaDatepickerTranslation.dayNames,
                    dayNamesShort: AviaDatepickerTranslation.dayNamesShort,
                    dayNamesMin: AviaDatepickerTranslation.dayNamesMin,
                    dayNames: AviaDatepickerTranslation.dayNames,
                    dateFormat: AviaDatepickerTranslation.dateFormat,
                    firstDay: AviaDatepickerTranslation.firstDay,
                    isRTL: AviaDatepickerTranslation.isRTL
                }); });';
    			echo "\n</script>\n";
            }
    

    Cheers!
    Peter

    #248061

    Hey matsch!

    Please update your theme to Enfold 2.6.2. We already fixed this issue with a theme update.

    Best regards,
    Peter

    #248056

    Hi Ronan!

    Yes, open up wp-content/themes/enfold/includes/related-posts.php and replace:

    
    'post_type' => get_post_type($this_id),
    

    with

    
    'post_type' => array('post','portfolio'),
    

    Best regards,
    Peter

    #248054

    In reply to: Portfolio sort style

    Hi!

    1) You can add the button class to the sort links. Open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php and replace:

    
    $output .= '<a href="#" data-filter="all_sort" class="all_sort_button active_sort"><span class="inner_sort_button"><span>'.$first_item_name.'</span><small class="av-cat-count"> '.count($entries).' </small></span></a>';
    
    

    with

    
    $output .= '<a href="#" data-filter="all_sort" class="all_sort_button button active_sort"><span class="inner_sort_button"><span>'.$first_item_name.'</span><small class="av-cat-count"> '.count($entries).' </small></span></a>';
    

    and:

    
    $output .= 		'<a href="#" data-filter="'.$category->category_nicename.'_sort" class="'.$category->category_nicename.'_sort_button" ><span class="inner_sort_button">';
    

    with

    
    $output .= 		'<a href="#" data-filter="'.$category->category_nicename.'_sort" class="'.$category->category_nicename.'_sort_button button" ><span class="inner_sort_button">';
    

    2) If you want to show related entries for portfolio entries open up wp-content/themes/enfold/single-portfolio.php and replace:

    
                        get_template_part( 'includes/loop', 'portfolio-single' );
    

    with

    
                        get_template_part( 'includes/loop', 'portfolio-single' );
    
                            //show related posts based on tags if there are any
                            get_template_part( 'includes/related-posts');
    

    3) Please see http://docs.woothemes.com/document/related-products-up-sells-and-cross-sells/ : “Related products is a section on some templates that pulls other products from your store that share the same tags or categories as the current product. These products can not be specified in the admin, but can be influenced by grouping similar products in the same category or by using the same tags.” – the theme does not influence the WooCommerce output and related product selection.

    Best regards,
    Peter

    #248049

    I got a few things figured out, but still having a heck of a time with the navbar. I really wish there was an easier way to specify font sizing, coloration and style. Case in point, I need a font in black weight (900), but I have not been able to find any way to achieve this in the navbar, even with the above.

    http://oc1.spireworks.pro/

    I need to specify the navbar font, size, color, style and weight. For some reason, Enfold wants to insert its own color schemes (tint of orange selected in the Enfold style menus. It also refuses to let me specify the weight.

    Navbar needs to be Myriad-Pro font-size: 16px, font-weight: 900. I want the navbar (main) to be in normal state color #ffdcbd. In hover and active state: color: #ff7700; background-color: #fff; text-decoration: underline;

    Navbar drop-down items need to be similar: normal state: font-weight: 900; font-size: 14px; color: #ff7700; background-color: #fff.
    In hover/active states: color: #cc4400; text-decoration: underline;

    We really need a better way, and we are willing to pay for a more advanced admin, if offered. That, or a cheat sheet for css elements. Enfold is so deep that it is hard to find what controls what without having selectors a mile long. We want to really push what Enfold can do, because it is an amazingly powerful platform (beyond just a theme). Maybe that is more of a way of asking for a Pro version of this theme, which we again would be very happy to purchase. I don’t care if it is $200. A good platform is the foundation for any website.

    #248039

    Hey garyguthrie!

    In the Enfold theme options there is a setting for it in the Sidebar tab. Its labeled “Page Sidebar navigation”.

    Regards,
    Devin

    #248016

    In reply to: A Few Issues

    Hi jamesf1989!

    1- Please add following code to Quick CSS in Enfold theme options under Styling tab

    @media only screen and (max-width: 767px) {
    .responsive .logo a, .responsive .logo img {
    height: auto !important; }}

    2 & 3 – Can you post the link to your website and point out the sections so we can take a look?

    Regards,
    Yigit

    #248014

    In reply to: Mobile Slider

    Hey designing!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    @media only screen and (max-width: 990px) {
    .avia-slideshow-dots { display: none; }}

    Best regards,
    Yigit

    #248007

    Hey!

    Which version of the theme are you using? If not the latest version 2.6.2, please update the theme firstly – http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Cheers!
    Yigit

    #248002

    Hi!

    Please go to Enfold theme options > Header > Mobile Menu > Header Mobile Menu activation and choose 990px

    Cheers!
    Yigit

    #247993

    You could replace the lightbox with a child theme and use another script. Peter did that for a client in the past and keeps a child theme online with that in place: http://www.mediafire.com/download/05ho02ecut516hu/enfold_child.zip

    #247977

    Hey Nativemedia!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .ajax_search_excerpt { display: none !important; }
    .big-preview.single-big, .entry-content-header { pointer-events: none; }

    Cheers!
    Yigit

    #247976

    In reply to: Secondary menu

    Hi!

    I am not sure if i understood the issue clearly.What exactly is not working correctly?
    If you have made changes on theme files and noted them, you can create a child theme and re-apply those changes. If you have not made any changes, you can simply “Import Settings from your Parent Theme” from Enfold child theme theme options

    Regards,
    Yigit

    #247964
    This reply has been marked as private.
    #247961

    Topic: remove the enfold logo

    in forum Enfold
    asosbravo
    Participant

    please… how can i remove the logo of “enfold ” in all pages? thank you

    #247959

    Superb, responsive reply.
    Bunch of thx!

    #247955
    buellfire
    Participant

    I’ve uploaded my Google verification file to my files, just as I normally do with my websites, but when I check it, I get a file not found page.

    If you Google “Hero Dressage Simulator”, the first website http://www.HeroDressageSimulator.com comes up, but the page is the same file not found page.

    I’ve pointed the website to see the frontpage from the Enfold theme settings, so I’m not sure why this is happening.

    Thanks!

    • This topic was modified 12 years ago by buellfire.
    #247953

    Hey Alexoidea!

    You can add any item to your menu in the WordPress menus manager using a exact url or if that plugin has the correct coding you can add in categories or whatever taxonomy it uses from the meus manager.

    That isn’t something we have anything to do with nor can we advise you on how to set it up as its theme independent.

    Cheers!
    Devin

Viewing 30 results - 224,551 through 224,580 (of 244,526 total)