Viewing 30 results - 232,231 through 232,260 (of 244,345 total)
  • Author
    Search Results
  • #203271
    This reply has been marked as private.
    #203266

    In reply to: sidebar

    http://j2k.info/please.jpg

    here you go..i just want to put a tittle to that sidebar item, but it wasnt done through widgets, it was done thorough sidebar style on enfold options when i clicked on “automatically list nested subpages”

    #203254

    Hey andri7luck!

    You can try to disable all third party plugins which are not required. If this doesn’t solve the problem I recommend to switch to a better hoster. Unfortunately Enfold is a complex theme which requires more resources than a simple, standard theme like TwentyThirteen,

    Best regards,
    Peter

    #203240

    Hey K!

    1) If you just want to display the category name in the breadcrumb (and not the portfolio grid page links, etc.) try to add following code to the theme functions.php file

    
    add_action('after_setup_theme','avia_remove_portfolio_breadcrumb');
    function avia_remove_portfolio_breadcrumb(){
    remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb');
    }
    

    2) You can remove the “Archive for” text. Open up /wp-content/themes/enfold/framework/php/function-set-avia-frontend.php and replace

    
    $output = __('Archive for:','avia_framework')." ".$term->name;
    

    with

    
    $output = $term->name;
    

    3) No, the ajax portfolio does not support a pre-sort at the moment.

    Cheers!
    Peter

    #203239

    Hey Emmanuelppp!

    The single product template does not support a right sidebar at the moment. It would require some major template rewrites and some theme code customization. You can suggest the feature here: https://kriesi.at/support/topic/enfold-feature-requests/ – if more users request it we’ll look into it.

    Regards,
    Peter

    Hi!

    I suggest to add this code to header.php and then use this css code

    
    .mlp_language_box{ display: none; }
    

    to hide it. Afterwards we’ll try to find a quick solution to position it properly but I can’t promise a solution because this customization is beyond the scope of our support forum (implementation of third party plugin code).

    Best regards,
    Peter

    #203217

    Hi!

    You can adjust the portfolio ajax control using this:

    @media only screen and (max-width: 767px) {
    .ajax_controlls {
    position: absolute;
    z-index: 100;
    right: 0;
    top: 160px;
    }
    }

    Adjust the bottom position.

    Regards,
    Ismael

    #203210
    andri7luck
    Participant

    Hello,

    Please help (again)

    For the last 3 days, I got 3 emails from hostgator about this:
    This message is to advise you of a temporary block placed on your account. This account was found to be consuming an inordinate amount of processor time, to the point of degrading overall system performance. While we do limit each account to no more than 25% of a system’s CPU in our terms of service, we do not actively disable accounts until they greatly exceed that number, which is what happened in this case.

    This is really strange because all I do is just updating the contents and put more pictures into the site.

    This is the first time I got this kind of warning. I never experience this problem with your other theme. Any advice?

    Thanks a lot

    Regards,
    Andri

    #203206
    Yaron
    Participant

    After the latest Enfold update, the accordion filter no longer works. When a filter tag is selected, the entire list of accordions disappears. I reviewed the forum and identified that someone experienced the same issue, but the topic was closed and the problem resolved, but the solution was not disclosed. Your assistance would be greatly appreciated. Thank you in advance for your help.

    Enfold v2.5
    WP v3.8

    #203197

    Nice :-)
    Btw .. chrome has some problems with this effect too. The browser does not display the content like FF and IE and testing in IE 8 i became an error. i know, old Browser but lots of clients use this old shit. See picture …. Got an idea to fix it?

    My error

    • This reply was modified 12 years, 2 months ago by docperi.

    Hi!

    You can edit header.php or /includes/helper-main-menu.php if you have 2.6+, find this code:

    echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');
    

    Below, add this code:

    echo "<div class='site-description'>".get_bloginfo ( 'description' )."</div>";
    

    Edit Enfold > Styling > Quick CSS, add this code:

    .site-description {
    bottom: -30px;
    position: absolute;
    font-size: 11px;
    }

    Best regards,
    Ismael

    #203180
    This reply has been marked as private.
    #203176

    In reply to: Mobile search

    I tried that but no luck. This is what I originally had inside the enfold style section. I tried your code with this code and without.

    @media only screen and (max-width: 767px) {
    .responsive #header .main_menu ul,  .responsive #header .main_menu ul {
    display: block !important;
    position: absolute;
    background: none;
    top: -20px;
    right: 0;
    }
    
    .responsive #header .main_menu ul li {
    display: none;
    }
    
    .responsive #header .main_menu ul li:last-child {
    display: block !important;
    }
    }

    Is there a recommendation I can try from scratch. I am also using a child theme and possibly my codes in there might be effecting it. I am willing to start that from scratch as well.

    #203167

    In reply to: disabling lightbox

    And this is the code in enfold-child/js/avia.js:
    function avia_lightbox_callback(elements,ww,wh){
    (function($){
    elements.each(function()
    {
    var el = $(this);
    if(!el.hasClass('noLightbox'))
    {
    el.addClass('lightbox');
    }
    });

    jQuery('a.lightbox').on('click', function() { return false; });
    })(jQuery);
    }

    #203163

    In reply to: disabling lightbox

    Hey Peter –
    Thanks so much for this. It would be great to get this to work although I’m getting an error when I activate the Child Theme and the site will not launch with this code in the functions.php file.
    Error:
    Parse error: syntax error, unexpected ‘}’, expecting T_STRING or T_VARIABLE or ‘$’ in /var/www/vhosts/jonathankannair.com/httpdocs/blog/wp-content/themes/enfold-child/functions.php on line 9

    This the contents of the functions.php which I think matches your code above:

    <?php

    /*
    * Register frontend javascripts:
    */
    if(!is_admin())
    {
    add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100);
    }

    function avia_register_child_frontend_scripts()
    {
    $child_theme_url = get_stylesheet_directory_uri();

    wp_dequeue_script('avia-prettyPhoto');
    wp_dequeue_style('avia-prettyP');
    wp_dequeue_style('avia-custom');

    //register js
    wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, false );
    }
    */

    • This reply was modified 12 years, 2 months ago by penumbra.

    also, just aside from the other. when i scroll down with the mouse wheel the enfold logo at the top of the page gets smaller which looks a bit odd, is it possible to stop this. i’ll obviously be swapping this image for my own logo at some point soon but just wonder if it might do the same regardless?
    thanks,
    paul

    #203158
    FlawlessWeb
    Participant

    Hey,

    Hopefully this is an easy edit for one of this forums support team…

    In the admin section, is it possible to change ‘Portfolio Items’ main menu item and its sub menus ‘Portfolio Items’ & ‘Portfolio Categories’ to ‘Galleries’, ‘Galleries’ and ‘Gallery Categories’?

    Launching a website with Enfold theme tomorrow at 2pm (GMT) so I may have a few other minor issues that I need some help with, but this is it for now.

    Thanks

    • This topic was modified 12 years, 2 months ago by FlawlessWeb.

    hi there,
    would normally just go under where the enfold logo is, for example, if you go to settings and and general within WP, you have the site title and underneath you get the tagline text, i would like if poss for the tagline text to be displayed across all pages somewhere underneath where the main logo is.
    thanks for your help…
    cheers,
    paul

    #203155

    In reply to: Mobile search

    Hi!

    Please add following code to Quick CSS in Enfold theme options under Styling tab to prevent logo from being cut on mobile

    @media only screen and (max-width: 480px) {
    .responsive .mobile_slide_out .logo img { width: 300px!important; }
    }

    Have you removed mobile menu manually?

    Best regards,
    Yigit

    #203154

    Thanks all. I got it fixed.

    I still need help with the the ajax control arrows over the portfolio image.
    I want to move to bottom right under the image.

    https://www.dropbox.com/s/5uskqxx9jbcj5wi/photo%202.PNG

    I tried:
    div.ajax_controlls.iconfont {
    bottom: 0!important;
    right: 0!important;
    }

    any ideas?

    Hey paulrt27!

    I’m not really sure what you are asking. Do you have a mock up or can you point out a specific example page and where this would go?

    Cheers!
    Devin

    #203142
    journey5956
    Participant

    Site is http://www.towerviewconstruction.com – slider works in Firefox – IE, but not Chrome – words (….Towerview Construction) either do not retain their styling (px size) or do not maintain their position – not sure if it’s absolute or relative, or how to change it if necessary. Slider is currently set at 100% in global settings, but have tried 1200 px/1400px and it didn’t seem to matter – still worked in most browsers, except Chrome..
    What do I need to do?
    BTW – I love Enfold – this is the 3rd site I’ve built this month and it’s only limited to my ability to use the framework – thanks!!!
    Thanks

    paulrt27
    Participant

    hi there,
    i’m knocking up a basic business site for a friend as a favour using the enfold theme.

    they asked me the following:

    can you add making change happen’ to the name chosen
    – Add as a sub-headline: Helping you improve business performance

    is there a way i can add both of these to the top of all the pages?

    thanks,
    paul

    #203115

    In reply to: masonry blog

    Hi!

    Make sure to update your theme files to the most recent release. There was a few releases this week to fix bugs with 3.8. For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750

    For the read more button color Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    
    #top .av-masonry-load-more {
    background: #F00;
    }
    

    Best regards,
    Devin

    #203114

    Hi!

    Looking at the output for that layerslider it shows the autostart variable is set to false. Try going to that slideshow and then the Global Settings for it. Change the settings for “Slideshow” to auto start.

    Regards,
    Devin

    #203108

    Hey lizybloom!

    If you use Header with bottom menu + social media icons you could get fairly close to that.

    Regards,
    Devin

    #203106

    Hey nokostudio!

    You will also need to update your theme which was updated to fix the issue. For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750

    Cheers!
    Devin

    #203104
    This reply has been marked as private.
    #203079
    ribanezg
    Participant

    Hello again Enfold Team,

    I have a problem with the size of the portfolio items in a grid. Someone of the items use one line to present the name of the item, and other items use two lines. Can i force all the items to use two lines to adjust the grid properly.

    See the image to understand my question:
    Test

    Regards,
    Raul.

    ribanezg
    Participant

    Hello Enfold Team,

    When you make the portfolio searchable, category show up in alphabetic order.

    I have read another post talking about that:

    Open includes > loop-portfolio.php and find this code
    $args = array(
    ‘taxonomy’ => ‘portfolio_entries’,
    ‘hide_empty’=> 0,
    ‘include’ => $includeArray
    );

    Replace it with
    $args = array(
    ‘taxonomy’ => ‘portfolio_entries’,
    ‘hide_empty’=> 0,
    ‘include’ => $includeArray,
    ‘orderby’ => ‘name’,
    ‘order’ => ‘ASC’
    );

    But i can not find loop-portfolio.php, only someone else, loop-portfolio-single.php, but it has not this lines of data.

    Could you help me please?

    Thanks
    Raul.

Viewing 30 results - 232,231 through 232,260 (of 244,345 total)