Viewing 30 results - 233,821 through 233,850 (of 244,282 total)
  • Author
    Search Results
  • #193421

    Hi donnellydesign!

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

    @media only screen and (max-width: 989px) { .home .avia_textblock p { text-align: center; }}

    Best regards,
    Yigit

    #193420

    Hi Paul!

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

    #header_meta { z-index: 9; }

    Best regards,
    Yigit

    #193419

    Hi elcetera!

    You can add following code to Quick CSS in Enfold theme options under Styling tab to remove breadcrumbs bar on homepage

    .title_container {  display: none; }

    Cheers!
    Yigit

    • This reply was modified 12 years, 3 months ago by Yigit.
    This reply has been marked as private.
    #193411
    This reply has been marked as private.
    This reply has been marked as private.
    #193395

    Hi dulei07!

    It should be in the correct order but if you want to reverse it, you can edit functions-enfold.php then find this code on line 341:

     $entries['prev'] = get_previous_post($same_category);
            $entries['next'] = get_next_post($same_category);

    Replace it with:

    $entries['prev'] = get_next_post($same_category);
            $entries['next'] = get_previous_post($same_category);

    Best regards,
    Ismael

    #193388

    Topic: Loopbuddy in Enfold

    in forum Enfold
    mellasue
    Participant

    Hi, i am trying to get custom post types and loopbuddy working in my enfold theme but to no avail. Has anyone got them working and could you give me details on how to do it? Any help would be much appreciated.

    Hi!

    Do you have the latest version of Enfold? Have you recently upgrade the WordPress installation? Please post the login details here as a private reply. Deactivate all plugins if possible, we don’t want to mess with your plugin settings. Also check if disabling the plugins fix the issue.

    Regards,
    Ismael

    #193376

    In reply to: Ajax portfolio

    Hi!

    Sorry but it is not possible yet. You can request it here: https://kriesi.at/support/topic/enfold-feature-requests

    Cheers!
    Ismael

    #193366

    Hello everybody,

    I’m on that client again now and still have the following issues:

    HEADER:

    – I’m using a non-fixed-header. The logo should be above the header. With the CSS code you gave me, there is way too much space between the logo, the nav-menu items and the content below. And there is a separator between the logo and the nav-menu (please see the current site)
    – the highlighted menu item (e.g. “angebot” when selected) should come in orange. The other menu items should stay grey
    – I would like to remove the colored small line under the selected menu item
    – I would like to add a small image to the header. It should be aligned right and linked to the contact (“kontakt”) page

    FONT:

    – The font style is too strong for the client’s taste. I tried to reduce it from 600 down to 500. But it appears to be only strong or not. Any other possibility?
    – I’d like to have two different font sizes in one line. How would I do that? E.g. “profile | SKCC” -> “profile” should come in 16px and “SKCC” in 30px
    – I’d like to highlight text with a specific color. Is it possible?

    LINKS:

    – can I remove the animated enfold arrow which appears when I mouse over a linked image

    The temporary website:
    http://webigami.de/skcc

    I really appreciate your help! Thak you all so much!!!! :)

    Cheers,
    Jan

    #193358

    Hi,

    it would be great if I could choose to redirect to a page after I submit a contact form instead of showing the message. It would let us work with the user flow much better.

    Cheers,
    Milan

    #193348

    Hi!

    First please excuse the late reply. You can change the lightbox image size for all images easily. Open up /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php and replace

    
    $this->loop[$key]['url'] =  $custom_url ? $custom_url : reset(wp_get_attachment_image_src($id, 'large'));
    

    with

    
    $this->loop[$key]['url'] =  $custom_url ? $custom_url : reset(wp_get_attachment_image_src($id, 'full'));
    

    I’ll ask Kriesi to include a filter in the next version which allows you to change the size with your child theme.

    Regards,
    Peter

    #193343

    OK, thats a good idea, trying child themes for the first time for me.

    I will look into this over the time if I upgrade Enfold or plugins and if it appears again without that code snippet.

    Thanks again and best regards, Adrian

    #193342
    stane
    Participant

    Hi,

    I have more problems with enfold :
    If I add icon : i’ve only circle grey
    If I add horizontal separation : I’ve only white space but no bar
    …etc.

    If I would like to see edit my page with default editing text : all my pages is empty
    If I used avia editor : I see the content…

    I don’t understand, all it’s ok sunday morning and now all it’s break… I’ve try to reupload theme with new download of it and I’ve the same results… Im’ desperate

    If I activate another theme and reactivate enfold, the problem of display was corrected for the content which is published…. For example, the white icons appears in grey circle but if I had new content or modify the published content the same problem appears a new time…

    my wp-config define php memeory limit like : define( ‘WP_MEMORY_LIMIT’, ’96M’ );

    Can you help me…
    Can I give you my access ? If yes, where can I publish them ?
    Thanks

    NOTE :
    my wp-config define php memeory limit like : define( ‘WP_MEMORY_LIMIT’, ’96M’ );

    • This topic was modified 12 years, 3 months ago by stane.

    please
    my site is down since sunday …

    #193335

    Yes, it is solved, Peter. Thanks.

    But what is the reason for this? Does it affect all users of woocommerce? Do I have to put that code into functions.php after each upgrade of Enfold?

    #193315

    Hey!

    I can’t modify the theme files and thus I can’t debug the issue. We need to know how the breadcrumb trail look like. Insert following code into the theme functions.php file

    
    if(!function_exists('avia_modify_event_breadcrumb'))
    {
        function avia_modify_event_breadcrumb($trail)
        {
            print_r($trail);
            return $trail;
        }
    
        add_filter('avia_breadcrumbs_trail','avia_modify_event_breadcrumb');
    }
    

    and Enfold should output some new text/code at the very top of the page (i.e. here: http://bildmanufaktur-wackernah.de/shop/ebooks/ ). Please copy it and post it in this thread.

    Best regards,
    Peter

    #193309

    Hey!

    Please do Devin’s instruction. Edit js > avia.js, find this code:

    //activates the prettyphoto lightbox
            $(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});

    Replace it with:

    //activates the prettyphoto lightbox
           //$(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});

    This should disable the lightbox entirely. Make sure to remove browser cache then reload the page or check the site on another browser. You can find the avia_hover_effect on the same file.

    Cheers!
    Ismael

    #193308
    moosnique
    Participant

    Most of the times I can get WP work again. But I have this error class-envato-protected-api.php, of a totally blank page on the wp-admin dashboard. So The first thing I did was renaming the plugins folder. This works 9 of 10 cases. Of course I enabled the debug function and than always get this error: httpdocs/wp-content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php on line 344 . When I enable the state of the plugins(rename to plugins again) we have this : Notice: wp_enqueue_script was called incorrectly. Scripts and styles should not be registered or enqueued until the wp_enqueue_scripts, admin_enqueue_scripts, or login_enqueue_scripts hooks. Please see Debugging in WordPress for more information. (This message was added in version 3.3.) in /home/vhosts/deduif.net/httpdocs/wp-includes/functions.php on line 3041.

    The plugins we use are: bbpress, better-wp-security, coming-soon-maintenance-mode-ready, social-media-feather, wp-google-maps, yop-poll
    So read about it a lot, made some changes that were suggested in the support of the Kriesi website but I’m out of idea’s now. we need to fix it fast so .. thanks in advance

    #193306

    Hi!

    We need to know how the breadcrumb trail look like. Insert following code into the theme functions.php file

    
    if(!function_exists('avia_modify_event_breadcrumb'))
    {
        function avia_modify_event_breadcrumb($trail)
        {
            print_r($trail);
            return $trail;
        }
    
        add_filter('avia_breadcrumbs_trail','avia_modify_event_breadcrumb');
    }
    

    and Enfold should output some new text/code at the very top of the page (“automatic concepts” archive page). Please copy it and post it here.

    Cheers!
    Peter

    #193305

    In reply to: Issues using Enfold

    Hey dkiessling!

    1.) Please increase the php memory limit: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    2.) I hope the first solution fix the issue. Do you have any other plugins installed?

    3.) Yes, it is possible. You can use the Quick CSS field to apply certain styling changes on the theme.

    4.) Please switch to Advance Layout Builder then go to Media Elements. You can select different kinds of sliders like LayerSlider and Fullwidth Easy Slider.

    Cheers!
    Ismael

    stane
    Participant

    Hi,

    I have a big problem which I don’t understand… I’ve upload enfold and all it’s was ok
    but now when I add new element it’s doesn’t work.

    If I add icon : i’ve only circle grey
    If I add horizontal separation : I’ve only white space but no bar
    …etc.

    If I would like to see edit my page with default editing text : all my pages is empty
    If I used avia editor : I see the content…

    I don’t understand, all it’s ok sunday morning and now all it’s break… I’ve try to reupload theme with new download of it and I’ve the same results… Im’ desperate

    If I activate another theme and reactivate enfold, the problem of display was corrected for the content which is published…. For example, the white icons appears in grey circle but if I had new content or modify the published content the same problem appears a new time…

    my wp-config define php memeory limit like : define( ‘WP_MEMORY_LIMIT’, ’96M’ );

    Can you help me…
    Can I give you my access ? If yes, where can I publish them ?
    Thanks

    #193291

    Hey alkaithil!

    The color sets are defined in /wp-content/themes/enfold/includes/admin/register-backend-styles.php – it’s an array which uses the color scheme name as key and each color scheme contains a sub-array which stores the color values. You can modify the array directly or use the “avf_skin_options” filter ( http://codex.wordpress.org/Function_Reference/add_filter ) to add your custom schemes.

    Cheers!
    Peter

    #193289

    Peter,
    Thank you so much for the code. It worked great. I edited the main file in the /enfold theme and not my child theme.
    Can you put the masonry_entries.php page in the child theme and the site will still work? This will help with updating. I reckon I could just try it and see, but I seem to recall that I tried this with another core php file and it didn’t work. Only headers, footers, function.php seem to be recognized. I am not a newbie coder, but I am pretty new to WordPress. Picking it up pretty quickly though.

    On another note, you folks should really look at the lightbox script I’m using. I’ve used it for years and know the developer pretty well. It’s far superior to the lightbox you folks are using. There are over a hundred option settings built inside and the API has built in functions that help with many things like ajax refreshes and hosting up dynamic stuff inside pages. The support is fantastic and detailed. The only other site online that I’ve seen that has similar support is yours. FYI, I have no vested interest in the script.

    For example, with your code, I’m now yanking the captions from the alt attribute in masonry, while serving up the title attribute with the mouseover option. So I can have a short caption on the thumb with a more detailed description in the lightbox window. A distinct advantage for using the alt attribute is that you don’t have the title displaying on mouseover which duplicates the mouseover effect built into masonry. It also avoids the title mouseovers built into most browsers and allows you to use javascript tooltips if you want. And, of course your alt descriptions can be very detailed which will help SEO.

    I will probably look into your backend code some more in avia.js and in some of the php files to open up more flexibility by coding in a custom data- attribute that works with the lightbox script I use. By doing so, it will allow the insertion of all sorts of lightbox display options in the headers, footers and outside the lightbox as well — HTML, videos, dynamic content, you name it. If you can code it, it can be fed to the lightbox through the data- attribute that is specific to this script. I sure wished you had a customizable data- attribute built into the backend of the wordpress manager for < a > links. I will probably have to code it myself. I can probably do it, I just don’t know where to look for all the relevant code in all your php files. It could be a lengthy trial and error process. I chatted with the developer of your third party slider that you use and he likes the idea of a configurable data- attribute by the customer. He indicated he was going to look at it in a future version release. There are numerous benefits to having this if you are a true coder.

    Anyway, these were some of the reasons I was asking for the alt attribute. You probably assumed most of the reason was for SEO.

    On a separate note, where would I find the code that renders the alt and title form fields on the backend of WordPress where you update and modify a masonry element? What file is that in? I have found the code that inserts the lightbox attributes inside of avia.js.

    Thanks again for your help. Your support in this forum is excellent. And I don’t say that lightly. I mean it.

    Cheers,
    Don

    #193284
    mhiller
    Participant

    A while back, I was kindly given this code from Support to make the Woo Commerce cart show up in responsive mode on this page: http://tested-marketing.com/sign-up/

    .responsive .cart_dropdown {
    display: block !important;
    }

    For some reason it has now stopped working. Could an Enfold or Woo update have changed something.? I tried to find the problem, but wasn’t able to. Thanks for any help you can give! Mike.

    #193279

    Hi again!

    Please forget the post, i have solved the problem, it was our problem, not of enfold.

    Thank you!

    #193272

    Hi Devin,

    May I ask where is the function avia_hover_effect file?

    Thanks!

    #193270
    This reply has been marked as private.
    #193256
    This reply has been marked as private.
Viewing 30 results - 233,821 through 233,850 (of 244,282 total)